From 7d80276735a894cc4b2871db0717a5c9f3697e93 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 8 Sep 2025 16:39:01 -0700 Subject: [PATCH 01/76] Moved AppServicePlan.cs and Site.cs to api/Support --- .../custom/{Api20231201 => api/Support}/AppServicePlan.cs | 0 .../custom/{Api20231201 => api/Support}/Site.cs | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/Functions/Functions.Autorest/custom/{Api20231201 => api/Support}/AppServicePlan.cs (100%) rename src/Functions/Functions.Autorest/custom/{Api20231201 => api/Support}/Site.cs (100%) diff --git a/src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs b/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs similarity index 100% rename from src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs rename to src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs diff --git a/src/Functions/Functions.Autorest/custom/Api20231201/Site.cs b/src/Functions/Functions.Autorest/custom/api/Support/Site.cs similarity index 100% rename from src/Functions/Functions.Autorest/custom/Api20231201/Site.cs rename to src/Functions/Functions.Autorest/custom/api/Support/Site.cs From 1e5419cd9d7d8b13634135bd57cf14041cf95172 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 12 Sep 2025 16:59:06 -0700 Subject: [PATCH 02/76] Migrate module from AutoRest 3.x to 4.x --- src/Functions/Functions.Autorest/README.md | 3 +- .../custom/Functions.format.ps1xml | 4 +-- .../custom/Functions.types.ps1xml | 4 +-- .../custom/Get-AzFunctionApp.ps1 | 2 +- .../Get-AzFunctionAppAvailableLocation.ps1 | 2 +- .../custom/Get-AzFunctionAppPlan.ps1 | 2 +- .../custom/Get-AzFunctionAppSetting.ps1 | 4 +-- .../custom/HelperFunctions.ps1 | 14 ++++---- .../custom/New-AzFunctionApp.ps1 | 18 +++++----- .../custom/New-AzFunctionAppPlan.ps1 | 6 ++-- .../custom/Remove-AzFunctionApp.ps1 | 2 +- .../custom/Remove-AzFunctionAppPlan.ps1 | 2 +- .../custom/Remove-AzFunctionAppSetting.ps1 | 4 +-- .../custom/Restart-AzFunctionApp.ps1 | 2 +- .../custom/Start-AzFunctionApp.ps1 | 2 +- .../custom/Stop-AzFunctionApp.ps1 | 2 +- .../custom/Update-AzFunctionApp.ps1 | 34 +++++++------------ .../custom/Update-AzFunctionAppPlan.ps1 | 8 ++--- .../custom/Update-AzFunctionAppSetting.ps1 | 4 +-- .../custom/api/Support/AppServicePlan.cs | 6 ++-- .../custom/api/Support/Site.cs | 6 ++-- 21 files changed, 61 insertions(+), 70 deletions(-) diff --git a/src/Functions/Functions.Autorest/README.md b/src/Functions/Functions.Autorest/README.md index c613df53bd0e..c6ea11d79248 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 @@ -126,6 +126,7 @@ directive: - remove-operation: WebApps_GetProductionSiteDeploymentStatus - remove-operation: WebApps_GetSlotSiteDeploymentStatusSlot - remove-operation: Workflows_RegenerateAccessKey + - 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 diff --git a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml index bb2aa1097aa5..20e39af28586 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/Get-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 index 23667465b6ff..d1d1800c9b09 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 @@ -1,5 +1,5 @@ function Get-AzFunctionApp { - [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 510a7c12f059..2b5218d3c14d 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 c227fd25dda4..69cf8060665d 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 @@ -1,5 +1,5 @@ function Get-AzFunctionAppPlan { - [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 a8b9e8c859ef..98398165eada 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 @@ -1,5 +1,5 @@ function Get-AzFunctionAppSetting { - [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( @@ -23,7 +23,7 @@ function Get-AzFunctionAppSetting { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 3e3b7a6f93b7..739814f065b3 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -185,7 +185,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 @@ -744,7 +744,7 @@ function ValidateFunctionName $HttpPipelinePrepend ) - $result = Az.Functions.internal\Test-AzNameAvailability -Type Site @PSBoundParameters + $result = Az.Functions.internal\Test-AzNameAvailability -Type Site -Name $Name @PSBoundParameters if (-not $result.NameAvailable) { @@ -1366,7 +1366,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 +1486,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 +1660,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) } diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index dda3445e2874..f5ee90e104e6 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -1,6 +1,5 @@ - function New-AzFunctionApp { - [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( @@ -144,7 +143,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] [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}, @@ -167,7 +166,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="EnvironmentForContainerApp")] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.FunctionAppManagedServiceIdentityCreateType])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType] + [String] ${IdentityType}, [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage="Specifies the list of user identities associated with the function app. @@ -302,14 +301,15 @@ function New-AzFunctionApp { $functionAppIsCustomDockerImage = $PsCmdlet.ParameterSetName -eq "CustomDockerImage" $environmentForContainerApp = $PsCmdlet.ParameterSetName -eq "EnvironmentForContainerApp" - $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 $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") $runtimeJsonDefinition = $null + ValidateFunctionName -Name $Name @params if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) @@ -514,8 +514,8 @@ function New-AzFunctionApp { # Validate storage account and get connection string $connectionString = GetConnectionString -StorageAccountName $StorageAccountName @params - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) { diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 index 343647263bbd..e4d20456cfa3 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 @@ -1,5 +1,5 @@ function New-AzFunctionAppPlan { - [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( @@ -60,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}, @@ -163,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 72b28166382a..1bc9d38a6d30 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 @@ -23,7 +23,7 @@ function Remove-AzFunctionApp { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [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 1e63797aec86..a99fc28f72f5 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 @@ -23,7 +23,7 @@ function Remove-AzFunctionAppPlan { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan] + [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 ccc8b39661c3..e3308cddffd5 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 @@ -1,5 +1,5 @@ function Remove-AzFunctionAppSetting { - [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( @@ -23,7 +23,7 @@ function Remove-AzFunctionAppSetting { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 index c64c553d6510..7835e0809253 100644 --- a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 @@ -23,7 +23,7 @@ function Restart-AzFunctionApp { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [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 6915976c25fb..9ade3a6ecb61 100644 --- a/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 @@ -23,7 +23,7 @@ function Start-AzFunctionApp { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [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 67c229d30826..63e2471fabc1 100644 --- a/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 @@ -23,7 +23,7 @@ function Stop-AzFunctionApp { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [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 59e98462f9a5..6006d74afcbe 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -1,6 +1,5 @@ - function Update-AzFunctionApp { - [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( @@ -21,7 +20,7 @@ function Update-AzFunctionApp { ${Name}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, @@ -49,7 +48,7 @@ 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}, @@ -62,7 +61,7 @@ function Update-AzFunctionApp { ")] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.FunctionAppManagedServiceIdentityUpdateType])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType] + [String] ${IdentityType}, [Parameter(HelpMessage="Specifies the list of user identities associated with the function app. @@ -135,11 +134,13 @@ function Update-AzFunctionApp { # Remove bound parameters from the dictionary that cannot be process by the intenal cmdlets. $paramsToRemove = @( "PlanName", - "ApplicationInsightsName", + "ApplicationInsightsName" "ApplicationInsightsKey" - "IdentityType", - "IdentityID", + "IdentityType" + "IdentityID" "Tag" + "Force" + "InputObject" ) foreach ($paramName in $paramsToRemove) { @@ -157,11 +158,6 @@ function Update-AzFunctionApp { if ($PsCmdlet.ParameterSetName -eq "ByObjectInput") { - if ($PSBoundParameters.ContainsKey("InputObject")) - { - $PSBoundParameters.Remove("InputObject") | Out-Null - } - $Name = $InputObject.Name $PSBoundParameters.Add("Name", $Name) | Out-Null @@ -176,9 +172,9 @@ 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 + $appSettings = New-Object -TypeName 'System.Collections.Generic.List[Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.INameValuePair]' + $siteCofig = 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) @@ -332,12 +328,6 @@ function Update-AzFunctionApp { { if ($Force.IsPresent -or $PsCmdlet.ShouldContinue("Update function app '$Name'?", "Updating function app")) { - # Remove bound parameters from the dictionary that cannot be process by the intenal cmdlets - if ($PSBoundParameters.ContainsKey("Force")) - { - $PSBoundParameters.Remove("Force") | Out-Null - } - Az.Functions.internal\Set-AzFunctionApp @PSBoundParameters } } diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 index 6461895a5df5..4cbbb9149693 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 @@ -1,5 +1,5 @@ function Update-AzFunctionAppPlan { - [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( @@ -23,7 +23,7 @@ function Update-AzFunctionAppPlan { ${Name}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan] [ValidateNotNull()] ${InputObject}, @@ -55,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}, @@ -189,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 faf9711679fd..e2b6c8ad10f3 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 @@ -1,5 +1,5 @@ function Update-AzFunctionAppSetting { - [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( @@ -23,7 +23,7 @@ function Update-AzFunctionAppSetting { ${SubscriptionId}, [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs b/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs index 1e527dc9efef..10ec21a4c635 100644 --- a/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs +++ b/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs @@ -1,8 +1,8 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201 +namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models { 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.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 diff --git a/src/Functions/Functions.Autorest/custom/api/Support/Site.cs b/src/Functions/Functions.Autorest/custom/api/Support/Site.cs index 03f6f7a718f5..52582d4a70ae 100644 --- a/src/Functions/Functions.Autorest/custom/api/Support/Site.cs +++ b/src/Functions/Functions.Autorest/custom/api/Support/Site.cs @@ -1,8 +1,8 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201 +namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models { 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.Models.ISite, + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISiteInternal, Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates { From e58b02a6d669eff214834e426079e0e7e47ee2d7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 12 Sep 2025 17:00:09 -0700 Subject: [PATCH 03/76] Update function stacks definitions --- .../FunctionsStack/functionAppStacks.json | 121 +++++++++++++++++- 1 file changed, 118 insertions(+), 3 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json b/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json index 5f67732eac8b..c2cd0d0b0ef9 100644 --- a/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json +++ b/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json @@ -8,6 +8,84 @@ "value": "dotnet", "preferredOs": "windows", "majorVersions": [ + { + "displayText": ".NET 10 Isolated", + "value": "dotnet10isolated", + "minorVersions": [ + { + "displayText": ".NET 10 Isolated", + "value": "10 (LTS), isolated worker model", + "stackSettings": { + "windowsRuntimeSettings": { + "runtimeVersion": "v10.0", + "isPreview": true, + "isDefault": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.0.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated", + "WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED": "1" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "netFrameworkVersion": "v10.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": false + } + ], + "endOfLifeDate": "Fri Nov 10 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + }, + "linuxRuntimeSettings": { + "runtimeVersion": "DOTNET-ISOLATED|10.0", + "isPreview": true, + "isDefault": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.0.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated", + "WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED": "1" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "DOTNET-ISOLATED|10.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": false + } + ], + "endOfLifeDate": "Fri Nov 10 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + }, { "displayText": ".NET 9 Isolated", "value": "dotnet9isolated", @@ -607,11 +685,11 @@ "minorVersions": [ { "displayText": "Node.js 22", - "value": "22", + "value": "22 LTS", "stackSettings": { "windowsRuntimeSettings": { "runtimeVersion": "~22", - "isPreview": true, + "isDefault": true, "remoteDebuggingSupported": false, "appInsightsSettings": { "isSupported": true @@ -684,7 +762,6 @@ "stackSettings": { "windowsRuntimeSettings": { "runtimeVersion": "~20", - "isDefault": true, "remoteDebuggingSupported": false, "appInsightsSettings": { "isSupported": true @@ -833,6 +910,44 @@ "displayText": "Python 3", "value": "3", "minorVersions": [ + { + "displayText": "Python 3.13", + "value": "3.13", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.13", + "remoteDebuggingSupported": false, + "isPreview": true, + "isDefault": false, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.13" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.13" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Wed Oct 31 2029 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + }, { "displayText": "Python 3.12", "value": "3.12", From 5b1184d6c22052fccfccb91c697f2ecb9fff02d7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 16 Sep 2025 14:50:39 -0700 Subject: [PATCH 04/76] disable storage accounts blob public access --- src/Functions/Functions.Autorest/test/utils.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 7ce0cc6fb1e6..ec7f070f63d1 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -98,12 +98,14 @@ function setupEnv() { ResourceGroupName = $resourceGroupNameWindowsPremium Location = $location SkuName = "Standard_GRS" + AllowBlobPublicAccess = $false }, @{ Name = $storageAccountLinux ResourceGroupName = $resourceGroupNameLinuxPremium Location = $location SkuName = "Standard_GRS" + AllowBlobPublicAccess = $false } ) From 6131465bdd567025082b7d955a77a01711f82f04 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 30 Sep 2025 15:26:03 -0700 Subject: [PATCH 05/76] Update test case --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 176 +++++++++--------- 1 file changed, 86 insertions(+), 90 deletions(-) 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 4d30eea797e5..4a02abd42d58 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 @@ -13,54 +13,75 @@ while(-not $mockingPath) { Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' { - It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { + BeforeAll { + + $appName = $env.functionNamePowerShell + Write-Verbose "App name: $appName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose - # Update-AzFunctionApp is an important scenario to validate given that in the update operation - # will copy the exiting function app configuration to create a new one. + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -Verbose + + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $identityInfo = $env.identityInfo + Write-Verbose "Identity info: $($identityInfo | Out-String)" -Verbose + + $newApplInsights = $env.newApplInsights + Write-Verbose "New Application Insights: $($newApplInsights | Out-String)" -Verbose - $functionName = $env.functionNamePowerShell $location = "centralus" + Write-Verbose "Location: $location" -Verbose + $tags = @{ "MyTag1" = "MyTag1Value1" "MyTag2" = "MyTag1Value2" } + Write-Verbose "Tags: $($tags | Out-String)" -Verbose + } + + It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { try { Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -Runtime PowerShell ` -RuntimeVersion "7.2" ` -FunctionsVersion 4 ` -IdentityType SystemAssigned ` -Tag $tags - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp retrieved. Validating properties" -Verbose $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" $functionApp.IdentityType | Should -Be "SystemAssigned" - - # Validate tags + foreach ($tagName in $tags.Keys) { - $functionApp.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] + $functionApp.Tag.AdditionalProperties[$tagName] | Should -Be $tags[$tagName] } - # Update function app plan Write-Verbose "Create premium function app plan" -Verbose $planName = $env.functionAppPlanName + Write-Verbose "Updated planName: $planName" -Verbose New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName ` -WorkerType "Windows" ` -MinimumWorkerCount 1 ` -MaximumWorkerCount 10 ` -Location $location ` -Sku EP1 - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName + Write-Verbose "Plan retrieved. Validating properties" -Verbose $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be "EP1" @@ -68,63 +89,42 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $plan.Name | Should -Be $planName Write-Verbose "Update function app plan hosting plan" -Verbose - Update-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -PlanName $planName -Force + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -PlanName $planName -Force - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" - $functionApp.IdentityType | Should -Be "SystemAssigned" + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp after plan update. Validate plan name" -Verbose $functionApp.AppServicePlan | Should -Be $planName - - # Validate tags - foreach ($tagName in $tags.Keys) - { - $functionApp.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] - } - # Remove the managed identity from the function app - run Update-AzFunctionApp - Write-Verbose "Update function -> remove SystemAssigned managed identity" -Verbose # 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 $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -IdentityType None -Force - - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" - $functionApp.IdentityType | Should -Be $null - $functionApp.AppServicePlan | Should -Be $planName + # Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force - # Update application Insights - Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose - $newApplInsights = $env.newApplInsights - # Update test to use -InputObject when https://github.com/Azure/azure-powershell/issues/23266 is fixed - # Update-AzFunctionApp -InputObject $functionApp -ApplicationInsightsName $newApplInsights.Name -Force - Update-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ApplicationInsightsName $newApplInsights.Name -Force + Write-Verbose "Update function -> remove SystemAssigned managed identity" -Verbose + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp after identity removal. Validate IdentityType" -Verbose $functionApp.IdentityType | Should -Be $null - $functionApp.AppServicePlan | Should -Be $planName - # Validate tags - foreach ($tagName in $tags.Keys) - { - $functionApp.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] - } + Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose + $applicationInsightsName = $newApplInsights.Name + Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ApplicationInsightsName $applicationInsightsName -Force - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionAppSetting after update. Validate ApplicationInsights" -Verbose $applicationSettings["APPINSIGHTS_INSTRUMENTATIONKEY"] | Should -Be $newApplInsights.InstrumentationKey } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue - if ($functionApp) - { + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + Write-Verbose "FunctionApp for cleanup." -Verbose + if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue } - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + Write-Verbose "Plan for cleanup." -Verbose if ($plan) { Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue @@ -134,18 +134,16 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' It "Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp" { - $functionName = $env.functionNamePowerShell - try { Write-Verbose "Creating function app -AsJob" -Verbose - $functionAppJob = New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` + $functionAppJob = New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -OSType "Windows" ` -Runtime "PowerShell" ` - -RuntimeVersion 7.2 ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` -AsJob @@ -154,34 +152,35 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $result.State | Should -Be "Completed" $result | Remove-Job -ErrorAction SilentlyContinue - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" - $functionApp.AppServicePlan | Should -Be $env.planNameWorkerTypeWindows + $functionApp.AppServicePlan | Should -Be $planName Write-Verbose "Update function app -> enable a SystemAssigned managed identity" -Verbose - $updateFunctionAppJob = Update-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -IdentityType SystemAssigned -Force -AsJob + $updateFunctionAppJob = Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType SystemAssigned -Force -AsJob $result = WaitForJobToComplete -JobId $updateFunctionAppJob.Id $result.State | Should -Be "Completed" $result | Remove-Job -ErrorAction SilentlyContinue - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" + Write-Verbose "Run: Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName" -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp after identity enable. Validate IdentityType" -Verbose $functionApp.IdentityType | Should -Be "SystemAssigned" - $functionApp.AppServicePlan | Should -Be $env.planNameWorkerTypeWindows Write-Verbose "Remove function app" -Verbose - Remove-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -Force + Write-Verbose "Run: Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force" -Verbose + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp | Should -Be $null } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { + Write-Verbose "Cleaning up function app" -Verbose Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue } } @@ -189,50 +188,47 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' It "Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app" { - $functionName = $env.functionNamePowerShell - $identityInfo = $env.identityInfo - try { Write-Verbose "Creating function app" -Verbose - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -OSType "Windows" ` -Runtime "PowerShell" ` - -RuntimeVersion 7.2 ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" - $functionApp.AppServicePlan | Should -Be $env.planNameWorkerTypeWindows + $functionApp.AppServicePlan | Should -Be $planName Write-Verbose "Update function app -> enable a UserAssigned managed identity for the app" -Verbose - Update-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + $identityInfo = $env.identityInfo + Write-Verbose "Identity id: $($identityInfo.Id)" -Verbose + Update-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` -IdentityType UserAssigned ` -IdentityID $identityInfo.Id ` -Force - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.IdentityType | Should -Be "UserAssigned" $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties $userAssignedIdentity.ContainsKey($identityInfo.Id) | Should -Be $true Write-Verbose "Remove function app" -Verbose - Remove-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -Force + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue $functionApp | Should -Be $null } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue From 9b19cb675ad79fdb50691c7f9a64dba3f32fe5b9 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 2 Oct 2025 08:49:36 -0700 Subject: [PATCH 06/76] Update test utils --- src/Functions/Functions.Autorest/test/utils.ps1 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index ec7f070f63d1..7fcb4f1f1f6c 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -205,7 +205,10 @@ function setupEnv() { } # Create names to be used in the tests - $functionNamePowerShell = "Functions-PowerShell-" + (RandomString -len 10) + $planNameWorkerTypeWindowsNew = "Func-Windows-Premium-New" + (RandomString -len 6) + $functionNamePowerShell = "Functions-PowerShellTest-" + (RandomString -len 10) + $functionNamePowerShellNew1 = "Func-PowerShell-NewTest1-" + (RandomString -len 10) + $functionNamePowerShellNew2 = "Func-PowerShell-NewTest2-" + (RandomString -len 10) $functionNameContainer = "Functions-CustomImage-" + (RandomString -len 10) $functionNameTestApp = "Functions-TestAppName-" + (RandomString -len 10) $functionNameDotNet = "Functions-DotNet-" + (RandomString -len 10) @@ -217,7 +220,10 @@ function setupEnv() { $functionNameDotNetIsolated = "Functions-DotNet-Isolated" + (RandomString -len 10) $functionNameCustomHandler = "Functions-CustomHandler" + (RandomString -len 10) + $env.add('planNameWorkerTypeWindowsNew', $planNameWorkerTypeWindowsNew) | Out-Null $env.add('functionNamePowerShell', $functionNamePowerShell) | Out-Null + $env.add('functionNamePowerShellNew1', $functionNamePowerShellNew1) | Out-Null + $env.add('functionNamePowerShellNew2', $functionNamePowerShellNew2) | Out-Null $env.add('functionNameContainer', $functionNameContainer) | Out-Null $env.add('functionNameTestApp', $functionNameTestApp) | Out-Null $env.add('functionNameDotNet', $functionNameDotNet) | Out-Null From 631da17c38e49902155c658dd37ba1a81bf55c0e Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 2 Oct 2025 08:59:26 -0700 Subject: [PATCH 07/76] Update E2E new, update, remove AzFunctionApp tests --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 49 +++++++++++-------- 1 file changed, 28 insertions(+), 21 deletions(-) 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 4a02abd42d58..57c7d792a7f2 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 @@ -15,23 +15,20 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' BeforeAll { - $appName = $env.functionNamePowerShell - Write-Verbose "App name: $appName" -Verbose + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -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 $identityInfo = $env.identityInfo - Write-Verbose "Identity info: $($identityInfo | Out-String)" -Verbose + Write-Verbose "Identity id: $($identityInfo.Id | Out-String)" -Verbose $newApplInsights = $env.newApplInsights - Write-Verbose "New Application Insights: $($newApplInsights | Out-String)" -Verbose + Write-Verbose "New Application Insights name: $($newApplInsights.Name | Out-String)" -Verbose $location = "centralus" Write-Verbose "Location: $location" -Verbose @@ -48,6 +45,9 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose + $appName = $env.functionNamePowerShell + Write-Verbose "App name: $appName" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` @@ -70,9 +70,9 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } Write-Verbose "Create premium function app plan" -Verbose - $planName = $env.functionAppPlanName - Write-Verbose "Updated planName: $planName" -Verbose - New-AzFunctionAppPlan -Name $planName ` + $newPlanName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "Updated planName: $newPlanName" -Verbose + New-AzFunctionAppPlan -Name $newPlanName ` -ResourceGroupName $resourceGroupName ` -WorkerType "Windows" ` -MinimumWorkerCount 1 ` @@ -80,20 +80,20 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' -Location $location ` -Sku EP1 - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName + $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName Write-Verbose "Plan retrieved. Validating properties" -Verbose $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be "EP1" $plan.Location | Should -Be "Central US" - $plan.Name | Should -Be $planName + $plan.Name | Should -Be $newPlanName Write-Verbose "Update function app plan hosting plan" -Verbose - Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -PlanName $planName -Force + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -PlanName $newPlanName -Force $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName Write-Verbose "FunctionApp after plan update. Validate plan name" -Verbose - $functionApp.AppServicePlan | Should -Be $planName + $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 @@ -117,17 +117,17 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue Write-Verbose "FunctionApp for cleanup." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue Write-Verbose "Plan for cleanup." -Verbose if ($plan) { - Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue + Remove-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } } } @@ -137,6 +137,9 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Creating function app -AsJob" -Verbose + $appName = $env.functionNamePowerShellNew1 + Write-Verbose "App name: $appName" -Verbose + $functionAppJob = New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` @@ -172,7 +175,8 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Run: Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force" -Verbose Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "Validate that the function app was deleted." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue $functionApp | Should -Be $null } finally @@ -181,7 +185,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' if ($functionApp) { Write-Verbose "Cleaning up function app" -Verbose - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } } } @@ -191,6 +195,9 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Creating function app" -Verbose + $appName = $env.functionNamePowerShellNew2 + Write-Verbose "App name: $appName" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` @@ -231,7 +238,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } } } From 84f6a502d9bf2e0a5db488782ed3d623ba32e14e Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 2 Oct 2025 13:21:19 -0700 Subject: [PATCH 08/76] Update storage account settings --- .../Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 index 48896f9148a8..8dc35b8cba03 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 @@ -37,7 +37,7 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { Write-Host "" Write-Host "Create resource group and storage account." -ForegroundColor Yellow New-AzResourceGroup -Name $resourceGroupNameACA -Location $locationACA - New-AzStorageAccount -Name $storageAccountNameACA -ResourceGroupName $resourceGroupNameACA -Location $locationACA -SkuName "Standard_GRS" | Out-Null + New-AzStorageAccount -Name $storageAccountNameACA -ResourceGroupName $resourceGroupNameACA -Location $locationACA -SkuName "Standard_GRS" -AllowBlobPublicAccess $false | Out-Null Write-Host "" Write-Host "Create Log Analytics workspace." -ForegroundColor Yellow From 4e0340a874f31127adc37d4dca6ff09a92bbf36c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 2 Oct 2025 13:30:23 -0700 Subject: [PATCH 09/76] Update tests --- ...date-Remove-AzFunctionAppSetting.Tests.ps1 | 46 ++++-- .../test/New-AzFunctionApp.Tests.ps1 | 141 ++++++++++-------- ...-Update-Remove-AzFunctionAppPlan.Tests.ps1 | 52 ++++--- 3 files changed, 137 insertions(+), 102 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 index c69fe2a10dd5..22f40f9e9d37 100644 --- a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 @@ -15,9 +15,21 @@ $env:FunctionsTestMode = $true Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E' { + BeforeAll { + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + } + It "Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting" { - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShellNew1 + Write-Verbose "App name: $appName" -Verbose $appSetting1 = @{} $appSetting1.Add("MyAppSetting1", 456789) @@ -29,23 +41,24 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu try { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` + Write-Verbose "Create function app with custom app settings" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -Runtime PowerShell ` - -RuntimeVersion 7.2 ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 # We can get the application setting in two different ways: # 1) (Get-AzFunctionApp).ApplicationSettings # 2) Get-AzFunctionAppSetting - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $expectedAppSettings = $functionApp.ApplicationSettings # App settings via Get-AzFunctionAppSetting Write-Verbose "Validate '(Get-AzFunctionApp).ApplicationSettings'" -Verbose - $appSettingsViaGetAzFunctionAppSetting = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $appSettingsViaGetAzFunctionAppSetting = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName ValidateAppSetting -ExpectedAppSetting $expectedAppSettings -ActualAppSetting $appSettingsViaGetAzFunctionAppSetting # App settings via Get-AzFunctionAppSetting @@ -55,8 +68,8 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu # Add new app settings Write-Verbose "Validate 'Update-AzFunctionAppSetting'" -Verbose - $updatedAppSettings = Update-AzFunctionAppSetting -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + $updatedAppSettings = Update-AzFunctionAppSetting -Name $appName ` + -ResourceGroupName $resourceGroupName ` -AppSetting $appSetting1 foreach ($appSettingName in $appSetting1.Keys) { @@ -64,7 +77,8 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu } # Update app settings InputObject - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Write-Verbose "Validate 'Update-AzFunctionAppSetting -InputObject'" -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $updatedAppSettings2 = Update-AzFunctionAppSetting -InputObject $functionApp -AppSetting $appSetting2 foreach ($appSettingName in $appSetting2.Keys) { @@ -73,11 +87,11 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu # Delete first set of app settings Write-Verbose "Validate 'Remove-AzFunctionAppSetting'" -Verbose - Remove-AzFunctionAppSetting -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + Remove-AzFunctionAppSetting -Name $appName ` + -ResourceGroupName $resourceGroupName ` -AppSettingName $appSetting1.Keys - $appSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $appSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName foreach ($appSettingName in $appSetting1.Keys) { @@ -85,7 +99,7 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu } # Delete app settings using InputObject - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName Remove-AzFunctionAppSetting -InputObject $functionApp -AppSettingName $appSetting2.Keys $appSettings = Get-AzFunctionAppSetting -InputObject $functionApp @@ -97,7 +111,7 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 586fb3c391f8..de93caef2840 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -17,18 +17,29 @@ Describe 'New-AzFunctionApp' { It 'CustomDockerImage' { - $functionName = $env.functionNameContainer + $appName = $env.functionNameContainer + Write-Verbose "App name: $appName" -Verbose + + $resourceGroupName = $env.resourceGroupNameLinuxPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $planName = $env.planNameWorkerTypeLinux + Write-Verbose "Plan name: $planName" -Verbose + + $storageAccountName = $env.storageAccountLinux + Write-Verbose "Storage account name: $storageAccountName" -Verbose + $expectedLinuxFxVersion = "DOCKER|divyag2411/test:customcontainer" try { - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameLinuxPremium ` - -PlanName $env.planNameWorkerTypeLinux ` - -StorageAccount $env.storageAccountLinux ` + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -DockerImageName "divyag2411/test:customcontainer" - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Custom Image" $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion @@ -39,10 +50,10 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Remove-AzFunctionApp -InputObject $appName -Force -ErrorAction SilentlyContinue } } } @@ -88,7 +99,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "DotNet-Isolated" - "RuntimeVersion" = "6" + "RuntimeVersion" = "9" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -96,7 +107,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "PowerShell" - "RuntimeVersion" = "7.2" + "RuntimeVersion" = "7.4" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -104,7 +115,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "Java" - "RuntimeVersion" = "17" + "RuntimeVersion" = "21" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -112,7 +123,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "Node" - "RuntimeVersion" = "18" + "RuntimeVersion" = "22" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location @@ -120,7 +131,7 @@ Describe 'New-AzFunctionApp' { }, @{ "Runtime" = "Python" - "RuntimeVersion" = "3.10" + "RuntimeVersion" = "3.12" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxPremium "Location" = $env.location @@ -145,13 +156,13 @@ Describe 'New-AzFunctionApp' { try { - $functionName = $env.functionNameTestApp + $appName = $env.functionNameTestApp - &{ + & { # We use -WhatIf which performs all the inputs validation for the function app creation, and we return right before sending the request to the backend if ($runtimeVersion) { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -161,7 +172,7 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -218,7 +229,7 @@ Describe 'New-AzFunctionApp' { foreach ($runtime in $runtimeVersionNotSupported[$OSType][$functionsVersion].Keys) { - $functionName = $env.functionNameTestApp + $appName = $env.functionNameTestApp $runtimeVersion = $runtimeVersionNotSupported[$OSType][$functionsVersion][$runtime] $expectedErrorMessage = "Runtime '$runtime' version '$runtimeVersion' in Functions version '$functionsVersion' on '$OSType' is not supported." @@ -229,7 +240,7 @@ Describe 'New-AzFunctionApp' { $myError = $null try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -276,11 +287,11 @@ Describe 'New-AzFunctionApp' { It "Linux functions apps should not set the 'WEBSITE_NODE_DEFAULT_VERSION' app setting" { - $functionName = $env.functionNamePython + $appName = $env.functionNamePython try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameLinuxPremium ` -PlanName $env.planNameWorkerTypeLinux ` -StorageAccount $env.storageAccountLinux ` @@ -288,16 +299,16 @@ Describe 'New-AzFunctionApp' { -RuntimeVersion "3.10" ` -FunctionsVersion 4 - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Python" - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium $applicationSettings.ContainsKey("WEBSITE_NODE_DEFAULT_VERSION") | Should -Be $false } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -316,7 +327,7 @@ Describe 'New-AzFunctionApp' { # - Tag values # - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell $location = 'centralus' $tags = @{ "MyTag1" = "MyTag1Value1" @@ -331,18 +342,18 @@ Describe 'New-AzFunctionApp' { try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameWindowsConsumption ` -Location $location ` -StorageAccount $env.storageAccountWindows ` -OSType "Windows" ` -Runtime "PowerShell" ` - -RuntimeVersion "7.2" ` + -RuntimeVersion "7.4" ` -FunctionsVersion 4 ` -Tag $tags ` -AppSetting $appSetting - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsConsumption + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" $functionApp.Location | Should -Be "Central US" @@ -354,7 +365,7 @@ Describe 'New-AzFunctionApp' { } # Validate app settings - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsConsumption + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption foreach ($appSettingName in $appSetting.Keys) { $expectedValue = $appSetting[$appSettingName] @@ -368,7 +379,7 @@ Describe 'New-AzFunctionApp' { } # Validate WEBSITE_CONTENTSHARE - $applicationSettings["WEBSITE_CONTENTSHARE"] | Should Match $functionName + $applicationSettings["WEBSITE_CONTENTSHARE"] | Should Match $appName # Validate the connection string suffix $expectedSuffix = GetStorageAccountEndpointSuffix @@ -379,7 +390,7 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsConsumption -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -389,29 +400,29 @@ Describe 'New-AzFunctionApp' { It "Create a function app with 'UserAssigned' managed identity " { - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell $identityInfo = $env.identityInfo try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` -StorageAccount $env.storageAccountWindows ` -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + -RuntimeVersion "7.4" ` -FunctionsVersion 4 ` -IdentityType UserAssigned ` -IdentityID $identityInfo.Id - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" $functionApp.IdentityType | Should -Be "UserAssigned" } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -421,30 +432,30 @@ Describe 'New-AzFunctionApp' { It "Create a function app with custom app settings and 'SystemAssigned' managed identity " { - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell $appSetting = @{} $appSetting.Add("MyAppSetting1", 98765) $appSetting.Add("MyAppSetting2", "FooBar") try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` -StorageAccount $env.storageAccountWindows ` -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + -RuntimeVersion "7.4" ` -FunctionsVersion 4 ` -IdentityType SystemAssigned ` -AppSetting $appSetting - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" $functionApp.IdentityType | Should -Be "SystemAssigned" # Get app settings - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium foreach ($appSettingName in $appSetting.Keys) { @@ -453,7 +464,7 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -466,15 +477,15 @@ Describe 'New-AzFunctionApp' { # Make sure user identiy is available $expetedErrorId = "IdentityIDIsRequiredForUserAssignedIdentity" - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell $scriptblock = { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` -StorageAccount $env.storageAccountWindows ` -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + -RuntimeVersion "7.4" ` -FunctionsVersion 4 ` -IdentityType UserAssigned } @@ -483,11 +494,11 @@ Describe 'New-AzFunctionApp' { It "Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property" { - $functionName = $env.functionNameDotNet + $appName = $env.functionNameDotNet try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameLinuxConsumption ` -Location $env.location ` -StorageAccount $env.storageAccountLinux ` @@ -496,14 +507,14 @@ Describe 'New-AzFunctionApp' { -FunctionsVersion 4 ` -OSType Linux - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxConsumption + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxConsumption $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "DotNet" $functionApp.SiteConfig.LinuxFxVersion | Should -Be "dotnet|6.0" } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameLinuxConsumption -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxConsumption -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -513,30 +524,30 @@ Describe 'New-AzFunctionApp' { It "Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project." { - $functionName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShell try { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` -StorageAccount $env.storageAccountWindows ` -Runtime PowerShell ` - -RuntimeVersion 7.2 ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` -DisableApplicationInsights - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" # Get app settings - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium $applicationSettings.ContainsKey("APPINSIGHTS_INSTRUMENTATIONKEY") | Should -Be $false } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -598,13 +609,13 @@ Describe 'New-AzFunctionApp' { @{ "Name" = $env.functionNamePowerShell "Runtime" = "PowerShell" - "RuntimeVersion" = "7.2" + "RuntimeVersion" = "7.4" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption "Location" = $env.location "OSType" = "Linux" "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "PowerShell|7.2" + "LinuxFxVersion" = "PowerShell|7.4" } } # Premium function app service plan @@ -668,7 +679,7 @@ Describe 'New-AzFunctionApp' { foreach ($testCase in $functionAppCreationTestCases) { $functionsVersion = 4 - $functionName = $testCase["Name"] + $appName = $testCase["Name"] $runtime = $testCase["Runtime"] $runtimeVersion = $testCase["RuntimeVersion"] $resourceGroupName = $testCase["ResourceGroupName"] @@ -698,7 +709,7 @@ Describe 'New-AzFunctionApp' { { if ($runtimeVersion) { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -709,7 +720,7 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccountName $storageAccountName ` @@ -722,7 +733,7 @@ Describe 'New-AzFunctionApp' { { if ($runtimeVersion) { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -733,7 +744,7 @@ Describe 'New-AzFunctionApp' { } else { - New-AzFunctionApp -Name $functionName ` + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccountName $storageAccountName ` @@ -743,12 +754,12 @@ Describe 'New-AzFunctionApp' { } } - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $resourceGroupName + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be $OSType $functionApp.Runtime | Should -Be $runtime # Validate FUNCTIONS_EXTENSION_VERSION - $applicationSettings = Get-AzFunctionAppSetting -Name $functionName -ResourceGroupName $resourceGroupName + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName $applicationSettings.FUNCTIONS_EXTENSION_VERSION | Should be "~$functionsVersion" if ($testCase.ContainsKey("ExpectedSiteConfig")) @@ -773,7 +784,7 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 index 371e38dfca82..db21baad04d8 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 @@ -13,9 +13,15 @@ while(-not $mockingPath) { Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E' { + BeforeAll { + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + } + It "Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan" { - $planName = $env.functionAppPlanName + $planName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "Updated planName: $planName" -Verbose $location = 'centralus' $minimumWorkerCount = 1 $maxBurst = 3 @@ -25,14 +31,14 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction { Write-Verbose "Creating function app plan '$planName'" New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName ` -WorkerType "Windows" ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` -Location $location ` -Sku $sku - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -44,9 +50,9 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $sku = "EP3" $maxBurst = 5 - Update-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -Sku $sku -MaximumWorkerCount $maxBurst -Force + Update-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -Sku $sku -MaximumWorkerCount $maxBurst -Force - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -57,17 +63,19 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction } finally { - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($plan) { - Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue + Remove-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue } } } It "Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)" { - $planName = $env.functionAppPlanName + $planName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "Updated planName: $planName" -Verbose + $location = 'centralus' $minimumWorkerCount = 1 $maxBurst = 3 @@ -77,14 +85,14 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction { Write-Verbose "Creating function app plan '$planName'" New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName ` -WorkerType "Windows" ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` -Location $location ` -Sku $sku - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -97,7 +105,7 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $maxBurst = 7 Update-AzFunctionAppPlan -InputObject $plan -Sku $sku -MaximumWorkerCount $maxBurst -Force - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -107,12 +115,12 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction # Remove function app plan Remove-AzFunctionAppPlan -InputObject $plan -Force - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue $plan | Should -Be $null } finally { - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($plan) { Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue @@ -122,7 +130,9 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction It "Validate 'New-AzFunctionAppPlan -AsJob', 'Update-AzFunctionAppPlan -AsJob' and 'Remove-AzFunctionAppPlan -Force'" { - $planName = $env.functionAppPlanName + $planName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "Updated planName: $planName" -Verbose + $location = 'centralus' $minimumWorkerCount = 1 $maxBurst = 3 @@ -137,7 +147,7 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction # Create a service plan Write-Verbose "Creating function app plan '$planName' job started." -Verbose $functionAppPlanJob = New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName ` -WorkerType "Windows" ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` @@ -150,7 +160,7 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $result.State | Should -Be "Completed" $result | Remove-Job -ErrorAction SilentlyContinue - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -167,7 +177,7 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction # Update function app plan SKU to EP2 and maxBurst to 5 $sku = "EP2" $functionAppPlanJob = Update-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName ` -Sku $sku ` -Force ` -AsJob @@ -177,7 +187,7 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $result.State | Should -Be "Completed" $result | Remove-Job -ErrorAction SilentlyContinue - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $plan.WorkerType | Should -Be "Windows" $plan.SkuTier | Should -Be "ElasticPremium" $plan.SkuName | Should -Be $sku @@ -191,13 +201,13 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $plan.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] } - Remove-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -Force - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Remove-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -Force + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue $plan | Should -Be $null } finally { - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($plan) { Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue From ed777c734bd8ca72ff2de9ffbee69ca52960a53c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 2 Oct 2025 17:56:12 -0700 Subject: [PATCH 10/76] Fix test issue: pass app object to Remove-AzFunctionApp --- .../Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index de93caef2840..30b74a09a4e3 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -53,7 +53,7 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $appName -Force -ErrorAction SilentlyContinue + Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue } } } From 1b02c53a3e57b0f01bc47d6479fa90b0e19452dd Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 3 Oct 2025 22:34:59 -0700 Subject: [PATCH 11/76] Update New-AzFunctionApp.Tests --- .../test/New-AzFunctionApp.Tests.ps1 | 282 ++++++++++++------ 1 file changed, 199 insertions(+), 83 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 30b74a09a4e3..e1ff4f923052 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -33,12 +33,14 @@ Describe 'New-AzFunctionApp' { try { + Write-Verbose "Creating function app with a custom docker image" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` -DockerImageName "divyag2411/test:customcontainer" + Write-Verbose "Validating function app properties..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Custom Image" @@ -50,6 +52,7 @@ Describe 'New-AzFunctionApp' { } finally { + Write-Verbose "Delete the function app..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { @@ -157,11 +160,18 @@ Describe 'New-AzFunctionApp' { try { $appName = $env.functionNameTestApp + Write-Verbose "App name: $appName" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Location: $location" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose & { # We use -WhatIf which performs all the inputs validation for the function app creation, and we return right before sending the request to the backend if ($runtimeVersion) { + Write-Verbose "Create function app with runtime version" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` @@ -172,6 +182,7 @@ Describe 'New-AzFunctionApp' { } else { + Write-Verbose "Create function app without runtime version" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -Location $location ` @@ -184,6 +195,7 @@ Describe 'New-AzFunctionApp' { $logFileContent = Get-Content -Path $filePath -Raw + Write-Verbose "Validate the default FunctionsVersion and OSType" -Verbose $expectectedFunctionsVersionWarning = "FunctionsVersion not specified. Setting default value to '$expectedFunctionsVersion'." $expectectedOSTypeWarning = "OSType not specified. Setting default value to '$expectedOSType'." @@ -193,6 +205,7 @@ Describe 'New-AzFunctionApp' { } finally { + Write-Verbose "Cleaning up the verbose output log file..." -Verbose if (Test-Path $filePath) { Remove-Item $filePath -Force -ErrorAction SilentlyContinue @@ -231,6 +244,14 @@ Describe 'New-AzFunctionApp' { { $appName = $env.functionNameTestApp $runtimeVersion = $runtimeVersionNotSupported[$OSType][$functionsVersion][$runtime] + Write-Verbose "App name: $appName" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Plan name: $planName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + Write-Verbose "OSType: $OSType" -Verbose + Write-Verbose "FunctionsVersion: $functionsVersion" -Verbose $expectedErrorMessage = "Runtime '$runtime' version '$runtimeVersion' in Functions version '$functionsVersion' on '$OSType' is not supported." $errorId = "RuntimeVersionNotSupported" @@ -253,10 +274,13 @@ Describe 'New-AzFunctionApp' { } catch { + Write-Verbose "Catch the expected exception" -Verbose $myError = $_ } + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose $myError.FullyQualifiedErrorId | Should Be $errorId + Write-Verbose "Validate Exception.Message" -Verbose $myError.Exception.Message | Should Match $expectedErrorMessage } } @@ -270,6 +294,7 @@ Describe 'New-AzFunctionApp' { $expectedErrorMessage = "Runtime 'Go' is not supported. Currently supported runtimes: 'Custom', 'DotNet', 'DotNet-Isolated', 'Java', 'Node', 'PowerShell', 'Python'." try { + Write-Verbose "Create function app with an invalid runtime" -Verbose New-AzFunctionApp -Name $env.functionNameTestApp ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` @@ -278,37 +303,54 @@ Describe 'New-AzFunctionApp' { } catch { + Write-Verbose "Catch the expected exception" -Verbose $myError = $_ } + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose $myError.FullyQualifiedErrorId | Should Be $errorId + Write-Verbose "Validate Exception.Message" -Verbose $myError.Exception.Message | Should Match $expectedErrorMessage } It "Linux functions apps should not set the 'WEBSITE_NODE_DEFAULT_VERSION' app setting" { $appName = $env.functionNamePython + Write-Verbose "App name: $appName" -Verbose + + $resourceGroupName = $env.resourceGroupNameLinuxPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountLinux + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $planName = $env.planNameWorkerTypeLinux + Write-Verbose "Plan name: $planName" -Verbose try { + Write-Verbose "Creating Linux function app with Python runtime" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameLinuxPremium ` - -PlanName $env.planNameWorkerTypeLinux ` - -StorageAccount $env.storageAccountLinux ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` -Runtime Python ` - -RuntimeVersion "3.10" ` + -RuntimeVersion "3.12" ` -FunctionsVersion 4 - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Python" - $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium + Write-Verbose "Validating app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName $applicationSettings.ContainsKey("WEBSITE_NODE_DEFAULT_VERSION") | Should -Be $false } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxPremium -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -328,6 +370,8 @@ Describe 'New-AzFunctionApp' { # $appName = $env.functionNamePowerShell + $resourceGroupName = $env.resourceGroupNameWindowsConsumption + $storageAccountName = $env.storageAccountWindows $location = 'centralus' $tags = @{ "MyTag1" = "MyTag1Value1" @@ -340,12 +384,18 @@ Describe 'New-AzFunctionApp' { "AppSetting3" = "" } + Write-Verbose "App name: $appName" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Location: $location" -Verbose + Write-Verbose "Tags: $($tags | Out-String)" -Verbose + try { New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameWindowsConsumption ` + -ResourceGroupName $resourceGroupName ` -Location $location ` - -StorageAccount $env.storageAccountWindows ` + -StorageAccount $storageAccountName ` -OSType "Windows" ` -Runtime "PowerShell" ` -RuntimeVersion "7.4" ` @@ -353,18 +403,19 @@ Describe 'New-AzFunctionApp' { -Tag $tags ` -AppSetting $appSetting - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" $functionApp.Location | Should -Be "Central US" - # Validate tags + Write-Verbose "Validating tags..." -Verbose foreach ($tagName in $tags.Keys) { $functionApp.Tag.AdditionalProperties[$tagName] | Should Be $tags[$tagName] } - # Validate app settings + Write-Verbose "Validating app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption foreach ($appSettingName in $appSetting.Keys) { @@ -378,10 +429,10 @@ Describe 'New-AzFunctionApp' { $applicationSettings[$appSettingName] | Should Be $expectedValue } - # Validate WEBSITE_CONTENTSHARE + Write-Verbose "Validating 'WEBSITE_CONTENTSHARE' app setting..." -Verbose $applicationSettings["WEBSITE_CONTENTSHARE"] | Should Match $appName - # Validate the connection string suffix + Write-Verbose "Validating storage account connection string suffix..." -Verbose $expectedSuffix = GetStorageAccountEndpointSuffix foreach ($appSettingName in @("AzureWebJobsStorage", "AzureWebJobsDashboard", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING")) { @@ -390,9 +441,11 @@ Describe 'New-AzFunctionApp' { } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsConsumption -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { + Write-Verbose "Run: Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue" -Verbose Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue } } @@ -402,27 +455,43 @@ Describe 'New-AzFunctionApp' { $appName = $env.functionNamePowerShell $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 + Write-Verbose "Tags: $($tags | Out-String)" -Verbose try { + Write-Verbose "Creating function app with a UserAssigned managed identity" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.4" ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -IdentityType UserAssigned ` - -IdentityID $identityInfo.Id + -IdentityID $identityInfo.Id ` + -OSType Windows - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" + $functionApp.Runtime | Should -Be $runtime $functionApp.IdentityType | Should -Be "UserAssigned" } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -433,28 +502,48 @@ Describe 'New-AzFunctionApp' { It "Create a function app with custom app settings and 'SystemAssigned' managed identity " { $appName = $env.functionNamePowerShell + 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 + + $runtime = "PowerShell" + Write-Verbose "Runtime: $runtime" -Verbose + + $runtimeVersion = 7.4 + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + $appSetting = @{} $appSetting.Add("MyAppSetting1", 98765) $appSetting.Add("MyAppSetting2", "FooBar") try { + Write-Verbose "Creating function app with a SystemAssigned managed identity" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.4" ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -IdentityType SystemAssigned ` -AppSetting $appSetting + Write-Verbose "Validating function app properties..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" + $functionApp.Runtime | Should -Be $runtime $functionApp.IdentityType | Should -Be "SystemAssigned" # Get app settings + Write-Verbose "Validating app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium foreach ($appSettingName in $appSetting.Keys) @@ -464,6 +553,7 @@ Describe 'New-AzFunctionApp' { } finally { + Write-Verbose "Cleaning up the function app..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue if ($functionApp) { @@ -478,43 +568,74 @@ Describe 'New-AzFunctionApp' { $expetedErrorId = "IdentityIDIsRequiredForUserAssignedIdentity" $appName = $env.functionNamePowerShell + 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 + + $runtime = "PowerShell" + Write-Verbose "Runtime: $runtime" -Verbose + + $runtimeVersion = 7.4 + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose $scriptblock = { + Write-Verbose "Creating function app with a UserAssigned managed identity but without IdentityID" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion "7.4" ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -IdentityType UserAssigned } + Write-Verbose "Validate that the expected expetedErrorId is thrown" -Verbose $scriptblock | Should -Throw -ErrorId $expetedErrorId } It "Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property" { $appName = $env.functionNameDotNet + Write-Verbose "App name: $appName" -Verbose + + $resourceGroupName = $env.resourceGroupNameLinuxConsumption + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountLinux + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $location = $env.location + Write-Verbose "Location: $location" -Verbose try { + Write-Verbose "Creating a DotNet function app in consumption for Linux" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameLinuxConsumption ` - -Location $env.location ` - -StorageAccount $env.storageAccountLinux ` + -ResourceGroupName $resourceGroupName ` + -Location $location ` + -StorageAccount $storageAccountName ` -Runtime DotNet ` -RuntimeVersion 6 ` -FunctionsVersion 4 ` -OSType Linux - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxConsumption + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "DotNet" $functionApp.SiteConfig.LinuxFxVersion | Should -Be "dotnet|6.0" } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameLinuxConsumption -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -525,29 +646,48 @@ Describe 'New-AzFunctionApp' { It "Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project." { $appName = $env.functionNamePowerShell + 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 + + $runtime = "PowerShell" + Write-Verbose "Runtime: $runtime" -Verbose + + $runtimeVersion = 7.4 + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose try { + Write-Verbose "Creating function app with -DisableApplicationInsights" -Verbose New-AzFunctionApp -Name $appName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` - -PlanName $env.planNameWorkerTypeWindows ` - -StorageAccount $env.storageAccountWindows ` - -Runtime PowerShell ` - -RuntimeVersion 7.4 ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -DisableApplicationInsights - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" - # Get app settings - $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium + Write-Verbose "Validating that the app setting 'APPINSIGHTS_INSTRUMENTATIONKEY' does not exist..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName $applicationSettings.ContainsKey("APPINSIGHTS_INSTRUMENTATIONKEY") | Should -Be $false } finally { - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue @@ -558,52 +698,40 @@ Describe 'New-AzFunctionApp' { # These is the list of function apps to be created $functionAppCreationTestCases = @( # Consumption apps - @{ - "Name" = $env.functionNameDotNet - "Runtime" = "DotNet" - "RuntimeVersion" = "6" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption - "Location" = $env.location - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "DOTNET|6.0" - } - }, @{ "Name" = $env.functionNameJava "Runtime" = "Java" - "RuntimeVersion" = "17" + "RuntimeVersion" = "21" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption "Location" = $env.location "OSType" = "Linux" "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Java|17" + "LinuxFxVersion" = "Java|21" } }, @{ "Name" = $env.functionNameNode "Runtime" = "Node" - "RuntimeVersion" = "18" + "RuntimeVersion" = "22" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption "Location" = $env.location "OSType" = "Linux" "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Node|18" + "LinuxFxVersion" = "Node|22" } }, @{ "Name" = $env.functionNamePython "Runtime" = "Python" - "RuntimeVersion" = "3.10" + "RuntimeVersion" = "3.11" "StorageAccountName" = $env.storageAccountLinux "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption "Location" = $env.location "OSType" = "Linux" "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Python|3.10" + "LinuxFxVersion" = "Python|3.11" } }, @{ @@ -622,40 +750,28 @@ Describe 'New-AzFunctionApp' { @{ "Name" = $env.functionNameDotNetIsolated "Runtime" = "DotNet-Isolated" - "RuntimeVersion" = "6" + "RuntimeVersion" = "9" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "PlanName" = $env.planNameWorkerTypeWindows "OSType" = "Windows" "ExpectedSiteConfig" = @{ - "NetFrameworkVersion" = "v6.0" + "NetFrameworkVersion" = "v9.0" } "ExpectedAppSettings" = @{ "FUNCTIONS_WORKER_RUNTIME" = "dotnet-isolated" } } - @{ - "Name" = $env.functionNamePython - "Runtime" = "Python" - "RuntimeVersion" = "3.9" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxPremium - "PlanName" = $env.planNameWorkerTypeLinux - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Python|3.9" - } - }, @{ "Name" = $env.functionNameJava "Runtime" = "Java" - "RuntimeVersion" = "17" + "RuntimeVersion" = "21" "StorageAccountName" = $env.storageAccountWindows "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "PlanName" = $env.planNameWorkerTypeWindows "OSType" = "Windows" "ExpectedSiteConfig" = @{ - "JavaVersion" = "17" + "JavaVersion" = "21" "netFrameworkVersion" = "v6.0" } } From 5fa5eba79eb05dde86934cc3e57dc77fe85930bc Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 3 Oct 2025 23:36:22 -0700 Subject: [PATCH 12/76] Removed duplicate tests in New-AzFunctionApp.Tests --- .../test/New-AzFunctionApp.Tests.ps1 | 23 ++----------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index e1ff4f923052..1788c20bbfdd 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -131,14 +131,6 @@ Describe 'New-AzFunctionApp' { "ResourceGroupName" = $env.resourceGroupNameWindowsPremium "Location" = $env.location "ExpectedOSType" = "Windows" - }, - @{ - "Runtime" = "Python" - "RuntimeVersion" = "3.12" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxPremium - "Location" = $env.location - "ExpectedOSType" = "Linux" } ) @@ -342,6 +334,7 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Python" + $functionApp.SiteConfig.LinuxFxVersion | Should -Be "Python|3.12" Write-Verbose "Validating app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName @@ -721,19 +714,7 @@ Describe 'New-AzFunctionApp' { "ExpectedSiteConfig" = @{ "LinuxFxVersion" = "Node|22" } - }, - @{ - "Name" = $env.functionNamePython - "Runtime" = "Python" - "RuntimeVersion" = "3.11" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption - "Location" = $env.location - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "Python|3.11" - } - }, + } @{ "Name" = $env.functionNamePowerShell "Runtime" = "PowerShell" From 4dc3b9458ba67ccdcf08eea0c1b8f44754fa1ec5 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 5 Oct 2025 11:31:26 -0700 Subject: [PATCH 13/76] Update Get-Update-Remove-AzFunctionAppSetting.Tests --- .../test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 index 22f40f9e9d37..c26bd60efa48 100644 --- a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Tests.ps1 @@ -98,10 +98,11 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu $appSettings.ContainsKey($appSettingName) | Should be $false } - # Delete app settings using InputObject + Write-Verbose "Validate 'Remove-AzFunctionAppSetting -InputObject'" -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName Remove-AzFunctionAppSetting -InputObject $functionApp -AppSettingName $appSetting2.Keys + Write-Verbose "Validate that the app settings were removed" -Verbose $appSettings = Get-AzFunctionAppSetting -InputObject $functionApp foreach ($appSettingName in $appSetting2.Keys) @@ -111,10 +112,12 @@ Describe 'Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFu } finally { + Write-Verbose "Cleaning up the function app..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } From 176f8692898bc0cf78d748962ed1017d6e426037 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 5 Oct 2025 11:32:54 -0700 Subject: [PATCH 14/76] update New-AzFunctionApp.Tests --- .../test/New-AzFunctionApp.Tests.ps1 | 50 +++++++++++++++---- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 1788c20bbfdd..449b1c9c5298 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -56,7 +56,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -346,7 +347,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -438,8 +440,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Write-Verbose "Run: Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue" -Verbose - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -487,7 +489,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -550,7 +553,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -631,7 +635,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -683,7 +688,8 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -783,6 +789,14 @@ Describe 'New-AzFunctionApp' { $storageAccountName = $testCase["StorageAccountName"] $OSType = $testCase["OSType"] + Write-Verbose "App name: $appName" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + Write-Verbose "OSType: $OSType" -Verbose + Write-Verbose "FunctionsVersion: $functionsVersion" -Verbose + $planType = $null $location = $null $planName = $null @@ -798,6 +812,10 @@ Describe 'New-AzFunctionApp' { $planName = $testCase["PlanName"] } + Write-Verbose "PlanType: $planType" -Verbose + if ($planName) { Write-Verbose "PlanName: $planName" -Verbose } + if ($location) { Write-Verbose "Location: $location" -Verbose } + It "Create v4 $OSType $runtime $runtimeVersion Function App hosted in a $planType plan." { try @@ -851,16 +869,18 @@ Describe 'New-AzFunctionApp' { } } + Write-Verbose "Validating function app properties..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be $OSType $functionApp.Runtime | Should -Be $runtime - # Validate FUNCTIONS_EXTENSION_VERSION + Write-Verbose "Validating FUNCTIONS_EXTENSION_VERSION and app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName $applicationSettings.FUNCTIONS_EXTENSION_VERSION | Should be "~$functionsVersion" if ($testCase.ContainsKey("ExpectedSiteConfig")) { + Write-Verbose "Validating SiteConfig properties..." -Verbose $expectedSiteConfig = $testCase["ExpectedSiteConfig"] foreach ($propertyName in $expectedSiteConfig.Keys) { @@ -871,6 +891,7 @@ Describe 'New-AzFunctionApp' { if ($testCase.ContainsKey("ExpectedAppSettings")) { + Write-Verbose "Validating custom app settings..." -Verbose $expectedAppSettings = $testCase["ExpectedAppSettings"] foreach ($appSettingName in $expectedAppSettings.Keys) { @@ -881,10 +902,12 @@ Describe 'New-AzFunctionApp' { } finally { + Write-Verbose "Cleaning up the function app..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($functionApp) { - Remove-AzFunctionApp -InputObject $functionApp -Force -ErrorAction SilentlyContinue + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force #-ErrorAction SilentlyContinue } } } @@ -899,18 +922,23 @@ Describe 'New-AzFunctionApp' { $expectedErrorMessage = "Functions version not supported. Currently supported version are:" try { + Write-Verbose "Create function app with an invalid FunctionsVersion: $functionsVersion" -Verbose + # Use valid parameters for other properties New-AzFunctionApp -Name $env.functionNameTestApp ` -ResourceGroupName $env.resourceGroupNameWindowsPremium ` -PlanName $env.planNameWorkerTypeWindows ` -StorageAccount $env.storageAccountWindows ` -Runtime PowerShell ` - -FunctionsVersion $functionsVersion + -FunctionsVersion $functionsVersion ` + -ErrorAction Stop } catch { + Write-Verbose "Catch the expected exception" -Verbose $myError = $_ } + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose $myError.FullyQualifiedErrorId | Should Be $errorId $myError.Exception.Message | Should Match $expectedErrorMessage } From 5975ed3531dae08d245a8c44f9f47bda3895a2a3 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 5 Oct 2025 11:33:37 -0700 Subject: [PATCH 15/76] New-Update-Remove-AzFunctionApp.Tests --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 24 ++++++++++++------- 1 file changed, 15 insertions(+), 9 deletions(-) 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 57c7d792a7f2..896a1be3d99d 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 @@ -45,15 +45,21 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose - $appName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShellNew1 Write-Verbose "App name: $appName" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Plan name: $planName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Tags: $($tags | Out-String)" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` + -OSType Windows ` -Runtime PowerShell ` - -RuntimeVersion "7.2" ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` -IdentityType SystemAssigned ` -Tag $tags @@ -74,7 +80,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Updated planName: $newPlanName" -Verbose New-AzFunctionAppPlan -Name $newPlanName ` -ResourceGroupName $resourceGroupName ` - -WorkerType "Windows" ` + -WorkerType Windows ` -MinimumWorkerCount 1 ` -MaximumWorkerCount 10 ` -Location $location ` @@ -137,15 +143,15 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Creating function app -AsJob" -Verbose - $appName = $env.functionNamePowerShellNew1 + $appName = $env.functionNamePowerShellNew2 Write-Verbose "App name: $appName" -Verbose $functionAppJob = New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -OSType "Windows" ` - -Runtime "PowerShell" ` + -OSType Windows ` + -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` -AsJob @@ -195,15 +201,15 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Creating function app" -Verbose - $appName = $env.functionNamePowerShellNew2 + $appName = $env.functionNamePowerShellNew3 Write-Verbose "App name: $appName" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -OSType "Windows" ` - -Runtime "PowerShell" ` + -OSType Windows ` + -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 From 81770fe6f139572326029d5d5a84ba84cc5fbf54 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 5 Oct 2025 15:07:26 -0700 Subject: [PATCH 16/76] Update Remove-AzFunctionApp.Tests --- .../test/Remove-AzFunctionApp.Tests.ps1 | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 index 47915e4e4853..1936a0a09755 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 @@ -18,35 +18,45 @@ Describe 'Remove-AzFunctionApp' { It "Does not delete the function app plan if it is the last app in the plan" { - $planName = $env.functionAppTestPlanName - $functionName = $env.functionNamePowerShell + $planName = $env.functionAppTestPlanName2 + Write-Verbose "Plan name: $planName" -Verbose + $appName = $env.functionNamePowerShellNew4 + Write-Verbose "App name: $appName" -Verbose + $resourceGroupName = $env.resourceGroupNameWindowsPremium $location = 'centralus' + Write-Verbose "Location: $location" -Verbose + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + $minimumWorkerCount = 1 + Write-Verbose "Minimum worker count: $minimumWorkerCount" -Verbose $maxBurst = 3 + Write-Verbose "Maximum burst: $maxBurst" -Verbose $sku = "EP1" + Write-Verbose "SKU: $sku" -Verbose try { Write-Verbose "Creating function app plan '$planName'" -Verbose New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + -ResourceGroupName $resourceGroupName` -WorkerType "Windows" ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` -Location $location ` -Sku $sku - Write-Verbose "Creating function app '$functionName'" -Verbose - New-AzFunctionApp -Name $functionName ` - -ResourceGroupName $env.resourceGroupNameWindowsPremium ` + Write-Verbose "Creating function app '$appName'" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` -PlanName $planName ` - -StorageAccount $env.storageAccountWindows ` + -StorageAccount $storageAccountName ` -Runtime PowerShell ` - -RuntimeVersion 7.2 ` + -RuntimeVersion 7.4 ` -FunctionsVersion 4 Write-Verbose "Validate function app properties" -Verbose - $functionApp = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" @@ -54,20 +64,20 @@ Describe 'Remove-AzFunctionApp' { Remove-AzFunctionApp -InputObject $functionApp -Force Write-Verbose "Validate that the function app plan exists" -Verbose - $appPlan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $appPlan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName $appPlan.Name | Should -Be $planName } finally { Write-Verbose "Test case clean up" -Verbose - $app = Get-AzFunctionApp -Name $functionName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $app = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($app) { Remove-AzFunctionApp -InputObject $app -Force -ErrorAction SilentlyContinue } - $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $env.resourceGroupNameWindowsPremium -ErrorAction SilentlyContinue + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue if ($plan) { Remove-AzFunctionAppPlan -InputObject $plan -Force -ErrorAction SilentlyContinue From a1d89ea32e6871bfe944ce3a638d699273c0cae8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 13:51:34 -0700 Subject: [PATCH 17/76] Update New-Update-Remove-AzFunctionApp.Tests --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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 896a1be3d99d..3981898305d4 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 @@ -53,6 +53,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Storage account name: $storageAccountName" -Verbose Write-Verbose "Tags: $($tags | Out-String)" -Verbose + Write-Verbose "Creating function app $appName in resource group $resourceGroupName with plan $planName" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` @@ -64,6 +65,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' -IdentityType SystemAssigned ` -Tag $tags + Write-Verbose "Run: Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName" -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName Write-Verbose "FunctionApp retrieved. Validating properties" -Verbose $functionApp.OSType | Should -Be "Windows" @@ -76,8 +78,10 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } Write-Verbose "Create premium function app plan" -Verbose + $location = $env.location + Write-Verbose "Location: $location" -Verbose $newPlanName = $env.planNameWorkerTypeWindowsNew - Write-Verbose "Updated planName: $newPlanName" -Verbose + Write-Verbose "New planName: $newPlanName" -Verbose New-AzFunctionAppPlan -Name $newPlanName ` -ResourceGroupName $resourceGroupName ` -WorkerType Windows ` @@ -86,6 +90,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' -Location $location ` -Sku EP1 + Write-Verbose "Run: Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName" -Verbose $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName Write-Verbose "Plan retrieved. Validating properties" -Verbose $plan.WorkerType | Should -Be "Windows" @@ -146,11 +151,23 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $appName = $env.functionNamePowerShellNew2 Write-Verbose "App name: $appName" -Verbose + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $workerType = "Windows" + Write-Verbose "Worker type: $workertype" -Verbose + $functionAppJob = New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -OSType Windows ` + -OSType workerType ` -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` From 328d61ba5e0d642cae6f8542801c6a4c390655ea Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 15:45:38 -0700 Subject: [PATCH 18/76] Only add runtime versions that are not in the list already --- .../Functions.Autorest/custom/HelperFunctions.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 739814f065b3..86fc18ad890e 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -2168,6 +2168,17 @@ function AddRuntimeToDictionary $list = New-Object System.Collections.Generic.List[[Runtime]] } + # Only add runtime versions that are not in the list already + foreach ($existingRuntime in $list) + { + if ($existingRuntime.Version -eq $Runtime.Version) + { + Write-Debug "$DEBUG_PREFIX Runtime version $($Runtime.Version) for runtime $($Runtime.Name) already exists. Skipping..." + return + } + } + + Write-Debug "$DEBUG_PREFIX Adding runtime version $($Runtime.Version) for runtime $($Runtime.Name)." $list.Add($Runtime) $RuntimeToVersionDictionary[$Runtime.Name] = $list From b42e38f82efdf7158b239a06a2f081a3495a3b6c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 16:01:07 -0700 Subject: [PATCH 19/76] Update Remove-AzFunctionApp.Tests --- .../Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 index 1936a0a09755..9ed2309c7c92 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Tests.ps1 @@ -23,10 +23,13 @@ Describe 'Remove-AzFunctionApp' { $appName = $env.functionNamePowerShellNew4 Write-Verbose "App name: $appName" -Verbose $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose $location = 'centralus' Write-Verbose "Location: $location" -Verbose $storageAccountName = $env.storageAccountWindows Write-Verbose "Storage account name: $storageAccountName" -Verbose + $workerType = "Windows" + Write-Verbose "Worker type: $workertype" -Verbose $minimumWorkerCount = 1 Write-Verbose "Minimum worker count: $minimumWorkerCount" -Verbose @@ -39,8 +42,8 @@ Describe 'Remove-AzFunctionApp' { { Write-Verbose "Creating function app plan '$planName'" -Verbose New-AzFunctionAppPlan -Name $planName ` - -ResourceGroupName $resourceGroupName` - -WorkerType "Windows" ` + -ResourceGroupName $resourceGroupName ` + -WorkerType $workerType ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` -Location $location ` From 0f4b2c46711f12043f04c564f9997444f5cf63cf Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 16:01:39 -0700 Subject: [PATCH 20/76] Update New-Update-Remove-AzFunctionApp --- .../test/New-Update-Remove-AzFunctionApp.Tests.ps1 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 3981898305d4..bd02168c3d16 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 @@ -82,6 +82,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Location: $location" -Verbose $newPlanName = $env.planNameWorkerTypeWindowsNew Write-Verbose "New planName: $newPlanName" -Verbose + New-AzFunctionAppPlan -Name $newPlanName ` -ResourceGroupName $resourceGroupName ` -WorkerType Windows ` @@ -160,14 +161,14 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $storageAccountName = $env.storageAccountWindows Write-Verbose "Storage account name: $storageAccountName" -Verbose - $workerType = "Windows" + $osType = "Windows" Write-Verbose "Worker type: $workertype" -Verbose $functionAppJob = New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -OSType workerType ` + -OSType $osType ` -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` @@ -179,7 +180,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $result | Remove-Job -ErrorAction SilentlyContinue $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName - $functionApp.OSType | Should -Be "Windows" + $functionApp.OSType | Should -Be $osType $functionApp.Runtime | Should -Be "PowerShell" $functionApp.AppServicePlan | Should -Be $planName From 754b9a63a0ed333dcb283bddb0c356b8d6a609aa Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 19:28:38 -0700 Subject: [PATCH 21/76] New-Update-Remove-AzFunctionAppPlan.Tests --- ...New-Update-Remove-AzFunctionAppPlan.Tests.ps1 | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 index db21baad04d8..726ea3e55a57 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Tests.ps1 @@ -23,16 +23,30 @@ Describe 'New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunction $planName = $env.planNameWorkerTypeWindowsNew Write-Verbose "Updated planName: $planName" -Verbose $location = 'centralus' + Write-Verbose "Location: $location" -Verbose $minimumWorkerCount = 1 + Write-Verbose "Minimum worker count: $minimumWorkerCount" -Verbose $maxBurst = 3 + Write-Verbose "Maximum worker count: $maxBurst" -Verbose $sku = "EP1" + Write-Verbose "SKU: $sku" -Verbose + $workerType = "Windows" + Write-Verbose "Worker type: $workerType" -Verbose try { Write-Verbose "Creating function app plan '$planName'" + Write-Verbose "Running: New-AzFunctionAppPlan -Name $planName ` + -ResourceGroupName $resourceGroupName ` + -WorkerType $workerType ` + -MinimumWorkerCount $minimumWorkerCount ` + -MaximumWorkerCount $maxBurst ` + -Location $location ` + -Sku $sku" -Verbose + New-AzFunctionAppPlan -Name $planName ` -ResourceGroupName $resourceGroupName ` - -WorkerType "Windows" ` + -WorkerType $workerType ` -MinimumWorkerCount $minimumWorkerCount ` -MaximumWorkerCount $maxBurst ` -Location $location ` From fe1be0e93e51c5d561df790e3a553c87012d1412 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 6 Oct 2025 22:04:03 -0700 Subject: [PATCH 22/76] Update New-Update-Remove-AzFunctionApp.Tests --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 61 +++++++++---------- 1 file changed, 29 insertions(+), 32 deletions(-) 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 bd02168c3d16..e94d5878e864 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 @@ -13,33 +13,6 @@ while(-not $mockingPath) { Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' { - BeforeAll { - - $planName = $env.planNameWorkerTypeWindows - Write-Verbose "Plan name: $planName" -Verbose - - $resourceGroupName = $env.resourceGroupNameWindowsPremium - Write-Verbose "Resource group name: $resourceGroupName" -Verbose - - $storageAccountName = $env.storageAccountWindows - Write-Verbose "Storage account name: $storageAccountName" -Verbose - - $identityInfo = $env.identityInfo - Write-Verbose "Identity id: $($identityInfo.Id | Out-String)" -Verbose - - $newApplInsights = $env.newApplInsights - Write-Verbose "New Application Insights name: $($newApplInsights.Name | Out-String)" -Verbose - - $location = "centralus" - Write-Verbose "Location: $location" -Verbose - - $tags = @{ - "MyTag1" = "MyTag1Value1" - "MyTag2" = "MyTag1Value2" - } - Write-Verbose "Tags: $($tags | Out-String)" -Verbose - } - It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { try @@ -48,12 +21,23 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $appName = $env.functionNamePowerShellNew1 Write-Verbose "App name: $appName" -Verbose - Write-Verbose "Resource group name: $resourceGroupName" -Verbose + $planName = $env.planNameWorkerTypeWindows Write-Verbose "Plan name: $planName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountWindows Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $tags = @{ + "MyTag1" = "MyTag1Value1" + "MyTag2" = "MyTag1Value2" + } Write-Verbose "Tags: $($tags | Out-String)" -Verbose - Write-Verbose "Creating function app $appName in resource group $resourceGroupName with plan $planName" -Verbose + Write-Verbose "Creating function app with SystemAssigned manged identity." -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` @@ -119,6 +103,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $functionApp.IdentityType | Should -Be $null Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose + $newApplInsights = $env.newApplInsights $applicationInsightsName = $newApplInsights.Name Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ApplicationInsightsName $applicationInsightsName -Force @@ -152,7 +137,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $appName = $env.functionNamePowerShellNew2 Write-Verbose "App name: $appName" -Verbose - $planName = $env.planNameWorkerTypeWindows + $planName = $env.planNameWorkerTypeWindows Write-Verbose "Plan name: $planName" -Verbose $resourceGroupName = $env.resourceGroupNameWindowsPremium @@ -222,17 +207,29 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $appName = $env.functionNamePowerShellNew3 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 + + $osType = "Windows" + Write-Verbose "Worker type: $workertype" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -OSType Windows ` + -OSType $osType ` -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName - $functionApp.OSType | Should -Be "Windows" + $functionApp.OSType | Should -Be $osType $functionApp.Runtime | Should -Be "PowerShell" $functionApp.AppServicePlan | Should -Be $planName From 4baebdd7c19e28107ea43b55b2bc8ce055a2509c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 7 Oct 2025 18:09:12 -0700 Subject: [PATCH 23/76] Update New-AzFunctionApp.ACA.Tests --- .../test/New-AzFunctionApp.ACA.Tests.ps1 | 39 ++++++++++++++++++- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 index 8dc35b8cba03..0b63d2640031 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.ACA.Tests.ps1 @@ -24,14 +24,12 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { $storageAccountNameACA = "funcacastotorage" + (GetRandomStringValue -len 4) $workSpaceACAName = "workspace-azpstest" + (GetRandomStringValue -len 4) $environmentACAName = "azps-env-test" + (GetRandomStringValue -len 3) - $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) Write-Host "resourceGroupNameACA: $($resourceGroupNameACA)" Write-Host "locationACA: $($locationACA)" Write-Host "storageAccountNameACA: $($storageAccountNameACA)" Write-Host "workSpaceACAName: $($workSpaceACAName)" Write-Host "environmentACAName: $($environmentACAName)" - Write-Host "functionAppACAName: $($functionAppACAName)" # Create test resources Write-Host "" @@ -74,6 +72,9 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { It "Creating a function app ACA should throw an error when ResourceCpu is specified without ResourceMemory." { + $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + Write-Host "functionAppACAName: $($functionAppACAName)" + $result = { New-AzFunctionApp -ResourceGroupName $resourceGroupNameACA ` -Name $functionAppACAName ` @@ -91,6 +92,9 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { It "Creating a function app ACA should throw an error when ResourceMemory is specified without ResourceCpu." { + $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + Write-Host "functionAppACAName: $($functionAppACAName)" + $result = { New-AzFunctionApp -ResourceGroupName $resourceGroupNameACA ` -Name $functionAppACAName ` @@ -108,6 +112,9 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { It "Creating a function app ACA should throw an error when ResourceMemory is not specified in Gi." { + $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + Write-Host "functionAppACAName: $($functionAppACAName)" + $result = { New-AzFunctionApp -ResourceGroupName $resourceGroupNameACA ` -Name $functionAppACAName ` @@ -126,17 +133,29 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { It "Creating a function app ACA with minimum required parameters should succeed." { + $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + Write-Host "functionAppACAName: $($functionAppACAName)" + $expectedLinuxFxVersion = "DOCKER|mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" + Write-Verbose "Resource group name: $resourceGroupNameACA" -Verbose + Write-Verbose "Storage account name: $storageAccountNameACA" -Verbose + Write-Verbose "Environment name: $environmentACAName" -Verbose + Write-Verbose "Workload profile name: $($workloadProfile.Name)" -Verbose + try { + Write-Verbose "Creating function app ACA..." -Verbose New-AzFunctionApp -ResourceGroupName $resourceGroupNameACA ` -Name $functionAppACAName ` -StorageAccountName $storageAccountNameACA ` -Environment $environmentACAName ` -WorkloadProfileName $workloadProfile.Name + Write-Verbose "Retrieving function app ACA..." -Verbose $functionApp = Get-AzFunctionApp -Name $functionAppACAName -ResourceGroupName $resourceGroupNameACA + + Write-Verbose "Function app ACA retrieved. Validating properties..." -Verbose $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Container App" $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion @@ -155,6 +174,9 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { It "Creating a function app ACA with all options should succeed." { + $functionAppACAName = "test1appaca" + (GetRandomStringValue -len 4) + Write-Host "functionAppACAName: $($functionAppACAName)" + $expectedLinuxFxVersion = "DOCKER|mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0" $resourceCpu = 1 $resourceMemory = "2.0Gi" @@ -163,8 +185,18 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { $expectedResourceConfigMemory = ([double]::Parse($resourceMemory.Substring(0, $resourceMemory.Length - 2))).ToString() + "Gi" + Write-Verbose "Resource group name: $resourceGroupNameACA" -Verbose + Write-Verbose "Storage account name: $storageAccountNameACA" -Verbose + Write-Verbose "Environment name: $environmentACAName" -Verbose + Write-Verbose "Workload profile name: $($workloadProfile.Name)" -Verbose + Write-Verbose "Resource CPU: $resourceCpu" -Verbose + Write-Verbose "Resource Memory: $resourceMemory" -Verbose + Write-Verbose "Scale minimum replica: $scaleMinReplica" -Verbose + Write-Verbose "Scale maximum replica: $scaleMaxReplica" -Verbose + try { + Write-Verbose "Creating function app ACA..." -Verbose New-AzFunctionApp -ResourceGroupName $resourceGroupNameACA ` -Name $functionAppACAName ` -StorageAccountName $storageAccountNameACA ` @@ -175,7 +207,10 @@ Describe 'New-AzFunctionApp ACA Tests' -Tags 'LiveOnly' { -ScaleMinReplica $scaleMinReplica ` -ScaleMaxReplica $scaleMaxReplica + Write-Verbose "Retrieving function app ACA..." -Verbose $functionApp = Get-AzFunctionApp -Name $functionAppACAName -ResourceGroupName $resourceGroupNameACA + + Write-Verbose "Function app ACA retrieved. Validating properties..." -Verbose $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be "Container App" $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion From c63907e19945a65f446b435b2ccacb7b471f8be5 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 7 Oct 2025 18:31:43 -0700 Subject: [PATCH 24/76] Add PlanType FlexConsumption --- .../custom/api/Support/AvailablePlanType.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Functions/Functions.Autorest/custom/api/Support/AvailablePlanType.cs b/src/Functions/Functions.Autorest/custom/api/Support/AvailablePlanType.cs index 89fcb576c4fa..b512c1a08f6d 100644 --- a/src/Functions/Functions.Autorest/custom/api/Support/AvailablePlanType.cs +++ b/src/Functions/Functions.Autorest/custom/api/Support/AvailablePlanType.cs @@ -24,6 +24,10 @@ public partial struct AvailablePlanType : { yield return new global::System.Management.Automation.CompletionResult("Consumption", "Consumption", global::System.Management.Automation.CompletionResultType.ParameterValue, "Consumption"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "FlexConsumption".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("FlexConsumption", "FlexConsumption", global::System.Management.Automation.CompletionResultType.ParameterValue, "FlexConsumption"); + } if (global::System.String.IsNullOrEmpty(wordToComplete) || "Premium".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) { yield return new global::System.Management.Automation.CompletionResult("Premium", "Premium", global::System.Management.Automation.CompletionResultType.ParameterValue, "Premium"); From fd94642166bf481181e3614b4322f4fbd1f542c8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Tue, 7 Oct 2025 18:32:42 -0700 Subject: [PATCH 25/76] Get-AzFunctionAppAvailableLocation: Add support for FlexConsumption --- .../Get-AzFunctionAppAvailableLocation.ps1 | 33 +++++++++++++++---- 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 index 2b5218d3c14d..2408b7b3ecf9 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 @@ -14,14 +14,14 @@ function Get-AzFunctionAppAvailableLocation { [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.AvailablePlanType])] [ValidateNotNullOrEmpty()] [System.String] - # Plan type (Consumption or Premium) + [ValidateSet("Consumption", "FlexConsumption", "Premium")] ${PlanType}, [Parameter(HelpMessage='The OS type for the service plan.')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.WorkerType])] [ValidateNotNullOrEmpty()] [System.String] - # OS type (Linux or Windows) + [ValidateSet("Linux", "Windows")] ${OSType}, [Parameter(HelpMessage=' The credentials, account, tenant, and subscription used for communication with Azure.')] @@ -88,21 +88,22 @@ function Get-AzFunctionAppAvailableLocation { } } - # Set default values for PlanType and OSType + # Set default PlanType to Premium if not specified if (-not $PlanType) { $PlanType = "Premium" Write-Verbose "PlanType not specified. Setting default PlanType to '$PlanType'." -Verbose } - if (-not $OSType) + # Set default OSType to Windows if not specified + if (($PlanType -ne 'FlexConsumption') -and (-not $OSType)) { $OSType = "Windows" Write-Verbose "OSType not specified. Setting default OSType to '$OSType'." -Verbose } # Set Linux flag - if ($OSType -eq "Linux") + if (($PlanType -ne 'FlexConsumption') -and ($OSType -eq "Linux")) { $PSBoundParameters.Add("LinuxWorkersEnabled", $true) | Out-Null } @@ -116,9 +117,29 @@ function Get-AzFunctionAppAvailableLocation { { $PSBoundParameters.Add("Sku", 'Dynamic') | Out-Null } + elseif ($PlanType -eq "FlexConsumption") + { + $PSBoundParameters.Add("Sku", 'FlexConsumption') | Out-Null + } else { - throw "Unknown PlanType '$PlanType'" + $errorMessage = "PlanType '$PlanType' not supported. Valid inputs: Consumption, Premium, or FlexConsumption." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "PlanTypeNotSupported" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # FlexConsumption is only supported on Linux + if (($PlanType -eq 'FlexConsumption') -and ($OSType -eq 'Windows')) + { + $errorMessage = "FlexConsumption plan type is only supported on Linux OS type." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FlexConsumptionIsOnlySupportedOnLinux" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } Az.Functions.internal\Get-AzFunctionAppAvailableLocation @PSBoundParameters From 4019bc8726df3eadcc3f59b5a64604f74507925e Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 12:45:24 -0700 Subject: [PATCH 26/76] Update New-Update-Remove-AzFunctionApp.Tests --- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 251 ++++++++++-------- 1 file changed, 134 insertions(+), 117 deletions(-) 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 e94d5878e864..dce2769d4437 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 @@ -13,122 +13,6 @@ while(-not $mockingPath) { Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' { - It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { - - try - { - Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose - $appName = $env.functionNamePowerShellNew1 - Write-Verbose "App name: $appName" -Verbose - - $planName = $env.planNameWorkerTypeWindows - Write-Verbose "Plan name: $planName" -Verbose - - $resourceGroupName = $env.resourceGroupNameWindowsPremium - Write-Verbose "Resource group name: $resourceGroupName" -Verbose - - $storageAccountName = $env.storageAccountWindows - Write-Verbose "Storage account name: $storageAccountName" -Verbose - - $tags = @{ - "MyTag1" = "MyTag1Value1" - "MyTag2" = "MyTag1Value2" - } - Write-Verbose "Tags: $($tags | Out-String)" -Verbose - - Write-Verbose "Creating function app with SystemAssigned manged identity." -Verbose - - New-AzFunctionApp -Name $appName ` - -ResourceGroupName $resourceGroupName ` - -PlanName $planName ` - -StorageAccount $storageAccountName ` - -OSType Windows ` - -Runtime PowerShell ` - -RuntimeVersion 7.4 ` - -FunctionsVersion 4 ` - -IdentityType SystemAssigned ` - -Tag $tags - - Write-Verbose "Run: Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName" -Verbose - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName - Write-Verbose "FunctionApp retrieved. Validating properties" -Verbose - $functionApp.OSType | Should -Be "Windows" - $functionApp.Runtime | Should -Be "PowerShell" - $functionApp.IdentityType | Should -Be "SystemAssigned" - - foreach ($tagName in $tags.Keys) - { - $functionApp.Tag.AdditionalProperties[$tagName] | Should -Be $tags[$tagName] - } - - Write-Verbose "Create premium function app plan" -Verbose - $location = $env.location - Write-Verbose "Location: $location" -Verbose - $newPlanName = $env.planNameWorkerTypeWindowsNew - Write-Verbose "New planName: $newPlanName" -Verbose - - New-AzFunctionAppPlan -Name $newPlanName ` - -ResourceGroupName $resourceGroupName ` - -WorkerType Windows ` - -MinimumWorkerCount 1 ` - -MaximumWorkerCount 10 ` - -Location $location ` - -Sku EP1 - - Write-Verbose "Run: Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName" -Verbose - $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName - Write-Verbose "Plan retrieved. Validating properties" -Verbose - $plan.WorkerType | Should -Be "Windows" - $plan.SkuTier | Should -Be "ElasticPremium" - $plan.SkuName | Should -Be "EP1" - $plan.Location | Should -Be "Central US" - $plan.Name | Should -Be $newPlanName - - Write-Verbose "Update function app plan hosting plan" -Verbose - Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -PlanName $newPlanName -Force - - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName - Write-Verbose "FunctionApp after plan update. Validate plan name" -Verbose - $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 - - Write-Verbose "Update function -> remove SystemAssigned managed identity" -Verbose - Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force - - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName - Write-Verbose "FunctionApp after identity removal. Validate IdentityType" -Verbose - $functionApp.IdentityType | Should -Be $null - - Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose - $newApplInsights = $env.newApplInsights - $applicationInsightsName = $newApplInsights.Name - Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose - Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ApplicationInsightsName $applicationInsightsName -Force - - $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName - Write-Verbose "FunctionAppSetting after update. Validate ApplicationInsights" -Verbose - $applicationSettings["APPINSIGHTS_INSTRUMENTATIONKEY"] | Should -Be $newApplInsights.InstrumentationKey - } - finally - { - Write-Verbose "FunctionApp for cleanup." -Verbose - $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue - if ($functionApp) { - Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue - } - - $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue - Write-Verbose "Plan for cleanup." -Verbose - if ($plan) - { - Remove-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue - } - } - } - It "Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp" { try @@ -147,7 +31,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Storage account name: $storageAccountName" -Verbose $osType = "Windows" - Write-Verbose "Worker type: $workertype" -Verbose + Write-Verbose "OS type: $osType" -Verbose $functionAppJob = New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` @@ -263,4 +147,137 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } } } + + It "Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp" { + + try + { + Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose + $appName = $env.functionNamePowerShellNew1 + Write-Verbose "App name: $appName" -Verbose + + $planName = $env.planNameWorkerTypeWindowsNew3 + Write-Verbose "Plan name: $planName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $tags = @{ + "MyTag1" = "MyTag1Value1" + "MyTag2" = "MyTag1Value2" + } + Write-Verbose "Tags: $($tags | Out-String)" -Verbose + + $location = $env.location + Write-Verbose "Location: $location" -Verbose + + Write-Verbose "Create premium function app plan '$planName'." -Verbose + New-AzFunctionAppPlan -Name $planName ` + -ResourceGroupName $resourceGroupName ` + -WorkerType Windows ` + -MinimumWorkerCount 1 ` + -MaximumWorkerCount 6 ` + -Location $location ` + -Sku EP1 + + Write-Verbose "Creating function app with SystemAssigned manged identity." -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -OSType Windows ` + -Runtime PowerShell ` + -RuntimeVersion 7.4 ` + -FunctionsVersion 4 ` + -IdentityType SystemAssigned ` + -Tag $tags + + Write-Verbose "Run: Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName" -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp retrieved. Validating properties" -Verbose + $functionApp.OSType | Should -Be "Windows" + $functionApp.Runtime | Should -Be "PowerShell" + $functionApp.IdentityType | Should -Be "SystemAssigned" + + foreach ($tagName in $tags.Keys) + { + $functionApp.Tag.AdditionalProperties[$tagName] | Should -Be $tags[$tagName] + } + + Write-Verbose "Create premium function app plan" -Verbose + $newPlanName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "New planName: $newPlanName" -Verbose + + New-AzFunctionAppPlan -Name $newPlanName ` + -ResourceGroupName $resourceGroupName ` + -WorkerType Windows ` + -MinimumWorkerCount 1 ` + -MaximumWorkerCount 10 ` + -Location $location ` + -Sku EP1 + + Write-Verbose "Run: Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName" -Verbose + $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName + Write-Verbose "Plan retrieved. Validating properties" -Verbose + $plan.WorkerType | Should -Be "Windows" + $plan.SkuTier | Should -Be "ElasticPremium" + $plan.SkuName | Should -Be "EP1" + $plan.Location | Should -Be "Central US" + $plan.Name | Should -Be $newPlanName + + Write-Verbose "Update function app plan hosting plan" -Verbose + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -PlanName $newPlanName -Force + + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp after plan update. Validate plan name" -Verbose + $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 + + Write-Verbose "Update function -> remove SystemAssigned managed identity" -Verbose + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force + + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionApp after identity removal. Validate IdentityType" -Verbose + $functionApp.IdentityType | Should -Be $null + + Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose + $newApplInsights = $env.newApplInsights + $applicationInsightsName = $newApplInsights.Name + Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ApplicationInsightsName $applicationInsightsName -Force + + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName + Write-Verbose "FunctionAppSetting after update. Validate ApplicationInsights" -Verbose + $applicationSettings["APPINSIGHTS_INSTRUMENTATIONKEY"] | Should -Be $newApplInsights.InstrumentationKey + } + finally + { + Write-Verbose "FunctionApp for cleanup." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + if ($functionApp) { + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force + } + + Write-Verbose "Plans for cleanup." -Verbose + $plan = Get-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + if ($plan) + { + Write-Verbose "Removing plan $planName" -Verbose + Remove-AzFunctionAppPlan -Name $planName -ResourceGroupName $resourceGroupName -Force + } + + $plan = Get-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + if ($plan) + { + Write-Verbose "Removing plan $newPlanName" -Verbose + Remove-AzFunctionAppPlan -Name $newPlanName -ResourceGroupName $resourceGroupName -Force + } + } + } } From 6cd9c6af741a8ba8d2c7eec1002dbf6022295547 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 12:47:02 -0700 Subject: [PATCH 27/76] Get-AzFunctionAppAvailableLocation: Add regression tests for FlexConsumption --- ...t-AzFunctionAppAvailableLocation.Tests.ps1 | 132 ++++++++++++++++++ 1 file changed, 132 insertions(+) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 index 2f50c9a54262..0986be8f0c83 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 @@ -193,4 +193,136 @@ Describe 'Get-AzFunctionAppAvailableLocation' { $actualRegions = @(Get-AzFunctionAppAvailableLocation -PlanType Consumption -OSType Windows | ForEach-Object { $_.Name }) ValidateAvailableLocation -ActualRegions $actualRegions -ExpectedRegions $expectedRegions } + + It 'Validate output for -PlanType FlexConsumption' { + + $expectedRegions = @( + 'Canada Central' + 'North Europe' + 'West Europe' + 'Southeast Asia' + 'East Asia' + 'West US' + 'Japan West' + 'Japan East' + 'East US 2' + 'North Central US' + 'South Central US' + 'Brazil South' + 'Australia East' + 'Australia Southeast' + 'Central US' + 'East US' + 'North Central US (Stage)' + 'Central India' + 'South India' + 'Canada East' + 'West Central US' + 'West US 2' + 'UK West' + 'UK South' + 'East US 2 EUAP' + 'Korea Central' + 'France South' + 'France Central' + 'South Africa North' + 'Switzerland North' + 'Germany West Central' + 'Switzerland West' + 'UAE North' + 'Norway East' + 'West US 3' + 'Sweden Central' + 'Poland Central' + 'Italy North' + 'Israel Central' + 'Spain Central' + 'Mexico Central' + 'Taiwan North' + 'Taiwan Northwest' + 'New Zealand North' + 'Indonesia Central' + 'Malaysia West' + ) + + $actualRegions = @(Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption | ForEach-Object { $_.Name }) + ValidateAvailableLocation -ActualRegions $actualRegions -ExpectedRegions $expectedRegions + } + + It 'Validate output for -PlanType FlexConsumption -OSType Linux should not error out' { + + $expectedRegions = @( + 'Canada Central' + 'North Europe' + 'West Europe' + 'Southeast Asia' + 'East Asia' + 'West US' + 'Japan West' + 'Japan East' + 'East US 2' + 'North Central US' + 'South Central US' + 'Brazil South' + 'Australia East' + 'Australia Southeast' + 'Central US' + 'East US' + 'North Central US (Stage)' + 'Central India' + 'South India' + 'Canada East' + 'West Central US' + 'West US 2' + 'UK West' + 'UK South' + 'East US 2 EUAP' + 'Korea Central' + 'France South' + 'France Central' + 'South Africa North' + 'Switzerland North' + 'Germany West Central' + 'Switzerland West' + 'UAE North' + 'Norway East' + 'West US 3' + 'Sweden Central' + 'Poland Central' + 'Italy North' + 'Israel Central' + 'Spain Central' + 'Mexico Central' + 'Taiwan North' + 'Taiwan Northwest' + 'New Zealand North' + 'Indonesia Central' + 'Malaysia West' + ) + + $actualRegions = @(Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -OSType Linux | ForEach-Object { $_.Name }) + ValidateAvailableLocation -ActualRegions $actualRegions -ExpectedRegions $expectedRegions + } + + It 'Validate -PlanType FlexConsumption -OSType Windows fails' { + + $expectedErrorMessage = "FlexConsumption plan type is only supported on Linux OS type." + $expectedErrorId = "FlexConsumptionIsOnlySupportedOnLinux" + + $myError = $null + try + { + Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -OSType Windows -ErrorAction Stop + } + catch + { + Write-Verbose "Catch the expected exception" -Verbose + $myError = $_ + } + + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose + $myError.FullyQualifiedErrorId | Should Be $expectedErrorId + Write-Verbose "Validate Exception.Message" -Verbose + $myError.Exception.Message | Should Match $expectedErrorMessage + } } From c58382fb38994d699360ce847436b3382fe7e841 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 13:55:04 -0700 Subject: [PATCH 28/76] Update code to validate function app name availability --- .../custom/HelperFunctions.ps1 | 20 +++++++++++++------ .../custom/New-AzFunctionApp.ps1 | 2 +- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 86fc18ad890e..969bfe75f6c0 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -729,26 +729,34 @@ function GetFunctionAppPlans Write-Progress -Activity $activityName -Status "Completed" -Completed } -function ValidateFunctionName +function ValidateFunctionAppNameAvailability { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param ( - [Parameter(Mandatory=$true)] - [ValidateNotNullOrEmpty()] [System.String] $Name, - $SubscriptionId, $HttpPipelineAppend, $HttpPipelinePrepend ) - $result = Az.Functions.internal\Test-AzNameAvailability -Type Site -Name $Name @PSBoundParameters + # Check if the function app name is available + if ([string]::IsNullOrEmpty($Name)) + { + $errorMessage = "Function app name cannot be null or empty." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FunctionAppNameIsNullOrEmpty" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $result = Az.Functions.internal\Test-AzNameAvailability -Name $Name -Type Site @PSBoundParameters if (-not $result.NameAvailable) { - $errorMessage = "Function name '$Name' is not available. Please try a different name." + $errorMessage = "Function app name '$Name' is not available. Please try a different name." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "FunctionAppNameIsNotAvailable" ` -ErrorMessage $errorMessage ` diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index f5ee90e104e6..c6cfa7c335e6 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -310,7 +310,7 @@ function New-AzFunctionApp { $runtimeJsonDefinition = $null - ValidateFunctionName -Name $Name @params + ValidateFunctionAppNameAvailability -Name $Name @params if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) { From 51051e5859bbb55a32ab11b87707eb613d6ea595 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 15:36:24 -0700 Subject: [PATCH 29/76] Update utils --- .../Functions.Autorest/test/utils.ps1 | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 7fcb4f1f1f6c..8b4d3fdee097 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -161,8 +161,8 @@ function setupEnv() { StorageAccountName = $storageAccountWindows OSType = "Windows" Runtime = "PowerShell" - RuntimeVersion = '7.2' - Name = "Functions-PowerShell-72-" + (RandomString -len 6) + RuntimeVersion = '7.4' + Name = "Functions-PowerShell-74-" + (RandomString -len 6) FunctionsVersion = 4 }, @{ @@ -171,8 +171,8 @@ function setupEnv() { StorageAccountName = $storageAccountLinux OSType = "Linux" Runtime = "Node" - RuntimeVersion = 18 - Name = "Functions-Node-18-" + (RandomString -len 6) + RuntimeVersion = 22 + Name = "Functions-Node-22-" + (RandomString -len 6) FunctionsVersion = 4 }, @{ @@ -205,10 +205,14 @@ function setupEnv() { } # Create names to be used in the tests - $planNameWorkerTypeWindowsNew = "Func-Windows-Premium-New" + (RandomString -len 6) + $planNameWorkerTypeWindowsNew = "Func-Windows-Premium-New-" + (RandomString -len 6) + $planNameWorkerTypeWindowsNew2 = "Func-Windows-Premium-New2-" + (RandomString -len 6) + $planNameWorkerTypeWindowsNew3 = "Func-Windows-Premium-New3-" + (RandomString -len 6) $functionNamePowerShell = "Functions-PowerShellTest-" + (RandomString -len 10) $functionNamePowerShellNew1 = "Func-PowerShell-NewTest1-" + (RandomString -len 10) $functionNamePowerShellNew2 = "Func-PowerShell-NewTest2-" + (RandomString -len 10) + $functionNamePowerShellNew3 = "Func-PowerShell-NewTest3-" + (RandomString -len 10) + $functionNamePowerShellNew4 = "Func-PowerShell-NewTest4-" + (RandomString -len 10) $functionNameContainer = "Functions-CustomImage-" + (RandomString -len 10) $functionNameTestApp = "Functions-TestAppName-" + (RandomString -len 10) $functionNameDotNet = "Functions-DotNet-" + (RandomString -len 10) @@ -217,13 +221,18 @@ function setupEnv() { $functionNamePython = "Functions-Python-" + (RandomString -len 10) $functionAppPlanName= "Functions-MyPlan-" + (RandomString -len 10) $functionAppTestPlanName= "Functions-MyTestPlan1-" + (RandomString -len 10) + $functionAppTestPlanName2= "Functions-MyTestPlan2-" + (RandomString -len 10) $functionNameDotNetIsolated = "Functions-DotNet-Isolated" + (RandomString -len 10) $functionNameCustomHandler = "Functions-CustomHandler" + (RandomString -len 10) $env.add('planNameWorkerTypeWindowsNew', $planNameWorkerTypeWindowsNew) | Out-Null + $env.add('planNameWorkerTypeWindowsNew2', $planNameWorkerTypeWindowsNew2) | Out-Null + $env.add('planNameWorkerTypeWindowsNew3', $planNameWorkerTypeWindowsNew3) | Out-Null $env.add('functionNamePowerShell', $functionNamePowerShell) | Out-Null $env.add('functionNamePowerShellNew1', $functionNamePowerShellNew1) | Out-Null $env.add('functionNamePowerShellNew2', $functionNamePowerShellNew2) | Out-Null + $env.add('functionNamePowerShellNew3', $functionNamePowerShellNew3) | Out-Null + $env.add('functionNamePowerShellNew4', $functionNamePowerShellNew4) | Out-Null $env.add('functionNameContainer', $functionNameContainer) | Out-Null $env.add('functionNameTestApp', $functionNameTestApp) | Out-Null $env.add('functionNameDotNet', $functionNameDotNet) | Out-Null @@ -232,6 +241,7 @@ function setupEnv() { $env.add('functionNamePython', $functionNamePython) | Out-Null $env.add('functionAppPlanName', $functionAppPlanName) | Out-Null $env.add('functionAppTestPlanName', $functionAppTestPlanName) | Out-Null + $env.add('functionAppTestPlanName2', $functionAppTestPlanName2) | Out-Null $env.add('functionNameDotNetIsolated', $functionNameDotNetIsolated) | Out-Null $env.add('functionNameCustomHandler', $functionNameCustomHandler) | Out-Null From ec6bba320a721f9fa2ceed8d78ff71d409aeff90 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 16:58:51 -0700 Subject: [PATCH 30/76] Update New-Update-Remove-AzFunctionApp.Tests --- .../test/New-Update-Remove-AzFunctionApp.Tests.ps1 | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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 dce2769d4437..942d929a3250 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 @@ -159,6 +159,9 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $planName = $env.planNameWorkerTypeWindowsNew3 Write-Verbose "Plan name: $planName" -Verbose + $newPlanName = $env.planNameWorkerTypeWindowsNew + Write-Verbose "New planName: $newPlanName" -Verbose + $resourceGroupName = $env.resourceGroupNameWindowsPremium Write-Verbose "Resource group name: $resourceGroupName" -Verbose @@ -174,6 +177,10 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $location = $env.location Write-Verbose "Location: $location" -Verbose + $newApplInsights = $env.newApplInsights + $applicationInsightsName = $newApplInsights.Name + Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose + Write-Verbose "Create premium function app plan '$planName'." -Verbose New-AzFunctionAppPlan -Name $planName ` -ResourceGroupName $resourceGroupName ` @@ -208,9 +215,6 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } Write-Verbose "Create premium function app plan" -Verbose - $newPlanName = $env.planNameWorkerTypeWindowsNew - Write-Verbose "New planName: $newPlanName" -Verbose - New-AzFunctionAppPlan -Name $newPlanName ` -ResourceGroupName $resourceGroupName ` -WorkerType Windows ` @@ -247,9 +251,6 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $functionApp.IdentityType | Should -Be $null Write-Verbose "Update function app ApplicationInsights via -ApplicationInsightsName" -Verbose - $newApplInsights = $env.newApplInsights - $applicationInsightsName = $newApplInsights.Name - Write-Verbose "New ApplicationInsights name: $applicationInsightsName" -Verbose Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ApplicationInsightsName $applicationInsightsName -Force $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName From 5d2343172ccc3ee538e144e9797ec3f35d1f2ecb Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 8 Oct 2025 22:31:47 -0700 Subject: [PATCH 31/76] Add new function app name --- .../test/New-Update-Remove-AzFunctionApp.Tests.ps1 | 2 +- src/Functions/Functions.Autorest/test/utils.ps1 | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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 942d929a3250..a86eadf9e87d 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 @@ -153,7 +153,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' try { Write-Verbose "Create function app with a SystemAssigned managed identity" -Verbose - $appName = $env.functionNamePowerShellNew1 + $appName = $env.functionNamePowerShellNew5 Write-Verbose "App name: $appName" -Verbose $planName = $env.planNameWorkerTypeWindowsNew3 diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 8b4d3fdee097..3b62e3745507 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -213,6 +213,7 @@ function setupEnv() { $functionNamePowerShellNew2 = "Func-PowerShell-NewTest2-" + (RandomString -len 10) $functionNamePowerShellNew3 = "Func-PowerShell-NewTest3-" + (RandomString -len 10) $functionNamePowerShellNew4 = "Func-PowerShell-NewTest4-" + (RandomString -len 10) + $functionNamePowerShellNew5 = "Func-PowerShell-NewTest5-" + (RandomString -len 10) $functionNameContainer = "Functions-CustomImage-" + (RandomString -len 10) $functionNameTestApp = "Functions-TestAppName-" + (RandomString -len 10) $functionNameDotNet = "Functions-DotNet-" + (RandomString -len 10) @@ -233,6 +234,7 @@ function setupEnv() { $env.add('functionNamePowerShellNew2', $functionNamePowerShellNew2) | Out-Null $env.add('functionNamePowerShellNew3', $functionNamePowerShellNew3) | Out-Null $env.add('functionNamePowerShellNew4', $functionNamePowerShellNew4) | Out-Null + $env.add('functionNamePowerShellNew5', $functionNamePowerShellNew5) | Out-Null $env.add('functionNameContainer', $functionNameContainer) | Out-Null $env.add('functionNameTestApp', $functionNameTestApp) | Out-Null $env.add('functionNameDotNet', $functionNameDotNet) | Out-Null From 2704e81d374bafb6112158e7bdea380406bc1060 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 9 Oct 2025 09:32:27 -0700 Subject: [PATCH 32/76] Add new test recordings --- .../test/Get-AzFunctionApp.Recording.json | 887 +- ...unctionAppAvailableLocation.Recording.json | 207 +- .../test/Get-AzFunctionAppPlan.Recording.json | 388 +- ...Remove-AzFunctionAppSetting.Recording.json | 1074 +- .../test/New-AzFunctionApp.Recording.json | 9740 +++++++---------- .../test/New-AzFunctionAppPlan.Recording.json | 187 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 4564 ++++---- ...te-Remove-AzFunctionAppPlan.Recording.json | 980 +- .../test/Remove-AzFunctionApp.Recording.json | 777 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3748 +++---- .../Functions.Autorest/test/env.json | 149 +- 11 files changed, 10899 insertions(+), 11802 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index 3713b8b8ab18..e0580cab28c8 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": [ "47" ], - "x-ms-client-request-id": [ "31e9b7ae-54fc-4bff-a19d-740cc6397099" ], + "x-ms-client-request-id": [ "816bb57c-fbc6-4b8e-8e6c-420d964bfe07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,42 +22,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC38DF1FE6FDCB\"" ], + "x-ms-original-request-ids": [ "069a9d90-05c8-4cb1-b3b9-ba95d0441b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b22f9236-2a1e-4439-8103-c9402379c814" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "a8023ca4-84a6-47c5-b115-d06cdbb535c7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005418Z:a8023ca4-84a6-47c5-b115-d06cdbb535c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], + "x-ms-correlation-request-id": [ "ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054036Z:ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17A2F3C47951441D921318C8E0A04A52 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:18Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89988C84DD1C47BEA691703BC4E7F1F3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "29057" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "33879" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:51:37.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:53:42.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:50:39.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:52:40.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.65\",\"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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.3966667\",\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.8366667\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "16fd336e-adc4-4d43-8877-d096663a1248" ], + "x-ms-client-request-id": [ "22675e2b-f9b7-46e8-9ac8-4ef574cbc099" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -69,40 +69,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d00fac49-4123-4fc0-9ef7-e9bfab226fa9" ], + "x-ms-request-id": [ "d5f45a1c-e5ef-46db-9c6e-56f2709c8836" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "9428f669-712d-4f84-8765-0fe111e480d1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005419Z:9428f669-712d-4f84-8765-0fe111e480d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7b54d5e2-e60e-4568-be69-5ecd56914bb8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9ca253bb-05bd-4ff8-a6bb-528a562aa2c7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054037Z:9ca253bb-05bd-4ff8-a6bb-528a562aa2c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C373BD2011840129A22862DAB9A745B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:18Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F48D2052CA9040BFB04F918BFF70B35C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "5f96c172-daa9-432a-9471-bdeb147c888e" ], + "x-ms-client-request-id": [ "67125d36-9027-4a21-838c-384204486cce" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -114,40 +114,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4855280f-d9e5-4b76-86d2-6e7d72f21284" ], + "x-ms-request-id": [ "ce558f0a-9559-4b30-aa68-a59f35baa781" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "9d725393-7b91-4bf8-add5-54a7d564a389" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005419Z:9d725393-7b91-4bf8-add5-54a7d564a389" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df27ba2b-5002-4f7b-a049-498539959655" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "39dbf174-e826-47cb-9ede-d8c33cc7bf0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054037Z:39dbf174-e826-47cb-9ede-d8c33cc7bf0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 598AEFC455F942B49C2F82684AC3E4D8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:19Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD7DC1937AE945FB82B6D358512176AF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "8cf47b51-1b20-4be6-b62a-b045f33715ed" ], + "x-ms-client-request-id": [ "aab83092-4b50-49d0-bdfb-ce8c3dabbef4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -159,40 +160,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f8bbba7-5c67-401b-86ab-457edabe259a" ], + "x-ms-request-id": [ "06dcc852-d622-4bb1-ab1e-44e52b9bf16e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "9366265e-33d4-453d-999c-492ca4aa9a90" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005419Z:9366265e-33d4-453d-999c-492ca4aa9a90" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47ccaeba-72c1-42a3-814f-46425677fbb5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "59dcd897-20a5-41f4-8549-be943e78e051" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:59dcd897-20a5-41f4-8549-be943e78e051" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32382AF0E462485BBC62876DD6DEDADC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:19Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BC04D30B57A4FC59C8BADD03362531A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "8ac385ee-9250-4597-bee8-2d6ca8dc5744" ], + "x-ms-client-request-id": [ "66afe4f2-df7c-4a35-b8a4-3d63fa034be8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -204,40 +205,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9693c30-9078-4420-bc28-f559f04c7359" ], + "x-ms-request-id": [ "b42641de-7a6c-4f41-af5b-34b54fb5a06b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "67916d3c-c42c-4f28-ad4f-4195c6546a42" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005419Z:67916d3c-c42c-4f28-ad4f-4195c6546a42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff92b01b-5325-4ad1-84fe-114db76ae7c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dc432305-f00e-4496-b787-9b0714bbc980" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:dc432305-f00e-4496-b787-9b0714bbc980" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD53569C581B45308F33AE08692BF5F1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:19Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8C3A99B63524F518FD614A474296491 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "f4a1fc9b-0ac2-4b03-af35-acf232544e04" ], + "x-ms-client-request-id": [ "50983add-7512-4e32-93de-04ae2907f8cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -249,40 +251,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "810f7114-dbab-40fd-a9b3-e3be82ba88cb" ], + "x-ms-request-id": [ "5c526227-39e5-4ac3-960c-c3ef4eeecb06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "0f22a997-0ab2-41b3-abc8-b6e5074f862f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005420Z:0f22a997-0ab2-41b3-abc8-b6e5074f862f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f7953c4-a18f-4e83-8218-a5bef39c8ff6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3e4430cb-3e69-44d1-9b8d-62a6387b5079" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:3e4430cb-3e69-44d1-9b8d-62a6387b5079" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB70AB2A7C214B53A4DA864AF9B0993A Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDA9321D3EBA4DEEA72DCFBBC76DE707 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "0dd82a6d-8568-4f96-b0f4-51285401f72e" ], + "x-ms-client-request-id": [ "4dbe0e8b-bd78-409f-a9ce-60e661c1796a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -294,40 +296,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b34d0c5-4d2b-4f6a-9997-d4f4378d702e" ], + "x-ms-request-id": [ "75397a30-953c-4cc5-a0be-4d01d168418c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "735866b3-307b-4e5f-9035-7b9d68daa191" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005420Z:735866b3-307b-4e5f-9035-7b9d68daa191" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0211c81c-4667-4404-a120-e32d47af65bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "66d0862c-4d04-4cfc-8de4-329feb96e8d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:66d0862c-4d04-4cfc-8de4-329feb96e8d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5543D89A0EFE45DAAE3B9B9B6DD1F55C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 612129EB924F4C349B8B6F44408E2743 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "27411195-7b69-4ca1-8a64-bf5be2b03266" ], + "x-ms-client-request-id": [ "d91d0619-378f-4ab7-81da-3c7ed32fe9a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -339,40 +342,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20954425-05c0-4e05-9eec-25f10f27b484" ], + "x-ms-request-id": [ "68df53a1-c586-43f6-a713-91a2a5ce6e35" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "97b99637-20f6-40eb-a918-dbd4db50ea8f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005421Z:97b99637-20f6-40eb-a918-dbd4db50ea8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/826273a6-e5f9-4523-baf1-b43f41e19fab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "3584952f-cb05-4e74-a2ad-4808d700c910" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:3584952f-cb05-4e74-a2ad-4808d700c910" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4340D8A3101447058E79D2A771037D09 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C36ECE4A00514BDD8AD20078BE5730BD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "cf138aec-2afd-4115-86bc-7735ceca4bfa" ], + "x-ms-client-request-id": [ "07b80026-97f1-4c56-a737-119c57bdef3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -384,40 +387,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d59feba0-d62f-455d-8aca-fc697327732e" ], + "x-ms-request-id": [ "51d4ae66-e05e-4475-b739-1606ba3aec35" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "249d83b9-c270-4e1a-93b1-34fa4d0b2849" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005421Z:249d83b9-c270-4e1a-93b1-34fa4d0b2849" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70c9ee4d-4d65-48dc-ae23-d1a7e5d23063" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6fe9c85-39ea-4401-99b2-d08a15a1b292" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:c6fe9c85-39ea-4401-99b2-d08a15a1b292" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7F0330E5983435BA9603A63BD85F815 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:21Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F16DED47559B4AE29B0A662570EB9962 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "de090557-aea0-43b9-a6c1-c62650f60087" ], + "x-ms-client-request-id": [ "d03b19b2-6d96-47fd-9833-fde539dd4f92" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,42 +432,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37509736B80\"" ], + "ETag": [ "\"1DC38DE8EEA09B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25ce3efb-f784-4b45-a584-b614e287e2d0" ], + "x-ms-request-id": [ "57467e0a-a307-40dc-b6d9-ebc5a9ebecad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "85ee807e-31e6-40d4-a5da-4f1ccc936a84" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005421Z:85ee807e-31e6-40d4-a5da-4f1ccc936a84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5f06a9a3-2f23-4456-8b5b-4efed664039c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:5f06a9a3-2f23-4456-8b5b-4efed664039c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD11E008A67F409EB88FFA32414CD1CC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:21Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBF422C496D24172B7C3763C6FFFB574 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7293" ], + "Content-Length": [ "8362" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:50:39.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "a327004f-794b-41d6-b611-b07f87ba9a00" ], + "x-ms-client-request-id": [ "7597cdd1-ba49-4a45-b273-710de15e1100" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -475,40 +479,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24eae78c-d49c-4105-9b8f-1031b7df5c2c" ], + "x-ms-request-id": [ "67035e10-e90c-4316-88a8-1c5ac1a8f1d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "33cd598a-f544-4287-a2da-7d30b16fabb1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005421Z:33cd598a-f544-4287-a2da-7d30b16fabb1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17cd0f52-b536-4e53-97ad-e0908e9b0ad0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ddacbb92-3e56-49a1-9dfb-eb7e3c1f357b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:ddacbb92-3e56-49a1-9dfb-eb7e3c1f357b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 315D01D28525499CBB79A2298E49DCD3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:21Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DD37FFA18F54B008D548AC7FD2DCF9D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "20127ed0-7f4f-43e3-97d8-d342c8ff9b0d" ], + "x-ms-client-request-id": [ "d7da9a68-8918-439d-a6e5-e65b3580f708" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -520,40 +524,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c46be939-9aa0-443e-8105-076ed41835c7" ], + "x-ms-request-id": [ "9209a966-f6e8-41d0-8b59-68de7670abee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "76db7da7-19ff-4fa9-9a7a-a756319eb151" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005422Z:76db7da7-19ff-4fa9-9a7a-a756319eb151" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42151938-b83c-4754-9b86-7f19e7252cb9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2ee99b2f-bda3-4af3-b27c-aca9e1db73b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:2ee99b2f-bda3-4af3-b27c-aca9e1db73b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45232A92DD9240968D34B40E7904C872 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:22Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B138B3EFE0A4CA197BE29961A677036 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "9d6663d5-a4e4-495f-878f-a7ee3243594e" ], + "x-ms-client-request-id": [ "a4103b7e-93bf-427c-8be9-e6591f416591" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -564,42 +569,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3752BC87B80\"" ], + "ETag": [ "\"1DC38DEBCB2434B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b33cbac3-5ac5-47a6-a332-baced76a6259" ], + "x-ms-request-id": [ "521e4c0f-7a52-45e9-a490-2afb9e3f3ce2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "570e8c12-ccbb-4c91-83db-fb5aed96daa5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005422Z:570e8c12-ccbb-4c91-83db-fb5aed96daa5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bca36ee8-15f0-4803-9c0b-78da55b0035a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:bca36ee8-15f0-4803-9c0b-78da55b0035a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D52E538D2ABF41FF9062D13CB5C32591 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:22Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C744ED2A7F549B986D9CD3D8624B0A6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7324" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:51:37.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "69437be0-1b97-4b0f-bf44-ac6330012d8d" ], + "x-ms-client-request-id": [ "52ce3dfe-4004-4510-be4f-699726ffeb3a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -611,40 +616,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6648f57a-bc84-4089-a4c5-af2442b9b351" ], + "x-ms-request-id": [ "cf4e53d0-d62e-43d6-b4bf-d20f7700c8cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "67cba766-0732-427f-9347-87884d80f0d7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005422Z:67cba766-0732-427f-9347-87884d80f0d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec568eff-92da-4e4c-a163-b87a1c274db6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c9e58d08-a56f-4cd3-9324-d4c17d322ce7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:c9e58d08-a56f-4cd3-9324-d4c17d322ce7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E08429968FFB4FB0854562F41D375365 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:22Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7628C0CB863C4F81BC74A06C92A0C9A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "d8ddf969-04c5-4898-811a-df0824d0e6d3" ], + "x-ms-client-request-id": [ "9ed32d68-fcd0-4d39-b6c8-3a22e405277c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -656,40 +661,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27270e30-aa67-4985-873b-97459954f9f0" ], + "x-ms-request-id": [ "06bbe39a-4da4-48c1-bfbd-f7df3efc6bbd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "1d249008-9fa7-46ba-a2ee-48a2e4a3af98" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005423Z:1d249008-9fa7-46ba-a2ee-48a2e4a3af98" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07f5fcdc-311e-4e41-9365-7ba9c41d5606" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f666cc53-fc04-4201-911b-65f24576db2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:f666cc53-fc04-4201-911b-65f24576db2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34776113CAE04EA49ED5B9A37DFE326B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:22Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F599166ACB14D7C9565BAB8568E9018 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "9c3908ad-a2ea-4dc5-8f9b-9be467dc9f7d" ], + "x-ms-client-request-id": [ "98b2a012-04f3-473c-b4aa-f32000b550e5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -700,42 +706,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375519D3C60\"" ], + "ETag": [ "\"1DC38DEF01B7A20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b118de89-d449-4851-80b4-0431c74fc185" ], + "x-ms-request-id": [ "2f3bdf6c-61bb-48db-90e7-15da16507c39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "8adb5867-9639-45a2-a210-bca2d003c98a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005423Z:8adb5867-9639-45a2-a210-bca2d003c98a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "df66eddd-092c-444c-95e5-4a767461a2fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:df66eddd-092c-444c-95e5-4a767461a2fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D278558DE5A4CE4B83D173D55F4E9E2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:23Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4447AB7B7CF84B0FAD4A29E5A183043D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8575" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:52:40.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "23add41e-aca9-499a-bde5-32eebf273861" ], + "x-ms-client-request-id": [ "0148f43c-29cb-440a-99e9-de77ecb6d3b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -747,40 +753,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e265de9b-1a9f-451b-a885-ce616fed7e4f" ], + "x-ms-request-id": [ "db59a3ca-045b-40bd-beab-756e3d2b4e70" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "6e205bd9-9e7e-41df-a040-8ec09741b288" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005423Z:6e205bd9-9e7e-41df-a040-8ec09741b288" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d569f541-82d1-4e00-82f2-e8ea9b580a5e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a970a1c6-6d70-47e5-9d38-7684bdadbecd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:a970a1c6-6d70-47e5-9d38-7684bdadbecd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3670F9D8BFCD4B6C895E5DD75925BFD2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:23Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BD2E2B93B634321A2C1C2C74A1CBB1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "58fb232f-5d46-4bb7-baef-7279a82bb9d8" ], + "x-ms-client-request-id": [ "91a0da04-ec86-49e9-8407-108511b4e7f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -792,40 +798,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e58fafe6-ed6c-4d9c-a808-39d42be4eac2" ], + "x-ms-request-id": [ "05aacb40-93d3-419a-b905-75de7592c25b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7d2e40f9-b293-4e66-9b87-baf188556a65" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005423Z:7d2e40f9-b293-4e66-9b87-baf188556a65" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e52de99d-c0c6-42e7-879a-4d1c877b6d6a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8ff544ad-6244-4c61-8e6f-c323bb3dc67d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:8ff544ad-6244-4c61-8e6f-c323bb3dc67d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6744FB5496004118BDFA33369A86E69C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:23Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 404A5339B84045E4A0D7E8A6CDE55CFD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "f5ba5496-7190-48c2-bf37-be0198dab881" ], + "x-ms-client-request-id": [ "2061f91d-2483-4311-bdb6-59ac9d5b3be5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -836,42 +843,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC38DF1FE6FDCB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6928fab3-8952-4c95-a47b-4bb3ed2681c5" ], + "x-ms-request-id": [ "de6e9ec0-a515-4791-8ac0-c0aa9a23c9d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "316acbab-cd6d-476b-acfc-2904b02ede66" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005424Z:316acbab-cd6d-476b-acfc-2904b02ede66" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "31cccf82-065a-4ace-85f0-bd9759f74cba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:31cccf82-065a-4ace-85f0-bd9759f74cba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A71F29554B584FB5AAB3152684DE0553 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:23Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C43F737DE1D940D18177EBAE25BC0999 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:53:42.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "6ebcdbef-69fc-42d9-b0ec-801afab7b1f7" ], + "x-ms-client-request-id": [ "fb8c4fce-e0bd-4bdc-8469-30dcad623103" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -883,40 +890,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b47e0502-300f-475b-97ad-1c8d5b1cb80d" ], + "x-ms-request-id": [ "feabc9c0-e045-4a1e-8487-ebe0ceaae4bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "af61f75f-06f1-4c75-9432-6b5105b9878f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005424Z:af61f75f-06f1-4c75-9432-6b5105b9878f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44491ecd-d971-463e-a7a3-3aba08e48e41" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "bee1691e-f081-4cbc-8be2-99fded0462b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:bee1691e-f081-4cbc-8be2-99fded0462b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EF00BD4D87B450D81D9048062DCAD89 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:24Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF8492CD25BD4FD69497794E75CC5086 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "2efeeb54-160e-4c12-9fd4-f9550d282ace" ], + "x-ms-client-request-id": [ "7176ef47-b6b6-44fe-893d-db25a5304ccb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -928,40 +935,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a12ffe4-016b-4f27-95cd-9025c2404019" ], + "x-ms-request-id": [ "97e0688a-1b6a-4a2e-8910-430bd8247532" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "0b0a81fb-5de3-406e-ba4d-16792e381952" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005424Z:0b0a81fb-5de3-406e-ba4d-16792e381952" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a392d0f-8cb6-497d-b9b1-68c49c6cb57e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2da1e424-994b-4abf-8bb8-ddb8916b9c94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:2da1e424-994b-4abf-8bb8-ddb8916b9c94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04E306BAD8A44B6C8B6135B6E94F1D91 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:24Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F295A4B334704AED971C42E6FD7B1C3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-x7qylg/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-n8vg16/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-x7qylg/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-n8vg16/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "a76ca270-21f7-4bf7-b9e3-ceedee28885f" ], + "x-ms-client-request-id": [ "19ab043f-a434-4672-9eea-871e16ff6560" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -972,41 +980,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "e491c044-86d4-47f6-849f-3de0d6ded982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aaf31f3d-995b-4237-915a-f7f995e4d717" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "4a4d8f30-c361-419a-98cc-81708bd37997" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005425Z:4a4d8f30-c361-419a-98cc-81708bd37997" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "b42506d2-1d81-4c91-a09b-5c08b54943a9" ], + "x-ms-correlation-request-id": [ "b42506d2-1d81-4c91-a09b-5c08b54943a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:b42506d2-1d81-4c91-a09b-5c08b54943a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74712A6569CE48C7A9007A12B699E7B1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:24Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5141776FE126445DBDD52758A0B3AEE8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7319" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "8292" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:50:39.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "87e03b69-4185-4b57-9274-5707c4a67aac" ], + "x-ms-client-request-id": [ "2192ecf9-0017-4788-a13d-c4127d20795e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1018,40 +1026,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7862552-38ca-41dd-8684-fd87c7068a5f" ], + "x-ms-request-id": [ "56219f85-6341-4110-88a2-ee7245f871dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "9240bca5-a8b2-46ee-bbb8-c9f8cf27a8cc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005425Z:9240bca5-a8b2-46ee-bbb8-c9f8cf27a8cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc37fec5-2038-42da-a49c-a8daaa15d159" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "81470266-36e4-4680-ad95-265a961f04c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:81470266-36e4-4680-ad95-265a961f04c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8356F0313BA481D881F4009F1517FEE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:25Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E215E41EF5047768C548BBD52FE4163 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "cb55883e-ffcf-4717-a25e-d99d9ae41347" ], + "x-ms-client-request-id": [ "2eb96ea4-6847-4a6a-846b-141a1b734d90" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1063,24 +1071,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23fc8232-8e6e-4f32-9c4e-2bb4765845a7" ], + "x-ms-request-id": [ "117811b6-3143-4630-9096-b54f0f49586a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "2e04279d-ce5a-47cd-b34c-70dac099e269" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005425Z:2e04279d-ce5a-47cd-b34c-70dac099e269" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c0d4fd6-756c-4b5f-9c03-f2ce2075372a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "9e5ae3f5-6ccd-4734-8c7d-7c17cc891607" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:9e5ae3f5-6ccd-4734-8c7d-7c17cc891607" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5172F6DC0064953B4742EFC4DE6F623 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:25Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF9F57616EF741AEA6E1C5C169791A87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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 } }, @@ -1092,11 +1101,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "7ec59d47-30b1-4d1a-975a-ce9bbbb7df2c" ], + "x-ms-client-request-id": [ "d9164626-343a-4991-ad88-eb0fc7f0e8f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1107,42 +1116,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375761EBC4B\"" ], + "ETag": [ "\"1DC38DF1FE6FDCB\"" ], + "x-ms-original-request-ids": [ "f09e05ef-f5e6-4eac-b89f-52b54678dbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffa1c17a-05e3-4c45-a038-15ed4ed282df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c51bdfef-4847-4742-b8d2-9a2ae9baa928" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005425Z:c51bdfef-4847-4742-b8d2-9a2ae9baa928" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1807a828-2f79-4a52-9751-75b7d94d7742" ], + "x-ms-correlation-request-id": [ "1807a828-2f79-4a52-9751-75b7d94d7742" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:1807a828-2f79-4a52-9751-75b7d94d7742" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 29D4B00B25184794A07F15E94CF4D1D4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:25Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08E0CC71B961459AAF95FDC6C4E86FA0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "29057" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "33879" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:51:37.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:50:39.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:53:42.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:52:40.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.65\",\"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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.3966667\",\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.8366667\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "50e03818-d6fc-4a1e-874b-cf4a2401c3a8" ], + "x-ms-client-request-id": [ "f9623b4d-8200-4751-89ef-141dd5e5f591" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1154,40 +1163,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35455033-78fe-4697-bdee-36c2e5cc0721" ], + "x-ms-request-id": [ "75d0e237-ffff-408e-ba14-464ac8703aef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "c95f245f-d578-492c-a266-bf4a3095beff" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005426Z:c95f245f-d578-492c-a266-bf4a3095beff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5ba27109-5ea3-4319-a7ae-18628973b8bf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c7154fb9-ed37-435b-a87c-b9b8d1113605" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054044Z:c7154fb9-ed37-435b-a87c-b9b8d1113605" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCBBB3468C8440E5866B199A2C5B0C80 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:25Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AC4493DFE094CF6AE280258B758E9D6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "9749818b-3130-464c-beb2-294ab3d3e4cc" ], + "x-ms-client-request-id": [ "c9afbd5f-7863-48a9-9b8c-efe6bbeaeb21" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1199,40 +1208,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a7d3115-253a-490e-9d14-df6955e59ec0" ], + "x-ms-request-id": [ "d8dea337-d060-4b09-a787-0cbbc879a965" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "46f861b6-d15d-4db7-85f1-98250fa77495" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005426Z:46f861b6-d15d-4db7-85f1-98250fa77495" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4dfcf60-ae8d-4ed7-b957-3fb16a8ee9fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c3b84a1e-2397-4fbb-b237-a314412293fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054044Z:c3b84a1e-2397-4fbb-b237-a314412293fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 593CECA507C041C69C4C2AFB6E11BED7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:26Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99D08647939E4CDC80F47B5FBA97B35F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "d5cd7902-9879-4f4b-b474-1075c78f2c1f" ], + "x-ms-client-request-id": [ "6be1a250-6c2a-4c64-a96a-8eef863bf03c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1244,40 +1254,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb02a0c5-a330-4776-a732-e667b561b303" ], + "x-ms-request-id": [ "756caac5-d34b-49c3-bac7-a08ea5b5db42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "cba19e0f-5698-4da0-93e5-334c88767ba6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005426Z:cba19e0f-5698-4da0-93e5-334c88767ba6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5161373-68a0-4cd6-8f92-882e073e8c69" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b3becb49-35ab-42d9-b943-562a9ec29dc5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054044Z:b3becb49-35ab-42d9-b943-562a9ec29dc5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A267301B8024638BA7A164B050397CF Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:26Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D08BBC734A14E519C8395370A933204 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/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-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "7e9fdf21-5083-4511-a613-5028cb43d7a2" ], + "x-ms-client-request-id": [ "8733f680-0eca-4c04-83e1-cecec348effe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1289,40 +1299,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8d7ef92-7180-403e-b739-b7c263728f21" ], + "x-ms-request-id": [ "9274f4e0-b1cc-44db-a92a-147954eefaf7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "15d66e43-c314-4729-bd0f-237b9cfcfc0f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005426Z:15d66e43-c314-4729-bd0f-237b9cfcfc0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b104a5e2-d5f5-4b9b-bc8c-6d4c609a96f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a65f24b8-4305-4ca5-8677-7403e9e9e3ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054045Z:a65f24b8-4305-4ca5-8677-7403e9e9e3ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAB1B2C6ECBD4AC69D487702B2360B6A Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:26Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A170B5064374EBE95C4BDDEB0057141 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "29aba264-07d3-4a30-81c0-a782b2737d18" ], + "x-ms-client-request-id": [ "52302b4c-a621-4217-98cc-2c7f42aa0c13" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1334,40 +1345,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13074487-024a-4e93-8435-a72e0a53533f" ], + "x-ms-request-id": [ "084221a1-3385-4f1b-9854-b50ac1bb6cb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "4cc027cd-e991-4b31-b7c7-b678a49a3447" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005427Z:4cc027cd-e991-4b31-b7c7-b678a49a3447" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26c0db82-34d6-44f4-a811-84faff119e5a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "41f23fe2-074d-4f94-95cd-f49da077853d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:41f23fe2-074d-4f94-95cd-f49da077853d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30BA4C05A4FC4059A80ADFC908C0C46B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:26Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4DD656D932E41AAB95B6B46940A2CB2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "c5ab4316-b483-4457-b99c-5a3f83f15dfc" ], + "x-ms-client-request-id": [ "3a207552-e6e8-49e1-a17b-21244cacd64e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1379,40 +1390,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15fd9f83-145c-4fce-85a0-5593ebc8b469" ], + "x-ms-request-id": [ "e6563fb8-3efd-4b23-b324-1474cd4dab62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "1b3ed92a-53fb-494a-b39a-048d5b912603" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005427Z:1b3ed92a-53fb-494a-b39a-048d5b912603" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9e62d41-8786-4f69-a66b-9ac083f89cd0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8708411f-b98a-4aa7-9aeb-7bcca6856823" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:8708411f-b98a-4aa7-9aeb-7bcca6856823" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD85769E1EF5457FAB142E884925FFC3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:27Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1AF3C3CD38DE46628D107CCF40F65E42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/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-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "643ccec6-77fe-4142-9a1e-035cd8943714" ], + "x-ms-client-request-id": [ "1b5f5029-88d0-4d1f-a1d2-e5beaa324c79" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1424,40 +1436,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c41920e6-fa32-48d9-a266-f0849df78aa1" ], + "x-ms-request-id": [ "9f3e0690-d993-41f5-8005-cca6bd719ed0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "b6cd841e-03c4-4de2-9ae3-2a758e69111f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005427Z:b6cd841e-03c4-4de2-9ae3-2a758e69111f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b041094-3252-41f5-8739-8755f3758e30" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "95028ab8-1e98-4860-aecc-7f3bc0a2f2ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:95028ab8-1e98-4860-aecc-7f3bc0a2f2ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC69F5006750486CB49D41EF3440A0E9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:27Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CDEA671CD894ABCA765C299C862F052 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/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-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "821a9446-f6d4-4045-b88d-69902364f2c9" ], + "x-ms-client-request-id": [ "b38be576-667c-4fe0-9a5f-063376a29a3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1469,24 +1481,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ba0d30c-bd3f-4706-afee-ab00dbfca919" ], + "x-ms-request-id": [ "ff0f22eb-2902-4f40-981e-1a4c5ea1d41a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "994982e4-4437-441a-8b9a-6f992ac3aeeb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005427Z:994982e4-4437-441a-8b9a-6f992ac3aeeb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8bac8ac5-d7a6-4f10-bcb0-41155d56b21a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cb8ad773-b272-4c25-83ae-6abf8f2754e3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:cb8ad773-b272-4c25-83ae-6abf8f2754e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A927B4D8841F43FF8D74A74EEDE8161F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:27Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14EA8974C9FE4029BC539154E4CE3616 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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/Get-AzFunctionAppAvailableLocation.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json index d8d6812bdd78..a2834ac1bf50 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": [ "80" ], - "x-ms-client-request-id": [ "95b0ea90-f7b8-41a1-9956-2a5c5af5dd12" ], + "x-ms-client-request-id": [ "daad31f4-3149-4f6c-a1de-79ee9f8d2271" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,24 +23,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78115241-98d4-4437-ad37-df0165a688a7" ], + "x-ms-request-id": [ "222eccdd-7682-4622-bdbb-7fb4456e3d52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b3e3de03-1aa4-427c-b236-7ed9e75b2976" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005429Z:b3e3de03-1aa4-427c-b236-7ed9e75b2976" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6afc3dfb-3bee-429f-9acd-5d57b2aa4a76" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c378fb5e-956c-4a1c-8319-64a819e4efbd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054048Z:c378fb5e-956c-4a1c-8319-64a819e4efbd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E0426734EB54A6B90CB9D0BFC6D6514 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:28Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FCA1B38C3F64F36B66123E9CAB41428 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -52,11 +53,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "d31be497-74eb-41cb-864d-5f4a91a14f32" ], + "x-ms-client-request-id": [ "6292ad11-3c5d-45f5-82ae-6744bd2f2421" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -68,24 +69,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5ba34f5-8219-4f28-9e33-b0f1bafb2c10" ], + "x-ms-request-id": [ "edcc303e-6268-49bd-bb95-bdb6d69ccc8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "2ad0c34e-3fc4-4873-a7ac-efc922c4d422" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005430Z:2ad0c34e-3fc4-4873-a7ac-efc922c4d422" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/04eef87c-217e-479e-912d-2e74ec91fc3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "44f92b10-27a2-4487-994d-6430fbdae34f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:44f92b10-27a2-4487-994d-6430fbdae34f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD16DB09CD0F48DBA17A627FAD683B4B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:29Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3EA5FC95DBED49E2A3A2BB49055D0F39 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "36785" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -97,11 +99,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "980bb5ab-ac63-464f-8427-5de9bf9f93ac" ], + "x-ms-client-request-id": [ "f4544435-5a39-46e0-831e-afdf01d039a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -113,24 +115,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b53c2b7e-1bb3-49c8-8530-94832a304ef5" ], + "x-ms-request-id": [ "0c4496f0-f707-4357-aacd-156b328f5440" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "4b9b5474-1f83-47d1-a653-77dd8961d0b5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005431Z:4b9b5474-1f83-47d1-a653-77dd8961d0b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/441151cb-a9a8-4a7b-8e23-95ebaf7f61ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "52dc7266-cc4b-4f3e-b71a-8299a8ecbe43" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:52dc7266-cc4b-4f3e-b71a-8299a8ecbe43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7658A6048D3943CFB7E315AC71141BDA Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:30Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECFE724E18C244778A97FEC4D5C1092F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -142,11 +145,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "43bab830-11a9-4b47-92cb-53b503a318ae" ], + "x-ms-client-request-id": [ "e19c9e28-d4c0-4f16-a61f-238df3e1aca0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,24 +161,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5455ed8c-8d56-4480-a42a-613689c56142" ], + "x-ms-request-id": [ "3896e862-7486-461e-8ab1-12fdd8ac8a62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "dc2eac0b-059a-4531-bd23-570843f50edd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005433Z:dc2eac0b-059a-4531-bd23-570843f50edd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a907bce6-07bf-41c7-96d5-3a1935b61256" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "45b6960a-49c2-4683-a6a8-f1b12ec75215" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:45b6960a-49c2-4683-a6a8-f1b12ec75215" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FA2494AB18647EDA4E962A5913A8AB0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:32Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCA8D65DB3604335B308FEEC4B213D0A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -187,11 +191,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "e845b0f0-ea31-45e9-807d-c9bb0af7cf4f" ], + "x-ms-client-request-id": [ "2082ba5d-4dba-49d1-be77-fb71d5908d6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,24 +207,117 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac002342-a25a-42f1-9d59-4153c4395179" ], + "x-ms-request-id": [ "0a1ed31d-5e03-4895-a3de-0691dc38eb66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c3da2f36-9512-463c-bf3e-3e3bbc942ecf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005433Z:c3da2f36-9512-463c-bf3e-3e3bbc942ecf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/80b6a60b-633d-4bf2-b27b-d0a9d3e2d525" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4ea29102-06d2-467a-a720-c604d2b932bb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:4ea29102-06d2-467a-a720-c604d2b932bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F674AA4D01743ABBBEC1A6B4BD807B6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:33Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98D0A7BAD0224BE68A84CB1181D41D62 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppAvailableLocation+[NoContext]+Validate output for -PlanType FlexConsumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "4212cb1b-4d06-40a8-97f5-424e465ebb02" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "f50387c1-33f9-49c0-8760-ef140a7d6d92" ], + "X-AspNet-Version": [ "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/54d6000f-7006-4746-8adb-65eb9ce7bbcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f4bcd473-3fde-4bc2-b67f-bf4e41e0a326" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054049Z:f4bcd473-3fde-4bc2-b67f-bf4e41e0a326" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EF8C5B8CB59E41C8A9D36D75AA48E33F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "27127" ], + "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\",\"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\",\"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\",\"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\",\"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\",\"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}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppAvailableLocation+[NoContext]+Validate output for -PlanType FlexConsumption -OSType Linux should not error out+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "ec7c8398-79ea-4afb-85b9-25e741d6c043" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "3a8b33db-bf14-4f1a-ab46-9acfae06b128" ], + "X-AspNet-Version": [ "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/bf8f686a-14df-48cf-beb9-a703ea47b0ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4a8d21da-acdc-4ec2-8241-447acda7a63e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054049Z:4a8d21da-acdc-4ec2-8241-447acda7a63e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2DF7A56F1BE6485299E3937237E88181 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "27127" ], + "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\",\"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\",\"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\",\"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\",\"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\",\"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}", "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 f5e9bb061fd8..42f37554d02f 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": [ "85" ], - "x-ms-client-request-id": [ "15364063-7e5d-4746-b7a7-82ba7a60366f" ], + "x-ms-unique-id": [ "87" ], + "x-ms-client-request-id": [ "3504f24e-4c24-47bb-b1b0-2e6d1d0ac75e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,131 +22,125 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ca2fba7e-1f1f-46e3-b450-dc3f9aa40b87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "159051b3-2009-42d0-b5f7-cacc0a22be98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "50da124e-4cfb-4dbb-80af-e189efd183ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005434Z:50da124e-4cfb-4dbb-80af-e189efd183ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "93407b01-be14-44b3-b506-ed397d24c96d" ], + "x-ms-correlation-request-id": [ "93407b01-be14-44b3-b506-ed397d24c96d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054050Z:93407b01-be14-44b3-b506-ed397d24c96d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BED5885C7524A778B890CF021F8870F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:34Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7B50B09C7B54EB6895C8415589140DA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "5fca7ebc-53f9-408c-875b-c416af9a62b2" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "d354836c-33a5-46a2-8774-fd135528a28d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], + "x-ms-correlation-request-id": [ "d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054050Z:d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "946ba626-7e59-4054-8757-6460c814c10d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "1f6c5696-14dd-4b4d-9210-0f7351271a98" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005434Z:1f6c5696-14dd-4b4d-9210-0f7351271a98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4921469CD8547CD95371F9A562BE4A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:34Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7493CDB96A348EA9AF7955CC2D4AE87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "60319ef0-e393-4570-986b-a3767d2b2da8" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "d260efad-7a49-4ed5-9f98-ad3b76ce82a8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], + "x-ms-correlation-request-id": [ "b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054050Z:b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fda151a-c476-41c2-a5d8-eaccd97d025b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "cea62f2a-8de6-42fd-8da3-beac8555a152" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005435Z:cea62f2a-8de6-42fd-8da3-beac8555a152" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA1128D1434542059DEB433F46D1E384 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:34Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6B02B19882E485CA03754D899601971 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "7cb015fb-d0ac-4741-a478-ac6becb39f05" ], + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "2fef5f4f-1c84-40ec-be43-c3ef2c5f8992" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,40 +152,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef9cb952-5f5a-490f-ac70-dcfc6b9be76a" ], + "x-ms-request-id": [ "da9ddc0e-86ea-4a4b-9c67-2f2c8caa5e8f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "f6fbb15b-bc98-48f9-ab54-b1732d781e59" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005435Z:f6fbb15b-bc98-48f9-ab54-b1732d781e59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d9b86c6c-a9e0-4348-b96a-264a20c2501a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054050Z:d9b86c6c-a9e0-4348-b96a-264a20c2501a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 037DBFEAD6E84C02A77D7457FABE9254 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:35Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC247B390C8647BB93025FB59F81E395 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "81b4ea03-ddf2-45b5-b55d-3cd236c83c02" ], + "x-ms-unique-id": [ "91" ], + "x-ms-client-request-id": [ "8218663a-fb5c-4534-a4fa-210ce926accb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,40 +197,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "014b2a82-8e63-4af9-9a32-f8b6222bb98e" ], + "x-ms-request-id": [ "66978652-438f-44f6-b908-39e72a16f464" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7fcc7aa1-52fe-453c-8a66-72d780019a6b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005438Z:7fcc7aa1-52fe-453c-8a66-72d780019a6b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6f27e5dd-1648-4461-b3cb-e178fa6b493f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:6f27e5dd-1648-4461-b3cb-e178fa6b493f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 648C57A85E4747D086A6555DBD69AA34 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:35Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33A1EE5493CD45EBB2131F422DB888EE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-vesazn\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-fj26xp\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "6fd4ab76-258f-41e3-8a40-66595faf2015" ], + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "d4c3d814-ab71-4435-890e-1b3477fe0e48" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -248,40 +242,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "357831ea-8b40-4d19-8efc-84ad9d483999" ], + "x-ms-request-id": [ "64a42bd0-7d24-497c-9961-229a1d5c6343" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "df84eb71-916f-4885-bbb5-88351e7a63d3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005438Z:df84eb71-916f-4885-bbb5-88351e7a63d3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2166c1e1-6e00-402f-af19-07111e493ff1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:2166c1e1-6e00-402f-af19-07111e493ff1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30F5F9F6AAD14657B5778061E6EB3A4C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B0A4C1CF78147E587AD55126B92C095 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-wdx4cl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-g2ifkz\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "91" ], - "x-ms-client-request-id": [ "7fdea950-7c50-41f4-a58b-11fa4c8526b8" ], + "x-ms-unique-id": [ "93" ], + "x-ms-client-request-id": [ "a8d9cfca-91ab-4c7a-8709-3ff2d887480e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -293,40 +287,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d99b732d-61c5-449e-8e9e-282efa05cdc3" ], + "x-ms-request-id": [ "4171ec21-f538-4d23-8e84-5383b209ee6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "4730a357-bdd8-466f-9cc3-3e84a7c3b4ff" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005438Z:4730a357-bdd8-466f-9cc3-3e84a7c3b4ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a5260311-7338-42c3-8007-f0ad3cc30cb0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:a5260311-7338-42c3-8007-f0ad3cc30cb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FE2F89F579C4010A1CCBEEAD240B0E5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 570ADFD51D0E4489936E5884E8871098 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/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-n8vg16/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-x7qylg/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-n8vg16/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "bf6dd9fb-00a2-47da-9bea-0de28868f164" ], + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "d423772f-aa77-4a31-b5c7-cc17db1800c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -337,25 +331,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b2e5558b-52e5-4198-8be3-9cad30f2aebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c470b8e-c195-46b2-9af2-f0916d53aa3f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0ce8e2cf-5316-4b97-a51d-0b0d4f51490f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005438Z:0ce8e2cf-5316-4b97-a51d-0b0d4f51490f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], + "x-ms-correlation-request-id": [ "ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46A5CA7031754A85AA8FE910BBC86A51 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EAA003F0C7E4405B51428F0A6D3A2E1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1679" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "1740" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -366,12 +360,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "93" ], - "x-ms-client-request-id": [ "b7d515a6-b0b8-464c-a1b6-313229eb6789" ], + "x-ms-unique-id": [ "95" ], + "x-ms-client-request-id": [ "d25b157b-9b19-45a9-b9fb-14d10d643863" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -382,131 +376,125 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "4e6a5d07-63dc-445e-b69b-717118602208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2a4eb20-ef06-4459-9b78-eccccd682932" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "669d505e-f3b5-4da8-8b84-f81c1e2f1e7b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005438Z:669d505e-f3b5-4da8-8b84-f81c1e2f1e7b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "649272a1-c82c-46d3-a69c-f28faa58ccd7" ], + "x-ms-correlation-request-id": [ "649272a1-c82c-46d3-a69c-f28faa58ccd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:649272a1-c82c-46d3-a69c-f28faa58ccd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B65DCACF96649F2BE6B04DDE28588B4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 841896540E7D4692AD28BFC587FBEC3B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "a49b71f0-88d0-4799-9eb1-10f1f48e2400" ], + "x-ms-unique-id": [ "96" ], + "x-ms-client-request-id": [ "0665c9b2-dea9-4e0a-bbe8-e6d4799e8b21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], + "x-ms-correlation-request-id": [ "ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054052Z:ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7344ce33-69e9-4141-8aa0-da0bab20a07e" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "aebc1969-89ca-4ac2-b192-487c56f6177c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005439Z:aebc1969-89ca-4ac2-b192-487c56f6177c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F709D933849247D399D673C459E63280 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E42C816820974730A07BC8949F9E24F5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "d39eb5c9-cd0c-4372-93de-c240f98a8b2d" ], + "x-ms-unique-id": [ "97" ], + "x-ms-client-request-id": [ "8cb46dda-dc64-4965-be45-d99f068f7408" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], + "x-ms-correlation-request-id": [ "c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb5e4437-fd4c-4776-8df6-fb93976902cb" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "16902879-5a30-4751-9527-3dc70382a077" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005439Z:16902879-5a30-4751-9527-3dc70382a077" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F08F734989894F8BBA59890B382A63B5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 714B06E9D4FC4A52B9D99C3D41F3ABBD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "98b17c64-c5d7-443d-9166-2b7d3c879210" ], + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "70b5270c-a1ab-4b37-b914-c4e68648f8e9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -518,40 +506,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "628b516f-0c4b-4306-b09a-6ee90aa275ff" ], + "x-ms-request-id": [ "3c0dc039-953e-44db-a3f5-f34eb8fd0625" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "ff4b0b67-b932-47e4-a563-924a590782de" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005439Z:ff4b0b67-b932-47e4-a563-924a590782de" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "720cc62f-7514-4d0b-955b-6da2e9a25c0a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:720cc62f-7514-4d0b-955b-6da2e9a25c0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C8D291D93994B2891D57A516B1BD68F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8D7423C315D4F51B5D00A642B843AD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "97" ], - "x-ms-client-request-id": [ "abd91f27-a257-46e1-88b5-8e0b42adc4b3" ], + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "4e2f56b9-d186-40e9-aaac-e7bc1d4c0076" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -563,24 +551,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f789b3b0-5aa4-431d-936a-02817aa6e94f" ], + "x-ms-request-id": [ "b1bf08fd-5780-4a26-99ba-cb9f152625af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "c43f50ba-975f-40df-8ad1-3a4c8679ca7e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005439Z:c43f50ba-975f-40df-8ad1-3a4c8679ca7e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c54e9d3b-3fb5-416a-a6a9-ecfc18779deb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:c54e9d3b-3fb5-416a-a6a9-ecfc18779deb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 614B85538BEB499F96E1DC4AA650C04F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85CC3FCE14C94ACF8781A887E5722FD1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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 af4f8b3f7215..69fd974db451 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,13 +3,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -18,17 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "505c9ffe-4d06-429b-9551-a10b724b7d4a" ], + "x-ms-request-id": [ "fddb3f84-9c78-4c6d-8d14-6642583e672b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "84e0fcff-8579-4514-bdb4-105a3d2f29c7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005441Z:84e0fcff-8579-4514-bdb4-105a3d2f29c7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f01d38f9-9ecc-487b-8afb-b7bcd6ea3720" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7f905007-0ce7-4f24-a601-dbef85e2f16c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054053Z:7f905007-0ce7-4f24-a601-dbef85e2f16c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 830962607222451CA87500982EA095E3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:40Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD298C37376C4E37B8DFDA7339709D21 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -46,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "0ca57b7b-441d-42fc-b0b3-51cbace6bf19" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "b36ce7ba-4563-4e5a-b935-2e7c915ff911" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,131 +63,125 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ad543c19-148f-4517-a326-a54ede483b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23ffea32-4ada-4d79-9cb8-d5405ddf054c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "dbd08890-6e8b-403a-b1e3-4270e9c61780" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005441Z:dbd08890-6e8b-403a-b1e3-4270e9c61780" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], + "x-ms-correlation-request-id": [ "97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054053Z:97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 094AEFC4334F45B3B7985756A7C90322 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58EB0811FE5A47B0B1095DD13B782D3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "a85952a2-bb66-4211-ad56-52a497f020d5" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "cc3ff616-dba5-47f4-beed-11c3def553f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], + "x-ms-correlation-request-id": [ "ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054054Z:ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6accf023-a26d-4bf7-bba3-ab5fbe90cf73" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "762ee0d8-18ec-4300-9666-255e4a40ff3e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005441Z:762ee0d8-18ec-4300-9666-255e4a40ff3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A02F11780354AE7B4DD35B753634DE7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2EAAD203ED004255A1C3FDF5EF1B83EC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "d367bf7f-f7a8-43a2-bdf5-85fb7da67ec7" ], + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "13453c58-5792-40db-aadc-87a2902642e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "d5910f8a-6351-49c2-b82f-4d3060674dfa" ], + "x-ms-correlation-request-id": [ "d5910f8a-6351-49c2-b82f-4d3060674dfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:d5910f8a-6351-49c2-b82f-4d3060674dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c1cd72b-d195-4349-b2b4-76ff3a9e9bb3" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "2ef9afdb-35b4-41d2-be24-0eacd211b787" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005441Z:2ef9afdb-35b4-41d2-be24-0eacd211b787" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D662158530C84A638DF67F465BC306F9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 814B0A4763CF4CA5BF6501471EE68E2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "b43edae5-b752-4fac-a0f1-3584c045b270" ], + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "68b67021-b48c-4148-b795-5cdaba5d2cd1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +193,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d77ddd51-a459-4182-a838-712b5bb13b37" ], + "x-ms-request-id": [ "eb5adaaa-bc9f-45b7-ad82-c01909152bea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "26611e54-78f5-4508-84d4-580878894035" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005442Z:26611e54-78f5-4508-84d4-580878894035" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc7279d2-2a0b-46a7-9537-7cfb8d4f1b11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:fc7279d2-2a0b-46a7-9537-7cfb8d4f1b11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10407F45D5A5440BA873E7BDA2570D13 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8444FE3BCF884A90926A814D32FF95C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "62606d43-e336-4251-9e95-3d6760b4351a" ], + "x-ms-unique-id": [ "105" ], + "x-ms-client-request-id": [ "81778792-1c38-4384-b099-a29d326738c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,24 +238,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7eb451f-b8ca-4ae4-b514-bc734c13edf9" ], + "x-ms-request-id": [ "01124af8-6b78-41c4-ad51-0777b8b5b5f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "4a5bd142-9977-4893-a5b6-21925e5d5100" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005442Z:4a5bd142-9977-4893-a5b6-21925e5d5100" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f2d9c4ef-8e23-4957-a8ff-aea6f3d43fa7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:f2d9c4ef-8e23-4957-a8ff-aea6f3d43fa7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 144440012B9F4192B63E070B9521A323 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7690FE0B524430885E3FB620541AB07 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -271,12 +266,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "104" ], - "x-ms-client-request-id": [ "f6a2c7d9-0657-41a7-84ac-2c48bd73e01e" ], + "x-ms-unique-id": [ "106" ], + "x-ms-client-request-id": [ "f3df5c61-07ed-4fc1-950c-23172956bed1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +282,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "20020687-d427-441e-8ce0-a0de699fb4a5" ], + "x-ms-original-request-ids": [ "8336e9d2-09f0-4155-8db0-9ee33f7edc3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "8df10de2-161b-46e6-b5e6-f710680bf6b4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005442Z:8df10de2-161b-46e6-b5e6-f710680bf6b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "d40a40cb-beae-4c56-ae45-68ed29815633" ], + "x-ms-correlation-request-id": [ "d40a40cb-beae-4c56-ae45-68ed29815633" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:d40a40cb-beae-4c56-ae45-68ed29815633" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE06287E66EB428ABE2CD938366B0BB6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 565EEC9357C04751A6EDE2645B6935D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "6ccab458-ca24-411f-84ea-1133bce291ce" ], + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "19b836b7-5586-4d39-be3c-8b1a0c8298b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,30 +326,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f21953f3-f3df-4c7f-87bb-4044aa69e5c9" ], + "x-ms-request-id": [ "d6b63add-5814-4d31-a0d5-bb82f06cd128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "4b1e97e0-4863-4dc7-813b-492ee8cf250a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005442Z:4b1e97e0-4863-4dc7-813b-492ee8cf250a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2bcaedbd-4c74-4b9a-aecb-07cb70554e36" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6ccc104c-abb8-4776-a692-14f53c9557c6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054054Z:6ccc104c-abb8-4776-a692-14f53c9557c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F3D4325BD1348E9858C26A82D641E19 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B33576BD2D124409A1E1A40678535360 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-w41plh08gr?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-w41plh08gr?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": { @@ -373,35 +369,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "66517a1b-eeff-42b6-ba74-1fa937e973a3" ], - "x-ms-correlation-request-id": [ "66517a1b-eeff-42b6-ba74-1fa937e973a3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005443Z:66517a1b-eeff-42b6-ba74-1fa937e973a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/985cea72-f54c-470f-ab27-e1f9d7fe7178" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], + "x-ms-correlation-request-id": [ "71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054129Z:71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9242B94CF15A46129E5AE2315F47E898 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:54:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 914F0AE1C2414B3C8F75950B00BB03DD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:41:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800b84a-0000-0300-0000-6674cf530000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009bd6-0000-0300-0000-68e74b090000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"name\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"AppId\": \"3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"ConnectionString\": \"InstrumentationKey=46eeb7c3-c3c7-4b38-98e1-f66f69cec21f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\r\n \"Name\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"CreationDate\": \"2025-10-09T05:40:55.3683639+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-w41plh08gr_3b8cb7a9-1a39-46a8-859c-586e03f7ac71_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-w41plh08gr-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-w41plh08gr\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1786" ] + "Content-Length": [ "1790" ] } }, "Response": { @@ -409,43 +406,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3759C3F4635\"" ], + "ETag": [ "\"1DC38DF5E62D4B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a9cc86e-b59e-4096-a001-5c980b80ba42" ], + "x-ms-request-id": [ "a83e5c1c-b1d2-4f6f-b73e-489a87798c07" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "a34bec45-2e88-4840-8c25-4c38eaa102b1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005509Z:a34bec45-2e88-4840-8c25-4c38eaa102b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7961e151-ff77-42f3-b630-285cff4cbcfe" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "84ab9067-8bca-4a9e-951f-4ec79958fd28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054212Z:84ab9067-8bca-4a9e-951f-4ec79958fd28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AB1C047FD9F4FD1B9A0B9763ADF259C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:54:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E52325B610D41B3A346D925EFAA9B74 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:41:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:54:45.5133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:41:31.603\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "108" ], - "x-ms-client-request-id": [ "d58d51f5-16b9-4f8f-aecc-7c4c560682af" ], + "x-ms-unique-id": [ "110" ], + "x-ms-client-request-id": [ "85196d1e-b231-40ca-9483-4d2def01169f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -455,42 +452,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC38DF75BA2C30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6dcb6f9c-85cf-44ae-bf23-fd469139c1af" ], + "x-ms-request-id": [ "eb643dd5-f953-4a18-80a5-9ee988c7c9b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "fd0aaef2-9d63-410d-9c9d-3e5ba2b03a43" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005539Z:fd0aaef2-9d63-410d-9c9d-3e5ba2b03a43" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ebf458a3-ad65-455a-a58d-cbd65de5acc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054242Z:ebf458a3-ad65-455a-a58d-cbd65de5acc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 087AD47FD8BC4037908E856780DF9D55 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C60970C3C996416F9C23885732A901C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:55:09.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:11.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "ba660fb7-6d70-4566-9ac4-bfd5b21f6824" ], + "x-ms-unique-id": [ "111" ], + "x-ms-client-request-id": [ "5b992d38-023d-4de0-a35b-f8bc624bbd1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +498,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC38DF75BA2C30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a25d30f-03b4-4cff-a02b-8078781ef7e4" ], + "x-ms-request-id": [ "3043dd84-0e69-4f9f-b85a-05b1695a6b4a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "eb04f917-0362-4296-9731-5edd0a549fea" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005543Z:eb04f917-0362-4296-9731-5edd0a549fea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1d7706f2-cc66-4ebd-b8b5-d940c6ed45f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:1d7706f2-cc66-4ebd-b8b5-d940c6ed45f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF0F95E976704FAB9FBC14BD03E431F2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA02454374184C798BF0F03F81E26590 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:55:09.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:11.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "5c221ff2-7473-489c-996f-1107b4c15785" ], + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "46779916-527a-4276-9359-e91c83b2b40f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,40 +545,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb6afc8c-47e8-46f3-91da-34be25bfec7a" ], + "x-ms-request-id": [ "4834ab00-d419-41e8-b30e-c4ee145f1149" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "c39df8ce-820a-4e1e-bdc5-6e5db52c36c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005543Z:c39df8ce-820a-4e1e-bdc5-6e5db52c36c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7a44e91-28b8-40d1-9c6a-e0d1c0f14cbc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9ed36a43-4e56-4f06-be3b-062ab1896303" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:9ed36a43-4e56-4f06-be3b-062ab1896303" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC5E84FA2B094186B60253A3B65B0A67 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB8968DC1E9F4F16A9E9C8174A8F7B2E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "111" ], - "x-ms-client-request-id": [ "5f157469-3302-4d77-950d-f27e227394c0" ], + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "da26ce03-00ce-485b-897e-aac6c3fbf49e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,40 +590,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98984a2b-3240-4be7-a6b1-360558d3ab5d" ], + "x-ms-request-id": [ "4debcec3-aef1-4d97-889d-1a8614567dcc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b20c048f-82ac-4e63-9fa2-053e481d0ed2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005543Z:b20c048f-82ac-4e63-9fa2-053e481d0ed2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e9f5a89-8600-4dc7-ac9c-16d0bcaa0f55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b2fed371-0476-4266-97dd-13595122b80a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:b2fed371-0476-4266-97dd-13595122b80a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 669B4F1E89F048BB860E205BB70A72D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E49D76CB0BBF499487BC92333ED56C2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "22ccdce2-9acb-4ab2-ae6c-ab14dbc24b18" ], + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "728b0bb1-6e2c-41dc-aee7-0e0e23abc09c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -638,40 +636,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4890b9de-bfc3-4ae8-b28f-605da6d5b836" ], + "x-ms-request-id": [ "9496d3b2-427e-479e-969c-544e538bf1f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "e85fd08a-c212-4e27-aa7c-f0552107c1f8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005543Z:e85fd08a-c212-4e27-aa7c-f0552107c1f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f07cd63a-4b78-4456-913c-b52a24e6f540" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "38037883-2cd6-446a-8821-1c7839907078" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:38037883-2cd6-446a-8821-1c7839907078" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DD2B05C4DF948FBBF72D87A8D5A2377 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D249677B94BB4AB1B8BE66F945E60AC9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "3a6ed363-b846-4a43-b2dc-1a20db6c7daa" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "ba853a7e-5ae4-4142-a77d-6a1bcacf9383" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -683,40 +681,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0eff81e6-923d-45e5-ae36-b102b133a025" ], + "x-ms-request-id": [ "e5fb956a-f629-4054-8e6d-ba22ef2b8846" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "755ff0fc-0e36-441c-89a5-863cfb3fb3f7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005544Z:755ff0fc-0e36-441c-89a5-863cfb3fb3f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8e19446-8346-4901-9a6d-9858f7a3b0f9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1210d052-b68e-4926-918c-adb9fa66e88e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054244Z:1210d052-b68e-4926-918c-adb9fa66e88e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9460013F7E7E4AE791342FD3F236EBAC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 002BB229206B4DEC91FD65CB6FBCBE44 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "114" ], - "x-ms-client-request-id": [ "53e1d21c-f64e-4abf-ac8a-9248c74c8c3d" ], + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "0586fdac-094b-4687-991a-53f7ee864714" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -728,38 +726,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0d23fb0-f250-4003-af3d-ebf4822bfd2f" ], + "x-ms-request-id": [ "42d82e2e-3dce-4e50-9af2-dca4032cd1f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "cd14de83-d701-476c-ac88-8983edbcceb2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005544Z:cd14de83-d701-476c-ac88-8983edbcceb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2fd6cf2-6347-4931-82b2-28ab2693a2e7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "292717b9-3f36-456b-a739-d8bfbcf23c92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054244Z:292717b9-3f36-456b-a739-d8bfbcf23c92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF118B4A1F6A45CC92D053C226C765A3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:44Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CA4DFB47B29434FBE1989A35DA07CD3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTSHARE\": \"functions-powershell-0sp8e17wjo\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"MyAppSetting1\": \"456789\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1042" ] + "Content-Length": [ "1046" ] } }, "Response": { @@ -767,42 +765,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375AA0616CB\"" ], + "ETag": [ "\"1DC38DF75BA2C30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79642376-bddc-48e9-bcc4-605242d3cba2" ], + "x-ms-request-id": [ "a5f0f5eb-9789-423a-89d1-27adfa3b3871" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "0f6b3d21-39cd-4f3f-b462-258b78f063ae" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005545Z:0f6b3d21-39cd-4f3f-b462-258b78f063ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be56930c-f004-4b15-9119-d8d839a6a247" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ea7e1ca1-a5b4-4171-8c79-6f92491dc492" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054245Z:ea7e1ca1-a5b4-4171-8c79-6f92491dc492" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CD84940B6B148B5B4D37EEAD8C33111 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:44Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9ABF0B77B084541A418090F84867F09 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1250" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "116" ], - "x-ms-client-request-id": [ "817741a2-c190-4139-a092-ff2294e0c969" ], + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "488a8836-8ebe-4873-b0bd-90c265fda2d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -814,40 +813,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80040cec-93eb-4de7-bd65-d60ce0eeee1e" ], + "x-ms-request-id": [ "e0f0270e-9a03-4d35-a080-e73e38b36eb0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "31aee893-27cf-4c91-87f2-23efbf56ebe4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005545Z:31aee893-27cf-4c91-87f2-23efbf56ebe4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13b905b7-f1af-4410-8347-6d7bf61b8f17" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ca804af5-6c7e-46e5-a7bd-18e466f6ffae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054246Z:ca804af5-6c7e-46e5-a7bd-18e466f6ffae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F73A40A2E905448F9CF85AAAC1DA06E7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98C58F90E9AE4179BDAB1115136B839D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1250" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "4b8e23d6-c7f7-4a66-b552-49724a886b47" ], + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "02da2179-c3e4-4f62-ada4-2f4f0b1f9d35" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -858,42 +857,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375BF87F800\"" ], + "ETag": [ "\"1DC38DF89E522F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8a36996-cb30-4ef4-a232-dca699a2c5e0" ], + "x-ms-request-id": [ "7a234868-b261-4c62-ab37-ef35997638ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "9ed7ea98-722a-4da3-95c1-a4b98912f40b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005546Z:9ed7ea98-722a-4da3-95c1-a4b98912f40b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7434c2cf-6bee-4d8e-bec7-77901e6cb12f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054246Z:7434c2cf-6bee-4d8e-bec7-77901e6cb12f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 423F50CEE4744C8F9228F5BC62A1EAC6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4830874BADE4C9A95382F8EE12C7466 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:55:45.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:45.663\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "eb9d382c-e4e2-4d0a-bc1f-956b52dd4dd2" ], + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "e1739e3e-712e-425f-945b-dd6ce2c9e94b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -905,40 +904,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4abf0b63-50dd-42fd-9458-d862266b998e" ], + "x-ms-request-id": [ "3e01c2f1-f5c0-4fec-9f43-aa4b6290b20d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "2151e7a9-7e22-4d10-bd33-156750be53c9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005546Z:2151e7a9-7e22-4d10-bd33-156750be53c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dced2f3c-786c-42e1-afcb-ea2df81e43f0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7f89506f-44a8-48b2-8f39-c551ea1a9a2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:7f89506f-44a8-48b2-8f39-c551ea1a9a2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F94F4BBC3EC48BEA09AF499FD80B35A Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:46Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E69E9C79A2549418F5170ED464640B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1250" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "119" ], - "x-ms-client-request-id": [ "5db451ae-31a7-4062-8815-8a1ea18f693a" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "f02e8b8e-2ac9-4f1c-81e9-988a7deaeab2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -950,40 +949,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a101dc2-7793-4913-aa9d-c58d61589821" ], + "x-ms-request-id": [ "6dac4ebe-0870-4576-9687-fac3266c840e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "b3cab309-f708-40c3-abbe-1451f5425834" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005546Z:b3cab309-f708-40c3-abbe-1451f5425834" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3846204-df59-4189-a386-bc2ad3476d74" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1c8710a7-66eb-482e-aabe-b2b0fc20e2de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:1c8710a7-66eb-482e-aabe-b2b0fc20e2de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F42E6A9619D84B52A8E7CB0A34E7EF0D Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:46Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38CF95302B9E474AA477422F783594FF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "120" ], - "x-ms-client-request-id": [ "ab312ae4-17d8-4c35-8b2a-1714e73f2534" ], + "x-ms-unique-id": [ "122" ], + "x-ms-client-request-id": [ "d14bda89-ef0c-408b-9217-16d804959da2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -995,38 +995,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bef47e66-5280-4d72-90ab-af77ddc1f8bc" ], + "x-ms-request-id": [ "2ea337ea-6fa6-4c03-b0ca-29fdbc55f117" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "29239847-4206-47b2-ada2-b269b99c7fd3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005547Z:29239847-4206-47b2-ada2-b269b99c7fd3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0b6f83d-89a0-40c5-a685-4d4069576d0d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3f55f296-cc90-433d-8a2c-76cc9ebc6b9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:3f55f296-cc90-433d-8a2c-76cc9ebc6b9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75A72C4C557B4EB58516C9A7DB8B68BE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:46Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB97A458E0F84417BE78B775D1F4850E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1242" ], + "Content-Length": [ "1250" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"functions-powershell-0sp8e17wjo\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting1\": \"456789\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1119" ] + "Content-Length": [ "1123" ] } }, "Response": { @@ -1034,42 +1034,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375BF87F800\"" ], + "ETag": [ "\"1DC38DF89E522F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72a9ea97-4c0b-4fa5-9836-49af9ca81799" ], + "x-ms-request-id": [ "4daff80f-72ab-4ad4-8c84-361a0a5ac0a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "d3fd3ca2-7fc3-4b75-8ca6-1b356e7903c8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005548Z:d3fd3ca2-7fc3-4b75-8ca6-1b356e7903c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04a902d5-b3fc-4457-8fb5-4f07afca3eb9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "461da4d3-4ca8-4ae9-b703-644dcbdd7fc2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054248Z:461da4d3-4ca8-4ae9-b703-644dcbdd7fc2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F74D8C59165E4ACF89B3B935E874E5A5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:47Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F91F35C3406470C97FBE2E1E494CE44 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1313" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "122" ], - "x-ms-client-request-id": [ "bbfc7910-98a0-49e5-bb9f-25ebb9af0192" ], + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "c008e0fd-6e1b-4fb9-b8d4-ef52fa97b05a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1081,40 +1082,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d8fde91-f870-477a-a4da-8a386286b4a5" ], + "x-ms-request-id": [ "7a4dc341-6b0b-4975-9523-36d90feded5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "61abc01a-c790-48a9-9649-7dd232885fbc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005548Z:61abc01a-c790-48a9-9649-7dd232885fbc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b9f2188-786a-419d-859a-77dde2348c3b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "46966df8-6faa-4f8c-9e58-2707ade7efd9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054249Z:46966df8-6faa-4f8c-9e58-2707ade7efd9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D1A884AB27C4F83B7224CAB4A132F34 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:48Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F159C3EFA84492C97403D6E72E9C6CA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1313" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "123" ], - "x-ms-client-request-id": [ "e42c27db-5eee-4f5b-8745-c85ae0632aa0" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "f1bfe152-86f3-4bf4-a085-d6151687c501" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1126,38 +1127,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5035544-08cc-42c9-b232-419bd718f77f" ], + "x-ms-request-id": [ "b6b51b77-dd2e-4274-ac39-1c93d5177979" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "5e1976b5-a1e2-43a0-9a98-75ac69f42287" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005548Z:5e1976b5-a1e2-43a0-9a98-75ac69f42287" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00e2bd8e-ceaf-4f65-9b34-31a31a529ec3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ffbfac08-5e8a-4f73-9769-53a29febf60f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054249Z:ffbfac08-5e8a-4f73-9769-53a29febf60f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B44AE4A957B4EF8B655CFD38CA05587 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:48Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 332E0F0F3B5844A3843ED12A7E2B1C7D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1305" ], + "Content-Length": [ "1313" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"functions-powershell-0sp8e17wjo\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1046" ] + "Content-Length": [ "1050" ] } }, "Response": { @@ -1165,42 +1166,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C11D580B\"" ], + "ETag": [ "\"1DC38DF8B959210\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d9d125e-ef61-4e8e-aa52-033fa76d2082" ], + "x-ms-request-id": [ "bbdad858-6ee9-4bc4-a12a-0cd58c45ad67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "1a789ce7-587e-4247-834a-91992ed80be3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005549Z:1a789ce7-587e-4247-834a-91992ed80be3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64bdb5eb-fbaf-4411-9b5e-98436d7b2d70" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "b4e69e7a-ec41-44db-95f7-247a060948eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:b4e69e7a-ec41-44db-95f7-247a060948eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73E9F79B8EE24174865A8C90A4F00791 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:48Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66DF693EC364414B96D7DC18F7DE2F3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "125" ], - "x-ms-client-request-id": [ "08787cea-fe3a-4cb3-ae3d-ca635db2f90d" ], + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "116d1178-48c6-4e59-a1f7-a1fda7aa99e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1212,40 +1214,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d95f25e1-a87a-4b61-9470-b71086fffc03" ], + "x-ms-request-id": [ "91d8974e-9a45-4ba4-900f-ba4b0f2f98ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "95f9e304-ce15-4cc4-9f99-fbee8d432f61" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005550Z:95f9e304-ce15-4cc4-9f99-fbee8d432f61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dca6e54-3bc5-4a2c-a577-c3cccfb9c5b7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b7b20099-d6c8-4666-8b47-788c1cfe88fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:b7b20099-d6c8-4666-8b47-788c1cfe88fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7872F5AC87084C028C0DFB8BCE519CE2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:50Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FDC6AF2A0F44678A7B5DF4409F2B73F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "126" ], - "x-ms-client-request-id": [ "889e774f-ea4f-447c-9d5f-9889e66e67cc" ], + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "9a7ef938-e5a7-41a7-9247-b66db4dc2f11" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1256,42 +1258,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C22C7115\"" ], + "ETag": [ "\"1DC38DF8CDB0A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20b4946b-4c60-4224-bfb4-8ca91aeabeb9" ], + "x-ms-request-id": [ "e9b41f09-55fc-4be4-a801-6868ba6fff9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "fa3758fa-349e-4ea0-9a29-065cdda05522" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005550Z:fa3758fa-349e-4ea0-9a29-065cdda05522" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "78a921e7-f3e9-4d66-a109-9a488562548a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:78a921e7-f3e9-4d66-a109-9a488562548a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9D3C549B1814B9998D059566B096F53 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:50Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2104A0E4D6794485939E7969986E79D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:55:49.7133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:50.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "127" ], - "x-ms-client-request-id": [ "7a321675-0516-4861-a464-068ef1011362" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "3c745e62-be0f-4f3b-876f-959f8d8cce05" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1303,40 +1305,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa572198-6952-43f5-a823-e6d473073650" ], + "x-ms-request-id": [ "a5db7b46-d8eb-4753-ae5e-6eb3e0e37594" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "da702ee0-ed07-4ff6-aae4-f0f578ada27b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005550Z:da702ee0-ed07-4ff6-aae4-f0f578ada27b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa4384e8-a358-4e4d-9db9-6c31cfafa99c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "091cf946-9089-4b80-b657-4b035d7fe283" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:091cf946-9089-4b80-b657-4b035d7fe283" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 083D8309D7F149F2A7CFCDB16C131BF1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:50Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F871139A851C484D86B8F9432857967E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "128" ], - "x-ms-client-request-id": [ "8951707e-b653-4608-b565-343a5a4e598d" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "647736e9-5822-4f83-857b-d6d4e74c55ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1348,40 +1350,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30684368-6509-4e73-a402-79e9c6e49994" ], + "x-ms-request-id": [ "9b0b5e1c-3b73-4002-8054-4a05df40eb4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "f7ed33d8-eb7d-4c04-b4fb-daf00efa4b80" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005551Z:f7ed33d8-eb7d-4c04-b4fb-daf00efa4b80" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa988c33-a7c9-4065-9e8a-81457accfebd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f57bea22-8651-4760-b3b0-0bfe41207112" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054252Z:f57bea22-8651-4760-b3b0-0bfe41207112" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BFD5183E9374115A79E20C52FDF51D2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:50Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E778675D64E44EAAD1219F8369D1D41 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "1056bd02-454e-4c85-aed6-d2d75d72db2e" ], + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "452d1cff-c8fb-497c-9d3d-979549725860" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1393,38 +1396,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a5209bc-f05f-43d7-9dbb-065553507645" ], + "x-ms-request-id": [ "fe75096c-cfbc-494e-b20a-30fad1b086a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "652917a2-7ce9-436c-a403-f610334d1f08" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005551Z:652917a2-7ce9-436c-a403-f610334d1f08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/514864a2-d53c-479e-909b-236bb38e7a03" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "7fa8d61c-e442-4657-a7fe-75f7b0b46196" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054252Z:7fa8d61c-e442-4657-a7fe-75f7b0b46196" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA3C567D33CB488192598EDE66560285 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:51Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B80A072648B40D7A4F7ABDD93C00D35 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1246" ], + "Content-Length": [ "1254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01+33": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"functions-powershell-0sp8e17wjo\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "969" ] + "Content-Length": [ "973" ] } }, "Response": { @@ -1432,42 +1435,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C22C7115\"" ], + "ETag": [ "\"1DC38DF8CDB0A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eec54697-3602-43ff-ae61-e6f6ca7c2d12" ], + "x-ms-request-id": [ "4df5cb4f-5804-4012-b064-9201c11ead09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "383d2d10-a067-40d7-a98e-a76e94de5726" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005552Z:383d2d10-a067-40d7-a98e-a76e94de5726" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d260e3e-1b5b-441e-8950-6658d2580bd8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "500dbb9a-da0d-4c59-b6e3-fe5e01b29752" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:500dbb9a-da0d-4c59-b6e3-fe5e01b29752" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B3ED34C4831485DBB2C6802E00FA9CC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:51Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61CCE02E189E4075918854D0CE36BFEA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01+34": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "131" ], - "x-ms-client-request-id": [ "7e42c015-fbce-40a0-8c70-7bb31dfed14e" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "68740571-1010-409d-8de4-af1d5eb746f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1479,40 +1483,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1165d12e-e94d-470e-baca-8afcef3922ab" ], + "x-ms-request-id": [ "915c851e-12ea-4ebb-a0ce-2b4c7206a8b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "fc0b9a9f-3f73-486e-93ef-05a7249c50d7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005552Z:fc0b9a9f-3f73-486e-93ef-05a7249c50d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d55a5770-93c9-40c0-be0f-f71b67f44d38" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9e99a065-d9b9-494e-9382-6bfda0c90e28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:9e99a065-d9b9-494e-9382-6bfda0c90e28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01DDAF07F39345ACA801AB1741F0A1B2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:52Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F62D064A57224F5F8B2B8668A92FAD52 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "132" ], - "x-ms-client-request-id": [ "a2f4b18d-ed83-4d6e-8cd6-77cf5969a946" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "e6e66f87-860f-4589-95ad-d4ce46258d5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,42 +1527,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C3A24835\"" ], + "ETag": [ "\"1DC38DF8E802EE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17dc0d83-c8df-4e5e-9232-25698adf60d7" ], + "x-ms-request-id": [ "952f0c1b-0dd1-4ecf-a1c1-fbcd676cdbaa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "8728ad9f-b575-4d3c-b231-2b311bc724d8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005553Z:8728ad9f-b575-4d3c-b231-2b311bc724d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "84df3eaa-4409-479f-b50e-d4972ea57d1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:84df3eaa-4409-479f-b50e-d4972ea57d1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BC3AE91AE474635AF11F3C0A6350781 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:52Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97C13C4DD1CE4BD2AB6BDEB39937A781 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:55:52.1633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:53.39\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01+36": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "133" ], - "x-ms-client-request-id": [ "8b144f4f-e021-49ab-9a2b-97021d1e51da" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "f97ac66b-1eef-430a-823a-d2fa10dd3a39" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1570,40 +1574,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39eb4102-049a-45b9-92c2-16daa0771747" ], + "x-ms-request-id": [ "6083c3b0-de41-4f28-aaf7-e7172f105137" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "4ec2e75b-a92b-4c3e-a443-ba2fd610e9c3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005553Z:4ec2e75b-a92b-4c3e-a443-ba2fd610e9c3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f754b642-9a13-46b1-9a49-f155641486e0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "37d68b4c-f44d-440e-b171-70b3f709cb5f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054255Z:37d68b4c-f44d-440e-b171-70b3f709cb5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4E791F4AD9A475B8D55648F288B4B50 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:53Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD4DB084020944EBAE8F5A06BF08C45B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "134" ], - "x-ms-client-request-id": [ "553d290d-1048-46c8-8d1d-e81f7a520369" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "3ff362d6-56ec-4502-8077-2a2737e76146" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1615,40 +1619,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3786b469-a7b5-499c-9b33-c706de0d278c" ], + "x-ms-request-id": [ "7be3bdfd-7c15-4b6f-9393-810bbe4a4ac6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "b14ae20b-ca9a-4d7d-842c-f878faede133" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005553Z:b14ae20b-ca9a-4d7d-842c-f878faede133" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/120eb90d-754f-42b7-8eda-4b90d7192670" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0bc677b8-685a-4b13-871d-37fee9620bb6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054255Z:0bc677b8-685a-4b13-871d-37fee9620bb6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D09B3BEA76FB454B8D9C8822A6E94777 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:53Z" ], - "Date": [ "Fri, 21 Jun 2024 00:55:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF2A1079906843AA846E8603CB33D409 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:42:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+38": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+38": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "135" ], - "x-ms-client-request-id": [ "15d67ed8-2fec-4c35-b410-86eedb2b9a2d" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "f8a0b44d-e7a9-452d-9d08-23f183b824bc" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1659,19 +1664,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375C3A24835\"" ], + "ETag": [ "\"1DC38DF8E802EE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcaded38-a0be-4e37-b996-01e0c06d25d0" ], + "x-ms-request-id": [ "576ec55a-9df4-49ef-b2a6-ef221badcbb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "b46346e8-9593-49bb-b4c4-de0a839784da" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005604Z:b46346e8-9593-49bb-b4c4-de0a839784da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76f93245-c1c5-4514-a3a7-9b2d47346208" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "1c031497-4e2b-479e-bd6c-d75aaacd6c4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054306Z:1c031497-4e2b-479e-bd6c-d75aaacd6c4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5A0FD498E054DE9B85E788C61246286 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:55:53Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 620FF68E15454A30B0763F3FB043E5FD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 8fcaee414e48..18f3161e93ce 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-5y3dpkzqcb\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,17 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd45b4ee-3345-468c-bad0-611449126466" ], + "x-ms-request-id": [ "ac022d18-e607-4148-ae7b-85d60bb2e3c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "37059149-d57c-433d-a251-cbb0ef3fd4e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005605Z:37059149-d57c-433d-a251-cbb0ef3fd4e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02a45488-a60c-47e5-92aa-3accc0f31fc4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a8898d3d-fd96-4499-a656-70bac01f58e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054307Z:a8898d3d-fd96-4499-a656-70bac01f58e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD7E2CEE78024864B9485C435EA30AE7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:04Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95C39497371241ADB817A30B84FFC00D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -46,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "1d6966f2-aa20-4c30-a4ad-faa26c8e6839" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "4eeb59f3-06db-45c9-9f9b-baed85f64faa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -62,131 +63,125 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d16cef35-9083-4388-b18b-132009be80e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa0b8a59-4129-4442-944c-e62054fae53e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "7c9683ca-13e5-482a-83f7-bed4151aca8e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005605Z:7c9683ca-13e5-482a-83f7-bed4151aca8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c0453330-c290-4c62-9c8f-908982783687" ], + "x-ms-correlation-request-id": [ "c0453330-c290-4c62-9c8f-908982783687" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054307Z:c0453330-c290-4c62-9c8f-908982783687" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B17C5E53DBD4F16B78246D5361EACE9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:05Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 121A46CA88B9475981A7AA2A58961C73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "138" ], - "x-ms-client-request-id": [ "34b73354-b3c3-41f9-901b-8c6d46d011df" ], + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "9e3f5f21-5642-4a6b-b945-3acf08830634" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "ab567aec-608e-48ab-af2e-7fb482dfe677" ], + "x-ms-correlation-request-id": [ "ab567aec-608e-48ab-af2e-7fb482dfe677" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054307Z:ab567aec-608e-48ab-af2e-7fb482dfe677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adc7b04a-1eb9-4ce9-98c7-ba2c9472e8ea" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7682ed8f-44e4-4d8f-8c59-43b6660daa88" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:7682ed8f-44e4-4d8f-8c59-43b6660daa88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0B0E10D47A9401F9A05F5D2DA44624D Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:05Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4621CCE068B4A70A3E7415E8D16C48B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "178a4349-2dc8-467c-8936-64fc230d4cb7" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "dd647fba-639e-4825-a7a6-346ea7e1659a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "d4f20837-e1e9-41fa-b144-2548e89521a7" ], + "x-ms-correlation-request-id": [ "d4f20837-e1e9-41fa-b144-2548e89521a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:d4f20837-e1e9-41fa-b144-2548e89521a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3da56c8e-f1ae-4c3a-a179-062df62d8138" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "9874378d-eb90-4a5a-a33f-b17180872db2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:9874378d-eb90-4a5a-a33f-b17180872db2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9886B76FDEB142788AC37155BFA8624E Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6047F6D19AF44CAABE6E0DCC9A599306 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "140" ], - "x-ms-client-request-id": [ "6b4e3d97-b249-45ea-9541-9b3de6536c64" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "69cd5015-974a-45d2-a827-f2e1c04b3ab9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +193,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87bfebca-0de6-45be-9e7d-205f53246d33" ], + "x-ms-request-id": [ "dd10ff48-5865-4551-9e9f-fca9992d1f89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "b7d7faab-3104-4701-9543-f71fecf420fc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:b7d7faab-3104-4701-9543-f71fecf420fc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8fec1f2f-b4e5-489f-b54f-6e6b808d7cb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:8fec1f2f-b4e5-489f-b54f-6e6b808d7cb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DD5970BA8FB41A89006CBA62BDA1A27 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DBCE68BBD564C09BB432C1F216F303E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "141" ], - "x-ms-client-request-id": [ "1413586f-d44a-4563-a539-3caeb6ae1384" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "2a41c14d-9370-4431-9716-9ee23080bf7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,24 +238,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "04d94101-ae5b-45b4-86e7-9de2a1443bf0" ], + "x-ms-request-id": [ "ca8b8e72-3b66-4ba0-b7e9-ab48e9872b42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "01f3e2d2-8862-46d6-a3a3-1176ba0165d5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:01f3e2d2-8862-46d6-a3a3-1176ba0165d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0bd59e6a-e025-478d-95f6-e0a31db45d0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:0bd59e6a-e025-478d-95f6-e0a31db45d0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67920027C66647CDBF5269126BBB21D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2EB7D3CFE663430787F0289ACB89D667 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -271,12 +266,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "a93b20cb-1cb7-4948-a397-730557239f58" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "d5a8abe0-7ebe-49c5-b75f-1b6fc83d543a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +282,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "69dd1eac-3fe8-4f1a-a758-509ab7982f83" ], + "x-ms-original-request-ids": [ "708636f1-7820-4579-98f1-83b75d346669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "660af008-371c-4c15-b9e2-e4d8e45fd987" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:660af008-371c-4c15-b9e2-e4d8e45fd987" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "855c041b-13f3-41ab-925d-e6e0663eb353" ], + "x-ms-correlation-request-id": [ "855c041b-13f3-41ab-925d-e6e0663eb353" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:855c041b-13f3-41ab-925d-e6e0663eb353" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6BD56CF2EC6F4E6BA9B9200E91067A8F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAC1F73082C14A8FA073FDDBB8C3F618 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "88c99466-9816-4e8f-b0da-fb4d9d9b82dd" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "a960a549-8e41-4a93-b21b-7e43e74b5f42" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,30 +326,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a246323-fd6d-4145-a14c-19f029851d68" ], + "x-ms-request-id": [ "f998f14b-482e-471a-bd3a-7bba667abce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "d8ffdcba-eb1e-42a1-a987-651cb0b5aa20" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005606Z:d8ffdcba-eb1e-42a1-a987-651cb0b5aa20" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/30d8ea3c-6d76-4682-ba9a-55fe30ee7fa6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "de8a8950-71cd-482f-a0f5-b9efc840eb0e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054308Z:de8a8950-71cd-482f-a0f5-b9efc840eb0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B92030671FB24ABEAE3E7CA391D1016B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C99D881684B546CBBEF4DA6E4ACA01BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-CustomImage-5y3dpkzqcb?api-version=2015-05-01+9": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-CustomImage-6qbcpwifmx?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-CustomImage-5y3dpkzqcb?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-CustomImage-6qbcpwifmx?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": { @@ -373,29 +369,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "27ea6d06-4a7a-4f2e-8ccc-3eb8d516e4f5" ], - "x-ms-correlation-request-id": [ "27ea6d06-4a7a-4f2e-8ccc-3eb8d516e4f5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005608Z:27ea6d06-4a7a-4f2e-8ccc-3eb8d516e4f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46333b3e-ab3d-47bf-ba46-9a535d307faf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "d6234484-343f-4a4a-afa9-44958fd3c686" ], + "x-ms-correlation-request-id": [ "d6234484-343f-4a4a-afa9-44958fd3c686" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054332Z:d6234484-343f-4a4a-afa9-44958fd3c686" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9620FBB1532433C90706A0836583961 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:06Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ADF0A9AC3CBA4E26BA6A78C3748B291A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1397" ], + "Content-Length": [ "1663" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-CustomImage-5y3dpkzqcb\",\r\n \"name\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28000c52-0000-0300-0000-6674cfa80000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"AppId\": \"c6be27ef-cc82-4ad8-aa75-298df5ab14ae\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cc8ac43e-b206-47a5-8058-3e2cd6a497f3\",\r\n \"ConnectionString\": \"InstrumentationKey=cc8ac43e-b206-47a5-8058-3e2cd6a497f3;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c6be27ef-cc82-4ad8-aa75-298df5ab14ae\",\r\n \"Name\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"CreationDate\": \"2024-06-21T00:56:08.8071481+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69004cdb-0000-0300-0000-68e74b840000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-CustomImage-6qbcpwifmx\",\r\n \"name\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"AppId\": \"e9ddb7e5-075f-48e7-a604-ff4b22284179\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bbad4093-7a68-46df-81ac-6b597ad7b16b\",\r\n \"ConnectionString\": \"InstrumentationKey=bbad4093-7a68-46df-81ac-6b597ad7b16b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ddb7e5-075f-48e7-a604-ff4b22284179\",\r\n \"Name\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"CreationDate\": \"2025-10-09T05:43:09.447569+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-6qbcpwifmx_e9ddb7e5-075f-48e7-a604-ff4b22284179_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-6qbcpwifmx-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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-5y3dpkzqcb\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"cc8ac43e-b206-47a5-8058-3e2cd6a497f3\"\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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-6qbcpwifmx\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"bbad4093-7a68-46df-81ac-6b597ad7b16b\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -409,43 +406,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375CF1A94EB\"" ], + "ETag": [ "\"1DC38DFA7674E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20178b47-e474-4398-ae22-cda95c3fc93f" ], + "x-ms-request-id": [ "2257388e-6783-4b22-9ff4-8d22b3027d67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "afb2e5b2-a7f9-4dd4-b52f-332c0645b97a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005632Z:afb2e5b2-a7f9-4dd4-b52f-332c0645b97a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02ede05e-50f5-41b4-8386-58aaff7b4a1d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "653e6b13-b4d8-4e0d-a212-020b694b0271" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054355Z:653e6b13-b4d8-4e0d-a212-020b694b0271" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86E008C78B9C4A0996D072C24DB2B963 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:56:09Z" ], - "Date": [ "Fri, 21 Jun 2024 00:56:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C61483A9C3FC49FA8BDDBFF68C22B367 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:32Z" ], + "Date": [ "Thu, 09 Oct 2025 05:43:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7690" ], + "Content-Length": [ "8491" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-CustomImage-5y3dpkzqcb\",\"repositorySiteName\":\"Functions-CustomImage-5y3dpkzqcb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"functions-customimage-5y3dpkzqcb.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-5y3dpkzqcb.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-5y3dpkzqcb.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:56:10.9033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-5y3dpkzqcb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-CustomImage-5y3dpkzqcb\\\\$Functions-CustomImage-5y3dpkzqcb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-customimage-5y3dpkzqcb.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:34.2466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "b201871f-b9ff-4034-8687-a3b8d62b2a80" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "1b9996cc-625b-4916-8cef-aab0d053b5ee" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -455,42 +452,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC38DFB343CDE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ba6a53b-6166-464e-b674-f89c71e88c7d" ], + "x-ms-request-id": [ "7644d0a6-9259-408e-941e-8f0c5c362c3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "a1206315-b0c2-4331-97f0-1343641c1e23" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005702Z:a1206315-b0c2-4331-97f0-1343641c1e23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "13aa3f9f-f7f9-4241-ab53-cbc525bf0e9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:13aa3f9f-f7f9-4241-ab53-cbc525bf0e9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5FE73AE357C449596A1F6E9A40A60BE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:02Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13F24895A07244A485BC024369CD6145 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8390" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-CustomImage-5y3dpkzqcb\",\"repositorySiteName\":\"Functions-CustomImage-5y3dpkzqcb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"functions-customimage-5y3dpkzqcb.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-5y3dpkzqcb.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-5y3dpkzqcb.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:56:32.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-5y3dpkzqcb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-CustomImage-5y3dpkzqcb\\\\$Functions-CustomImage-5y3dpkzqcb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "b6ca65e6-40eb-4333-97e1-0c0f3a958045" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "e84fef30-e52f-4fd8-94cf-1d09f4fac6ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +498,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC38DFB343CDE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1aafe0cc-97b2-42f1-9cb5-ca1414395fda" ], + "x-ms-request-id": [ "6c1f920d-547c-4bc1-bad6-d81a8274b076" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "9ef49cbc-132e-42a4-a901-0066ba18658a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005703Z:9ef49cbc-132e-42a4-a901-0066ba18658a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8f04b051-5ffc-419a-aa33-974643505763" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:8f04b051-5ffc-419a-aa33-974643505763" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57B35B2C2670469388712211B77AF7D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:02Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5473824DB2A94875B568C65D936CC6FA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8390" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-CustomImage-5y3dpkzqcb\",\"repositorySiteName\":\"Functions-CustomImage-5y3dpkzqcb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"functions-customimage-5y3dpkzqcb.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-5y3dpkzqcb.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-5y3dpkzqcb.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:56:32.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-5y3dpkzqcb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-CustomImage-5y3dpkzqcb\\\\$Functions-CustomImage-5y3dpkzqcb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "b7e3bb4c-3e04-48df-b120-a697f175b18f" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "3a327797-7af9-4c07-91c9-f95560ed3d85" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,40 +545,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fa3c795-363c-45d8-9f73-611690b40b65" ], + "x-ms-request-id": [ "225f5b7c-e052-4501-ad2a-e5f5bcfa0b83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "b44f4c45-820e-466b-91e1-53583271c2ce" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005703Z:b44f4c45-820e-466b-91e1-53583271c2ce" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a501bf96-43ce-4a60-9933-c3e09009de47" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5de0dee5-8e42-422c-9e9f-b29d2b2e5d92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:5de0dee5-8e42-422c-9e9f-b29d2b2e5d92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D205988D9B0744379B84FAFEED5719F4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:03Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2A9C7D709B9408380176F8BE0712423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1292" ], + "Content-Length": [ "1257" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-5y3dpkzqcb\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"cc8ac43e-b206-47a5-8058-3e2cd6a497f3\",\"FUNCTIONS_EXTENSION_VERSION\":\"~1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-6qbcpwifmx\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "cfa4b50e-51cd-4e0f-96e7-cbf57a7ae4ac" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "68c5b385-4a78-42f1-bfdc-5c0a0ce50588" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,40 +590,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6862adc4-5056-4ec2-9415-443dd7c4fbf6" ], + "x-ms-request-id": [ "f243c02e-110c-488f-8782-dd05fe374b30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "326676cc-0034-4b90-a18b-418f51f443e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005703Z:326676cc-0034-4b90-a18b-418f51f443e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0ccdd07-9c00-4780-958c-ab6a358d212b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c6e343c-091a-4371-8a59-c75e02fbecaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:9c6e343c-091a-4371-8a59-c75e02fbecaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6BC79D268733475BA16198D0BF4031FD Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:03Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16006B0C4B944A268AB2E3C1008A5A7E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4108" ], + "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites/config\",\"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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "d4246619-1f92-4be9-8d89-9eadfa8ed1e5" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "f3833ad6-abe5-4242-bd61-cb216acec2f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,42 +635,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC38DFB343CDE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d990fee-c775-48fd-89b2-7a4dd1cab9af" ], + "x-ms-request-id": [ "6618af75-5c0d-481d-b9cd-cc56aa3c39e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "b4548ccf-f47a-447c-90bf-39b9c03cd7f4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005703Z:b4548ccf-f47a-447c-90bf-39b9c03cd7f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "00a44352-7f32-468b-a2f3-6a78de7e802f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:00a44352-7f32-468b-a2f3-6a78de7e802f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3078A95F8AB54E28B3A44F4A3CA763AD Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:03Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A79CA966B22047F7895515CA5C4DACAF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7524" ], + "Content-Length": [ "8390" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-CustomImage-5y3dpkzqcb\",\"repositorySiteName\":\"Functions-CustomImage-5y3dpkzqcb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"functions-customimage-5y3dpkzqcb.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-5y3dpkzqcb.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-5y3dpkzqcb.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:56:32.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-5y3dpkzqcb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-CustomImage-5y3dpkzqcb\\\\$Functions-CustomImage-5y3dpkzqcb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-customimage-5y3dpkzqcb.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "da654721-7a33-4034-b5f0-f67ce37a67c7" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "80a9dc7d-f0b9-4c86-9f34-0749b81b6e0b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -684,40 +682,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ac09230-b1ce-46af-b47f-55a0c0308847" ], + "x-ms-request-id": [ "e5633f1d-6ba1-4cd0-9bad-034fce40ef5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "63729807-dfa1-4b18-97eb-15e999e774c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005704Z:63729807-dfa1-4b18-97eb-15e999e774c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37cb2dd5-e8ea-4884-b8a3-b5e21d506d66" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "22ee5890-e9ef-4576-8e43-b215844d456a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:22ee5890-e9ef-4576-8e43-b215844d456a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 393A09732BE34FB88A74FD04A466F596 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:03Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7BF088B059E745BDAD152520CD825732 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1292" ], + "Content-Length": [ "1257" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-5y3dpkzqcb\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"cc8ac43e-b206-47a5-8058-3e2cd6a497f3\",\"FUNCTIONS_EXTENSION_VERSION\":\"~1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-6qbcpwifmx\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "43691af4-51ef-4029-92ee-712e7fffcadc" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "2281eb5d-3b22-4bab-97e1-b7c199f1b3b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -729,40 +727,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc95bdff-7fbf-453b-b9cd-5ac02306e0f9" ], + "x-ms-request-id": [ "29799022-019d-4c6f-a22f-510462b849a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "9d96efcf-d67b-4cd0-a6f7-0e0cbf213c55" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005704Z:9d96efcf-d67b-4cd0-a6f7-0e0cbf213c55" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e88e68d6-9248-4a9e-8140-ff3f9fbbcb2c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4cd79654-9ed2-4f8f-9598-3eb54c0e6dff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:4cd79654-9ed2-4f8f-9598-3eb54c0e6dff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A50FAF917BA446F49037F088454EB33B Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:04Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A92FA1176AE5419F8324F799B3678A73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4108" ], + "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb/config/web\",\"name\":\"Functions-CustomImage-5y3dpkzqcb\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-Premium-23kylb/providers/Microsoft.Web/sites/Functions-CustomImage-5y3dpkzqcb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "1a52352a-bfa9-4431-ac73-1f123746ced6" ], + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "03ffabb4-8ce2-4864-aa23-850157349e81" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -773,19 +772,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC375DB62E8D5\"" ], + "ETag": [ "\"1DC38DFB343CDE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70465545-791b-4708-b46f-a5fb30593e86" ], + "x-ms-request-id": [ "f4d37141-935f-41a6-8044-9b5b30fce72e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "7d92d8d5-7668-4f1d-8df9-7e57abe7d4aa" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005718Z:7d92d8d5-7668-4f1d-8df9-7e57abe7d4aa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9c55097-5e1e-423d-a881-79a6a183f358" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "06f5df6a-2cb2-456f-b0d2-e86f7aebcd8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054435Z:06f5df6a-2cb2-456f-b0d2-e86f7aebcd8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6318992039DA470EAB3BDD8E138709DC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:04Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F5A3B5D11D045F1B1B09CEA980429F5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -799,7 +799,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -814,17 +814,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "494ed97a-9c2e-4f2c-8d18-626342b49e58" ], + "x-ms-request-id": [ "b2793712-6569-48da-bef2-a4a0946dd148" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "7c20f4d1-1f7a-4c7c-9356-ff99f938baaa" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005719Z:7c20f4d1-1f7a-4c7c-9356-ff99f938baaa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc29f694-0b63-4d2d-8ec0-17a8a4c53fc9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9a56f841-9e51-4319-a815-e5f64f1c8416" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054436Z:9a56f841-9e51-4319-a815-e5f64f1c8416" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 543E2A4C2D5E4DAC8736FC496976D6FA Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:18Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83F3DB6969FA4826BF814D8BB887B7E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:35Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -842,12 +843,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "c35e333c-8d5a-453b-b15a-aaebdd5a735d" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "c0a7be61-96bb-4e71-9875-96a414ab4c63" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -859,24 +860,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e83dae8c-40a9-4c56-a55c-a25ef97ccaa3" ], + "x-ms-request-id": [ "0bbf3eef-d385-4da9-b1ab-53773d7d5df8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "162e4b59-22b3-4caa-816c-5fb7599135c9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005720Z:162e4b59-22b3-4caa-816c-5fb7599135c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/981476f5-c91e-4052-9ff6-a5b69bdf7762" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "13b07f6e-cf32-4243-9201-923a0cf70a16" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054436Z:13b07f6e-cf32-4243-9201-923a0cf70a16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB920B2702504043ABEB37CE023CE3DC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:19Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11ADBE1C5C3E40B798DEAC3586172292 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -887,12 +889,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "3dee7b10-50dc-464b-847d-813ff0534936" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "7a423d25-380b-46de-b212-21f2db1bf115" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -903,39 +905,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c6a2e951-1615-4cab-93df-a0955caabc12" ], + "x-ms-original-request-ids": [ "af56dade-4b0f-476e-a82b-2c0e77029e52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "277f2981-1427-4798-a1d5-208a10cd161c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005720Z:277f2981-1427-4798-a1d5-208a10cd161c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], + "x-ms-correlation-request-id": [ "ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054436Z:ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A9861E0F698421C995C5CA24E7DF5D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD144F113DCF4256B3C3BA167FF5360C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "b1d4c665-482b-4c9a-b45b-98e874f46d43" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "d51c3885-aaef-4f47-967f-bc70665021ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -946,30 +949,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6790867b-ac87-400b-9f07-122cece14b0f" ], + "x-ms-request-id": [ "090d90fb-5eba-4119-9005-95ebd3aee21b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "29114822-0d71-4d15-8217-5878a6f26e1d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005720Z:29114822-0d71-4d15-8217-5878a6f26e1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b9ff8488-e827-4f31-9698-19c7c76a9fb0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "171a17dd-d771-48e6-b4a4-9084cc42b7a9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054437Z:171a17dd-d771-48e6-b4a4-9084cc42b7a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EE6E8625F7D4EB9B20955FF407A8D89 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66C9851C279C446A9600DC9B471C9887 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?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": { @@ -989,21 +992,22 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "bedca854-fa86-42dd-8eb2-f8b5bf25c0d9" ], - "x-ms-correlation-request-id": [ "bedca854-fa86-42dd-8eb2-f8b5bf25c0d9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005721Z:bedca854-fa86-42dd-8eb2-f8b5bf25c0d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6799a27-6d64-4dd4-9a83-e25b5cd61c2a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "08564bf7-8818-4eb4-ab5a-47669c847d2f" ], + "x-ms-correlation-request-id": [ "08564bf7-8818-4eb4-ab5a-47669c847d2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054459Z:08564bf7-8818-4eb4-ab5a-47669c847d2f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEAB29B3512840D78594730584D6EB62 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:20Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E7D35933D02494894EAE67A189BA542 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:37Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28005255-0000-0300-0000-6674cff10000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009dde-0000-0300-0000-68e74bdb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -1011,7 +1015,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1026,17 +1030,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1644277-c558-42a4-82b1-25ee3cb9bc0d" ], + "x-ms-request-id": [ "0995ac06-079f-4145-bbcd-8e5313977a34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "64e9d654-f4ac-4577-be7d-423c17a45822" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005722Z:64e9d654-f4ac-4577-be7d-423c17a45822" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e60ff68-4de3-47fe-8bda-8f324570c57b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "28e514ce-1f67-475f-8591-7eb4089d8684" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054459Z:28e514ce-1f67-475f-8591-7eb4089d8684" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A0AA4625D7545FEAD30BE7919C63C0A Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:21Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CDF29120A9C41C8A3CB6278D4F4EB11 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1054,12 +1059,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "160" ], - "x-ms-client-request-id": [ "174db5a7-f838-42ae-b43d-e96a4d7976d7" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "b1789331-d762-4f4e-baf8-674b2033c116" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1071,24 +1076,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e75acba6-15b9-463e-bcf8-ba81ccadebec" ], + "x-ms-request-id": [ "5106e15d-2f9f-4155-a63a-00fb855d9ded" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "ab29d2b2-880e-405a-a17b-94e6c6cea9a1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005723Z:ab29d2b2-880e-405a-a17b-94e6c6cea9a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/188ff7d6-dea0-4e9a-8df9-ea23a7614c7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "54150c03-4286-4c0d-aa29-e40aa288ff5f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054459Z:54150c03-4286-4c0d-aa29-e40aa288ff5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2901ABEF35954ABEBE345568E31E00D8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:22Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 336EABE7F4B14AA0A239519F4FEF6B03 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1099,12 +1105,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "929dff7b-5ff4-43e9-9d24-3e072b7472ff" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "ecef72a3-a96c-43a5-ae52-6bd46f93c4bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1115,39 +1121,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e535b750-8260-4810-b026-48676f7a2a4a" ], + "x-ms-original-request-ids": [ "2070d91a-2afd-4c3b-8b97-8e1d1bce0ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "0bb00016-99fb-4485-ae6f-0d683e17c2f6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005724Z:0bb00016-99fb-4485-ae6f-0d683e17c2f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "89c22019-fa34-464b-ab92-022f31ea21c0" ], + "x-ms-correlation-request-id": [ "89c22019-fa34-464b-ab92-022f31ea21c0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054500Z:89c22019-fa34-464b-ab92-022f31ea21c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71883377A8EC402CA9CE28556F505EC9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:23Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7E080A1985F46EC922DD3420F435021 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "7c942eb2-2235-4109-8c1b-b9dc0d603685" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "62c31c4e-e770-42b3-9cbe-15273a2fd39f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1158,30 +1165,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "05c52f3e-f60d-462b-b5e0-026a3e585b31" ], + "x-ms-request-id": [ "e88eee10-c654-410c-915a-4b6c4f3c23f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "d08c76fe-4714-42ed-9f81-c6f0f8100461" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005724Z:d08c76fe-4714-42ed-9f81-c6f0f8100461" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d96ebffc-bde9-4781-8bc2-cd245c01de24" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a466ca9e-f510-4d6e-801b-037c944c4236" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054500Z:a466ca9e-f510-4d6e-801b-037c944c4236" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98A4BEAE99424CF5B587A4FB2C183159 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:24Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7648CCA15BB040D996C2BF33A6CA72B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?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": { @@ -1201,21 +1208,22 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "030547b8-1226-48f0-872a-1d2b445ffe7d" ], - "x-ms-correlation-request-id": [ "030547b8-1226-48f0-872a-1d2b445ffe7d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005726Z:030547b8-1226-48f0-872a-1d2b445ffe7d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26e78767-9a53-4d54-9d96-777daeded8d6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], + "x-ms-correlation-request-id": [ "172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054501Z:172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A0B3E3ED7F44307B77EA90AC1282AAB Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:24Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F819DECFBAD145D3801D46B083FE0DF5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800df55-0000-0300-0000-6674cff40000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900a9de-0000-0300-0000-68e74bdc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -1223,7 +1231,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1238,17 +1246,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31278f3b-919e-434d-966e-287be4050f3c" ], + "x-ms-request-id": [ "f2d2d58a-9beb-429c-830f-1aa43e693ac5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "1f955ab6-5a38-42d0-bcfa-3285c619b51c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005727Z:1f955ab6-5a38-42d0-bcfa-3285c619b51c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fe45c29c-94be-4df0-9d1d-9292e4d914e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "173635c6-0058-4398-91b3-c9674157db56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054502Z:173635c6-0058-4398-91b3-c9674157db56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0222501B44794A11870398D5BE81C24F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:26Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71FD6CB1BEC144DAB984AE7F6C58E85C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1266,12 +1275,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "165" ], - "x-ms-client-request-id": [ "cfd0446f-2cf8-4d75-824f-4ace778d3aeb" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "9d7e3ef1-3f72-4555-872c-77b72d750fd4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1283,24 +1292,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7eb4d48b-34f5-49e1-9581-e1248e6cac0c" ], + "x-ms-request-id": [ "335d939d-0092-4e59-88b6-daa003518790" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "80d14d24-5823-4e9a-8584-2c358c34ad36" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005728Z:80d14d24-5823-4e9a-8584-2c358c34ad36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/eadc46c4-ae8f-402a-a92f-d807318dc7e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1bd1602a-e4e9-4863-8297-f78c785f3004" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:1bd1602a-e4e9-4863-8297-f78c785f3004" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3F15D6539844B10AD2A306EB3A31B8C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:27Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B506C83952CC47719C22B54398091E01 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1311,12 +1321,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "84c776c3-ccf0-4472-ae84-4855af1cb2e8" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "0e68f620-9ed3-4b0c-8079-d4f454ce5377" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1327,39 +1337,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b044fb86-bfdb-442c-81a3-ea699176c133" ], + "x-ms-original-request-ids": [ "343f973a-0cc6-422a-ba7b-32ccf21374fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "1b8a36e0-eac3-4b1f-839b-768269b08eef" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005728Z:1b8a36e0-eac3-4b1f-839b-768269b08eef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], + "x-ms-correlation-request-id": [ "5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AA9B7485B604301A65C14FB254F4AE5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:28Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF4F67A7E27445F9A1BD3F822EF7B79C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "9db83b99-8dc1-4001-8f5c-0630858156ed" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "3e1d9881-c3a9-46b7-a375-004301161052" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1370,30 +1381,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ab2610a8-f6d0-4947-857e-2ec193ae1ec9" ], + "x-ms-request-id": [ "0d88557b-5587-49b7-a8d2-54b2251e5f93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "4ed0086a-a77e-4a39-bcac-5fbc457fa3fe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005728Z:4ed0086a-a77e-4a39-bcac-5fbc457fa3fe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a00faa40-81ca-4664-a1bc-88a8a005145f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "19c38db7-edb9-4563-a065-68276a1d3fe1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:19c38db7-edb9-4563-a065-68276a1d3fe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFB8F6C3B2244F1FBC49E5583B472735 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:28Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56FF5FEB8FEE4ACD9F100E50A6E3106F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?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": { @@ -1413,21 +1424,22 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "d57ab646-e9b4-4153-b3a3-e3bdb1c5d7ec" ], - "x-ms-correlation-request-id": [ "d57ab646-e9b4-4153-b3a3-e3bdb1c5d7ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005731Z:d57ab646-e9b4-4153-b3a3-e3bdb1c5d7ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e7dc493-a7c4-462c-8a82-050413706f47" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "61901721-fef1-4600-8dce-9c494bcd20bf" ], + "x-ms-correlation-request-id": [ "61901721-fef1-4600-8dce-9c494bcd20bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054503Z:61901721-fef1-4600-8dce-9c494bcd20bf" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9114D34C75534AF9B4C55AB19FCB3DD5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:28Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0634EC2538EE4F47A9898FEDBD9BD570 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800a556-0000-0300-0000-6674cff90000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900bcde-0000-0300-0000-68e74bde0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -1435,7 +1447,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1450,17 +1462,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1bd1b4a3-c88e-45dd-8f3e-80ad3bf864b8" ], + "x-ms-request-id": [ "43816e8c-1bd2-48df-9f79-d1299858762f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "be82c9f2-df73-4b4a-aa03-73d654d3f1cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005731Z:be82c9f2-df73-4b4a-aa03-73d654d3f1cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eddfb0c7-f9a4-4bc5-84ef-6503aae3b770" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e4944e09-fdf8-4f67-9e59-5c95a7ecd4b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054504Z:e4944e09-fdf8-4f67-9e59-5c95a7ecd4b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB6AACC6238343DCA495A9080970E5F5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:31Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 216CE76A3D0A4BB39978B4C02E7F692D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:03Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1478,12 +1491,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "c0a369b0-0ecb-4476-b707-7c7be1615702" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "4e0041f3-0c2c-468d-8953-5d0e3625e32c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1495,24 +1508,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a16617b6-c58c-4f5f-a812-b91588b2c237" ], + "x-ms-request-id": [ "850dbb74-4ae6-41da-9d37-9967708a5e96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "228dbb91-96b6-48e7-ba7a-e9bbeff3b273" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005732Z:228dbb91-96b6-48e7-ba7a-e9bbeff3b273" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f28251ec-202c-41a6-8d8e-9ea231945e36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "006338b6-9d07-422a-8f95-4a297b5409d3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054504Z:006338b6-9d07-422a-8f95-4a297b5409d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00B0FA28B6B64E1280D63A373E2A9B93 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:31Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78F7D3A3DD3B4359AA442395B9CDD4A7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:04Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1523,12 +1537,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "93b1378d-57d0-41bd-ad0e-9d3acc7224a8" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "47758325-fd3a-4d81-b086-bc368073a4ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1539,39 +1553,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eed441fa-6ce0-4b69-946f-7f52ebe49f12" ], + "x-ms-original-request-ids": [ "7cbb88e3-4e3a-4df8-a7d8-d3d93ece3ccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "47f801f6-363b-45d7-8c0a-62c295b64ffa" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005732Z:47f801f6-363b-45d7-8c0a-62c295b64ffa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "85253cee-3fa5-44c6-8589-a009638195c5" ], + "x-ms-correlation-request-id": [ "85253cee-3fa5-44c6-8589-a009638195c5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054505Z:85253cee-3fa5-44c6-8589-a009638195c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5171F91939084EB3B9C79D97A5BD766F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:32Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0A37442BADF4C698FD211A0D95E8DF8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:04Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "b19c5571-53ae-467d-a982-41c6d0089a06" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "040402e6-b749-4922-987e-b717393c0b0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1582,30 +1597,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59dbd690-de61-4cec-83b9-bf570e1937fb" ], + "x-ms-request-id": [ "f09216b4-475e-4e68-9dc7-a3728cad0e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "190952dd-aa55-4aa6-839f-b5857d7f8085" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005733Z:190952dd-aa55-4aa6-839f-b5857d7f8085" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bdd61239-2375-44f7-a3ea-ed5e9ce27bee" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "dc6b3508-3115-4f2b-ad3b-8684f35fcc16" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054505Z:dc6b3508-3115-4f2b-ad3b-8684f35fcc16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8468EFA58F2440D5A7EE124CB85EA6FE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:32Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6EBAD1537644EE68ABDBD5BAF0677E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:05Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?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": { @@ -1625,21 +1640,22 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "74bd4ba0-2e50-47fa-8958-32e9c9fbefeb" ], - "x-ms-correlation-request-id": [ "74bd4ba0-2e50-47fa-8958-32e9c9fbefeb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005733Z:74bd4ba0-2e50-47fa-8958-32e9c9fbefeb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32181888-8193-4943-8a47-904cbc0b34c6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "b0417180-6886-4298-8299-ea07e7b0b183" ], + "x-ms-correlation-request-id": [ "b0417180-6886-4298-8299-ea07e7b0b183" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054506Z:b0417180-6886-4298-8299-ea07e7b0b183" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00392B789F0D4591BB93930804D62712 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:33Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B58DB2EC3164DD58AD68518DD202EA2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:05Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28005757-0000-0300-0000-6674cffd0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900dede-0000-0300-0000-68e74be10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -1647,7 +1663,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1662,17 +1678,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ba8ede9-fa1e-49d7-a92a-aa4717b5f7f2" ], + "x-ms-request-id": [ "2cc8dc2c-47f2-49d7-8844-ea60985b7efe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "55250158-b245-402c-baef-c7b18e4f9f12" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005734Z:55250158-b245-402c-baef-c7b18e4f9f12" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9dad1df0-27a2-4da0-99b4-d5e98f0b8d33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ba0c78e1-9e49-49c7-a1de-cd57ca3ba0a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054507Z:ba0c78e1-9e49-49c7-a1de-cd57ca3ba0a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7EA19FB279694BECAE9EDE277C6FACED Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:33Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4BBC4CEA6724D85AD0DB70CC01BE296 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:06Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1690,12 +1707,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "175" ], - "x-ms-client-request-id": [ "906f4bc6-e2b7-4171-a5e1-cd0b0f2db3c2" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "5a56c73c-deac-4649-99f5-d4e7b0a37225" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1707,24 +1724,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c78d370-37b1-40e4-85e3-283520ab941c" ], + "x-ms-request-id": [ "26701638-b76d-4ab2-8323-b85ce360c7bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "5be32e26-e2e8-4ccb-83ff-113636337308" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005735Z:5be32e26-e2e8-4ccb-83ff-113636337308" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/62718561-7e9b-470c-afdc-33085bdfdc36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "69b9fad6-1000-4beb-b5f7-6f749fa7b68c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:69b9fad6-1000-4beb-b5f7-6f749fa7b68c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 307224B3FB074D2CA46B9B766843F581 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:34Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9CA768E479442528EF9CA9171FA26D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1735,55 +1753,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "bfdc2d33-a812-45ba-ad56-4378d92cbd27" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "c12c2e35-61e6-4cf7-89dc-a8a61b896c05" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cae478af-acf7-4f99-b2e8-0fd13fe481c3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f47b085c-2b68-4dda-b142-226c0a30ab9e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005735Z:f47b085c-2b68-4dda-b142-226c0a30ab9e" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF3185790FFF4A2680FD8B6F4392587F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:35Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "366616b5-b47f-4711-bea9-5b81a096fb7a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1794,208 +1769,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc425cf9-c0e4-4d05-a9cd-bab4dec8531a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "340f919f-99c4-4263-a71a-33cf9efac14b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005736Z:340f919f-99c4-4263-a71a-33cf9efac14b" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FCAB736BA664FB9BB14013AD0E2BCA6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:35Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?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" ], + "x-ms-original-request-ids": [ "f7fc9429-d13b-4e2a-ab93-4e7331cb9254" ], "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": [ "22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], + "x-ms-correlation-request-id": [ "22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "53155c53-bda6-406d-826b-6fe87dd546de" ], - "x-ms-correlation-request-id": [ "53155c53-bda6-406d-826b-6fe87dd546de" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005738Z:53155c53-bda6-406d-826b-6fe87dd546de" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C44CA981E0444BD5BA66A7E68461E1D5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:36Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD9585DAD58647E2A62B6E5C6F260C61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "2811" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28006357-0000-0300-0000-6674d0000000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Python+$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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "452b359a-4292-4646-a41e-8b933988219c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "0ad966bf-d437-4a25-8dba-ef3a459c19e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005738Z:0ad966bf-d437-4a25-8dba-ef3a459c19e4" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 874B4BC96E78414E8863ABEB6578FE4E Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Python+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "4c190f0b-78fd-44f1-a866-c2586389ad60" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "de44a805-7f9a-4f09-83e3-8ae39339c824" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "8f635875-cb97-4d0b-971e-d8d75e62ef64" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005739Z:8f635875-cb97-4d0b-971e-d8d75e62ef64" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BBC93587F424AA584B621DDA6505F6D Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:38Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "31591" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Python+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { - "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": [ "181" ], - "x-ms-client-request-id": [ "b3e7b237-e232-44f0-b801-b817ee76bd17" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "de37f451-9b07-41b0-8189-322df8c45d3c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0b71f7fd-31d7-4eb2-a142-644367b6bb22" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005739Z:0b71f7fd-31d7-4eb2-a142-644367b6bb22" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87D8DD654CB74E719ED4EDC96F0B6FD9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Python+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "360ff814-5352-4317-8d94-32b9668072b8" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "8c45823f-3b92-4b06-90f1-0c7958e4fc56" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2006,30 +1813,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b85f6a54-ad3d-4b77-bef8-46faedf65346" ], + "x-ms-request-id": [ "2145286e-dbd5-4b38-a455-3e98cb26217a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "321ec115-e47c-4f3d-8530-24204eaa3236" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005739Z:321ec115-e47c-4f3d-8530-24204eaa3236" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ea10e3f8-55b6-43c2-8aba-70b2b29cb435" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "37f0b7d3-67cf-4c4f-b448-fe868fc9b7ad" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:37f0b7d3-67cf-4c4f-b448-fe868fc9b7ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D3C26217DA940CCA697899EBEDE15CC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58BAEDB43ED04EC6A6588AACA8FE9E65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Python+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-TestAppName-o7atemdn6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?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": { @@ -2049,29 +1856,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "54459c26-9d64-413c-89d4-6c2ddb5c14f3" ], - "x-ms-correlation-request-id": [ "54459c26-9d64-413c-89d4-6c2ddb5c14f3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005741Z:54459c26-9d64-413c-89d4-6c2ddb5c14f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8011f0c8-1101-43d1-b1e5-2fa717eeeb2e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], + "x-ms-correlation-request-id": [ "f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054511Z:f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFD677F1286749DA960B5B81DEEDC679 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:39Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 573222A7D70B42A2B65FCD5AC613F1D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1397" ], + "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28002f58-0000-0300-0000-6674d0040000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"259c0804-390a-419f-9560-9b21cefcb580\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9db50430-8b46-4b2d-a641-377546ab3577\",\r\n \"ConnectionString\": \"InstrumentationKey=9db50430-8b46-4b2d-a641-377546ab3577;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=259c0804-390a-419f-9560-9b21cefcb580\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:40.8885518+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900fade-0000-0300-0000-68e74be40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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]+New-AzFunctionApp should throw InvalidRuntimeVersion for Node 10 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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2086,17 +1894,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a91b61a2-fada-41a1-8ac1-dcadc83f90f8" ], + "x-ms-request-id": [ "c823f540-1f77-481e-8921-a008d56f8a34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "14ce6e2d-2e29-4148-b3d1-5d6d4381ff5b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005741Z:14ce6e2d-2e29-4148-b3d1-5d6d4381ff5b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03d315d0-cb4d-423f-a7b5-29d1a8d87c9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0cb108b5-228a-4105-bf76-5fe055b60004" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054512Z:0cb108b5-228a-4105-bf76-5fe055b60004" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1A1F495384E4453BA73A5B0C7AB49FC Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0475D9786123474F98AFD4759E0F29B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:11Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2107,11 +1916,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 Node 10 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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2126,17 +1935,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e23c32cd-7c70-45d4-8b25-f53540017191" ], + "x-ms-request-id": [ "1e32001b-3715-4955-af99-9b5939dd29a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "1a330bbd-e21a-49a1-bfd5-4b2c23d0c077" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005742Z:1a330bbd-e21a-49a1-bfd5-4b2c23d0c077" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5b0153c6-395c-4d9b-97f0-8c950c0b2e9b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "54c9995d-6a2b-4c63-a372-08201532e6aa" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054512Z:54c9995d-6a2b-4c63-a372-08201532e6aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F948AE759556490EADB40F5E158ECFAE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 402BAE5B8C9F4A92B34A640DF083CC19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:12Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2147,11 +1957,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Node 10 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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2166,17 +1976,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "888c142e-20d4-41a6-a956-c0fd588809c2" ], + "x-ms-request-id": [ "a96cae37-580c-4865-9c7f-a46271fbd829" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "983b583f-98ad-4c4e-9d76-07714b33a71e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005742Z:983b583f-98ad-4c4e-9d76-07714b33a71e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/91385b5b-525c-4875-bd71-e2f2dc7aee4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1dbc7029-e5c7-46a2-9d81-ab6028e6c16c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054513Z:1dbc7029-e5c7-46a2-9d81-ab6028e6c16c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 419D665521CE4826997D69DCE6FFCC0F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F0B7AD7BBBA4BF8ACFD4C59442C06F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2187,11 +1998,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 Node 10 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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2206,17 +2017,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5c0b8cd-590e-4f83-a13a-6966cdcdd313" ], + "x-ms-request-id": [ "aea3eb14-9463-4dd2-a863-d5dcd84d2369" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "9210b2a2-c36c-43db-ad0b-4e3123edf39c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005743Z:9210b2a2-c36c-43db-ad0b-4e3123edf39c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b7e631ac-08a8-442f-9f49-1a89208ec073" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "76026a2b-490a-436e-8dc0-5212d8e75c43" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054514Z:76026a2b-490a-436e-8dc0-5212d8e75c43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6639AD39C0444B9837AD1975E9C70FD Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:42Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABDA07C2923948C1B0A56A423DF3496E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2231,7 +2043,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2246,17 +2058,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ecf9728c-790a-49fc-a8ef-5c7a63176a6f" ], + "x-ms-request-id": [ "b57d965d-e4b2-4a9f-8cad-bb03acb1655b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "1ad994d3-0f72-448a-ac6c-8512a4861238" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005743Z:1ad994d3-0f72-448a-ac6c-8512a4861238" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/93111d74-61c0-4338-984d-af5d33491322" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ebbe903a-58dd-4334-a71a-d526b62c4ae1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054514Z:ebbe903a-58dd-4334-a71a-d526b62c4ae1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F8CEBD988C34214AA83374696C64B28 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCF4175F6BE04CB0BBF4AD9DD419F403 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2271,7 +2084,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-iyf85pjd9l\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-jcai4tloxm\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2286,17 +2099,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5afcfd26-bdc7-4e2e-bf0d-84adb9380046" ], + "x-ms-request-id": [ "bb104e4f-e215-42d0-a5a5-b3090e481aac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "fa00d8ab-1a41-418f-9ce5-96f8aec40e4d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005744Z:fa00d8ab-1a41-418f-9ce5-96f8aec40e4d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5c7e980f-a12a-4838-a95d-36e9f532c55c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1dfc7548-85e2-4d3f-99ab-e161b04a2109" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054515Z:1dfc7548-85e2-4d3f-99ab-e161b04a2109" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 177A5C39C9D14396B1673ADF53F3A375 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:43Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E27B0F8225FA44B0AFAF92E9A2630786 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2314,12 +2128,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "31f82413-26a6-47fb-9954-9b9b5d06cb81" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "1021db2a-e7e7-47d2-8a4a-89732830b407" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2330,131 +2144,125 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "bb4d14da-513f-4c49-ae82-142408068d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08b7e806-bdd0-43bc-ab1a-d14514e6ac98" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "b6cf3656-e446-403d-a733-8b176c90c293" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005744Z:b6cf3656-e446-403d-a733-8b176c90c293" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "12a0c91e-815f-4391-87d8-0493e27399fd" ], + "x-ms-correlation-request-id": [ "12a0c91e-815f-4391-87d8-0493e27399fd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054517Z:12a0c91e-815f-4391-87d8-0493e27399fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56C4A928A2A747CC9CF1461E28BF6C02 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:44Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 846D29291F68422BB234A9832AB2C78B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "20be6483-a10e-4282-af47-9994f42b584a" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "c14de8b9-0d21-4917-a3e9-8b1658a6265b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "3f31290c-c9b2-48da-be6e-9686206683b3" ], + "x-ms-correlation-request-id": [ "3f31290c-c9b2-48da-be6e-9686206683b3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054517Z:3f31290c-c9b2-48da-be6e-9686206683b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fc089eb-b327-42db-9b20-5b1ac8375691" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7e13bcc0-f127-431f-a09c-f9ec36c56e62" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005744Z:7e13bcc0-f127-431f-a09c-f9ec36c56e62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 072A86A6764242A581D78396723B96DE Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:44Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CC6996B60EA48BDB0273774D65B31E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "7201c47b-f8c1-4da9-98b4-00d0ac2834d3" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "b715cbc0-fe7b-4059-8fff-b75ea71b0162" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], + "x-ms-correlation-request-id": [ "856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054517Z:856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d08a83a-abcd-4957-9abc-ebdfcb11ce1d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "498e6eec-42da-4ff4-b0ce-4bb770d9b1f2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005745Z:498e6eec-42da-4ff4-b0ce-4bb770d9b1f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F509E2F37B14FA294177BB240641C1F Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:44Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CB668E4202F4A8FA57BCAAC65B523E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "409776bf-ab05-4566-8258-846ac4d29edc" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "3cf6365b-c74f-4071-8210-be85fdd6e632" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2466,40 +2274,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e29d00c3-178f-45e0-8784-82d8179a0f5e" ], + "x-ms-request-id": [ "a5299cdb-4a2b-4bbd-b17f-98a150714469" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "3ccacac8-97ac-47a2-82c4-63085926ebb7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005745Z:3ccacac8-97ac-47a2-82c4-63085926ebb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6b09f995-5e73-414a-a904-0a245991b5ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054517Z:6b09f995-5e73-414a-a904-0a245991b5ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 025C0E7D75D14F9AB2FC75DE84B3D358 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42976CA024B844B88C047766C08BE60C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "95f3568d-f63f-4c26-b791-4a2863b8af1a" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "4dcfa081-667f-408d-a0fa-52f45281a921" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2511,24 +2319,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5bcc33d7-11a3-400a-87bd-ecd749a0a18d" ], + "x-ms-request-id": [ "e5b9005a-306d-4745-9a47-0c0d2b3a5462" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "44caef29-ac76-4363-9a57-94a6acec7891" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005745Z:44caef29-ac76-4363-9a57-94a6acec7891" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c620b6dd-f140-4686-87d0-4ffcb0a1d1c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054518Z:c620b6dd-f140-4686-87d0-4ffcb0a1d1c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04CEF8BBBCBA4645B36FD52168A1871C Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38289CB4C2544C54953E930C27030CA0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -2539,12 +2347,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "195" ], - "x-ms-client-request-id": [ "57663308-7057-4ab8-b1fa-5f4e5656fd8e" ], + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "92942130-f965-4e51-a7e3-bf93ba4c89e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2555,39 +2363,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "97614865-ee82-4163-88ce-27bcfc842519" ], + "x-ms-original-request-ids": [ "123f3ebc-516d-4bb2-9cce-4d63070a1ab8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "0c698aeb-3925-4653-af73-5166b5a51384" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005745Z:0c698aeb-3925-4653-af73-5166b5a51384" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "dfecae40-90c7-42db-bba6-fea93d5d3aba" ], + "x-ms-correlation-request-id": [ "dfecae40-90c7-42db-bba6-fea93d5d3aba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054518Z:dfecae40-90c7-42db-bba6-fea93d5d3aba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F91196E9942A4EB9A47CE4E73F0B40AB Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03D4BF3F7D334EE58F6FF867154C3391 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01+8": { + "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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "196" ], - "x-ms-client-request-id": [ "92c44a84-bc9f-4116-850e-9b1c98d6171e" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "4b1ae50d-d4be-4b6f-b35f-7bdbe238b67e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2598,30 +2407,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ed904198-caf2-455d-83a6-fe32deade7d9" ], + "x-ms-request-id": [ "253f5dae-9ab0-4f1a-b40a-7c9afea44bab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "df32ec0a-af35-4550-afe6-ad75ad4992b3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005745Z:df32ec0a-af35-4550-afe6-ad75ad4992b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2caafab-338a-48bb-8414-f16349727637" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6e4530e8-72b7-4c79-a781-18d84655ea38" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054518Z:6e4530e8-72b7-4c79-a781-18d84655ea38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0A110798B084BF4A930035AB5A5EB0A Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 917399C074AB4C7F94A7744587B4B099 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "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-23kylb/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?api-version=2015-05-01+9": { + "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-xa1y0o/providers/Microsoft.Insights/components/Functions-Python-jcai4tloxm?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-Python-jcai4tloxm?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": { @@ -2641,29 +2450,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "29a8fbe1-b528-4c58-afc8-b9bbd7c45f9b" ], - "x-ms-correlation-request-id": [ "29a8fbe1-b528-4c58-afc8-b9bbd7c45f9b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005747Z:29a8fbe1-b528-4c58-afc8-b9bbd7c45f9b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/399dfdd1-a0da-428a-a70a-8ad1d7f7ac63" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], + "x-ms-correlation-request-id": [ "00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054553Z:00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B11D6B34557E42D0A1F7E7B27356EA53 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:45Z" ], - "Date": [ "Fri, 21 Jun 2024 00:57:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53BB6E6CEE414B48B82F59E30AB030BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], + "Date": [ "Thu, 09 Oct 2025 05:45:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1377" ], + "Content-Length": [ "1634" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-Python-iyf85pjd9l\",\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28004758-0000-0300-0000-6674d00b0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-iyf85pjd9l\",\r\n \"AppId\": \"f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\",\r\n \"ConnectionString\": \"InstrumentationKey=3acd53fb-3572-4fa8-b91e-f48bfd5a6982;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Name\": \"Functions-Python-iyf85pjd9l\",\r\n \"CreationDate\": \"2024-06-21T00:57:47.3295727+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900f0e0-0000-0300-0000-68e74c110000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Python-jcai4tloxm\",\r\n \"name\": \"Functions-Python-jcai4tloxm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-jcai4tloxm\",\r\n \"AppId\": \"edc06622-67e1-40ea-b636-abe100011ad9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\",\r\n \"ConnectionString\": \"InstrumentationKey=5b9248eb-d543-4c30-b6a2-cbee25bfc09f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edc06622-67e1-40ea-b636-abe100011ad9\",\r\n \"Name\": \"Functions-Python-jcai4tloxm\",\r\n \"CreationDate\": \"2025-10-09T05:45:19.1816838+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-jcai4tloxm_edc06622-67e1-40ea-b636-abe100011ad9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-jcai4tloxm-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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.10\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-iyf85pjd9l\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"\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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.12\",\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-jcai4tloxm\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2677,43 +2487,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3760A1D4AA0\"" ], + "ETag": [ "\"1DC38DFFBA40B0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c78c06a-f27e-4ac4-add5-75e2177b4e71" ], + "x-ms-request-id": [ "70cf72fe-04b9-4302-a8ae-1795983325b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "1d5713e7-5d11-44d6-ba54-798ac1f9feac" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005810Z:1d5713e7-5d11-44d6-ba54-798ac1f9feac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/477b7abb-dacb-4437-a63a-f6a7312c1329" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "890a139c-4554-4797-8882-165f9b24cb3e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054616Z:890a139c-4554-4797-8882-165f9b24cb3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCF1D1655CFE44ACB3CC2BE72546185E Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:57:47Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9E2096A88BE44AFB0941F54F8AE8365 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7573" ], + "Content-Length": [ "8374" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:57:49.8333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:45:55.6866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.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}}", "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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01+11": { + "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "614fcf90-3527-450c-b163-6dedc6e67e76" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "852e1836-ba46-4979-ab74-bf5040518e0e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2723,42 +2533,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC38E00779EE15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2849fb2e-a34c-4f69-8d5f-0ca02528cad4" ], + "x-ms-request-id": [ "845a26a2-897f-40c1-aee8-10cdaddae383" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "832b2e4e-261a-46a3-b0ab-3722b59de49b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005841Z:832b2e4e-261a-46a3-b0ab-3722b59de49b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3f9ee3db-2778-4fb9-b610-c469e83fe0fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:3f9ee3db-2778-4fb9-b610-c469e83fe0fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE10EFE450C9429A842AFB248A87FA73 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BFD119930254D0FB92DD8F25A286FC6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8251" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:58:10.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "2a34d648-8285-4f28-854e-af1e2464970d" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "0a3bd222-e613-42b5-a14c-4ed06bc114cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2769,42 +2579,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC38E00779EE15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40faafa6-ee0c-48cc-9710-3dcc22842e04" ], + "x-ms-request-id": [ "4483e8cf-491b-4528-b720-ce997a74708e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "b0ee628c-d4a1-465d-b55b-c82767b08885" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005841Z:b0ee628c-d4a1-465d-b55b-c82767b08885" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "638e826b-662b-4db0-aa57-f6ef4a6c147b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:638e826b-662b-4db0-aa57-f6ef4a6c147b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D0D4778D4134ED3B40FE529763BE105 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8B766F49BDB407397678878497C1852 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8251" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:58:10.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01+13": { + "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "201" ], - "x-ms-client-request-id": [ "b378becd-83ea-45c6-a79b-7b8a91eaecb0" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "121b84cf-f4a8-4be5-a5b9-58fd81fb23ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2816,40 +2626,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27d23cb1-e9c5-47e5-bb32-94f3fbfae7be" ], + "x-ms-request-id": [ "cb9cccf0-bbe6-4865-97d5-affc0bcd07eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "6f43c7ec-046a-43b7-a579-88d4c5ac212d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005857Z:6f43c7ec-046a-43b7-a579-88d4c5ac212d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/969ec193-b591-4b79-8b1c-a9b888ceba71" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7fbd56bd-50c4-4be5-be0a-cef5b6037f77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:7fbd56bd-50c4-4be5-be0a-cef5b6037f77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 558840ECDC2948C5B4A0548A6CE18121 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:41Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4E01AA0BA51486E91265BB5EC5ABAB0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1220" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", "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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "1bba42b7-d1f2-4349-bae2-42684dc07ae6" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "01cbb71a-02a9-4711-82ab-6ec4f31f74b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2861,40 +2671,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62d33c5d-1b60-4d31-b23d-808b8a99d5ae" ], + "x-ms-request-id": [ "7414a381-af61-4a55-8f13-4384cb1821b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "05c27da9-c5a4-483f-a43a-7964153d292a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005857Z:05c27da9-c5a4-483f-a43a-7964153d292a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee85c97b-ee24-4209-808d-7c239829ca22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2b220f6b-28f7-4aa2-a381-c90d107e029e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:2b220f6b-28f7-4aa2-a381-c90d107e029e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2C63D68FF674D01B2A3EB03D7F209DB Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:57Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6ADB9192C6244074B3B4ACA89ECABC55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4071" ], + "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites/config\",\"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\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "8e5c249f-6b26-4709-ace4-2a76c7537de6" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "efd5a445-d585-49d6-bf67-1a13e768ed22" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2906,40 +2717,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f19d67a9-ff58-49e6-ae98-0d08497acf50" ], + "x-ms-request-id": [ "6c6ef2e5-005a-4811-8918-93941c825217" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "470bcdd8-f23f-4845-8c7d-8b2282d21e68" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005858Z:470bcdd8-f23f-4845-8c7d-8b2282d21e68" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be6e13fb-d5e0-497c-b93c-37ff130ce779" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d4a65c93-5527-4ae5-b872-73638953a3f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:d4a65c93-5527-4ae5-b872-73638953a3f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E11B79E866CA460DA3C6F0073F79E866 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:57Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86FC049E222D40C9808C2866B020A2E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1220" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", "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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "204" ], - "x-ms-client-request-id": [ "fb546d44-f625-4f9a-8760-7fd44cd81bf3" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "689cbb26-c85f-41b3-9bde-25129cf3774b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2950,42 +2761,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC38E00779EE15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "793d60cd-dd75-4b05-ba0b-628cb9242626" ], + "x-ms-request-id": [ "a19b58b6-a822-46c4-bf1f-ce0531e89454" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "32d5bf65-3548-48fe-8c2c-75080f14fea2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005858Z:32d5bf65-3548-48fe-8c2c-75080f14fea2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8098548a-e588-4359-8a48-4dea46eb7322" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:8098548a-e588-4359-8a48-4dea46eb7322" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE5DAE7B6E664763A52B048E01588009 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:58Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B9AEBF328CA4CC29ABF99ED8CFF83F8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7380" ], + "Content-Length": [ "8251" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:58:10.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "f8a2b98d-e12b-49ee-9228-707166f91d6f" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "ce41fb1c-15c6-4d9c-9246-6e37a0ac07ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2997,40 +2808,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "528e2334-6098-4a3b-a72f-c1c05c85818d" ], + "x-ms-request-id": [ "13f5ebac-21c7-4050-ab24-a6a0aebea15c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "5e2743b4-abbc-4143-a7f5-e1ecc4f200cf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005858Z:5e2743b4-abbc-4143-a7f5-e1ecc4f200cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96949c8d-6c19-45e9-98cc-a56f19fca6f8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a0e5b94d-c59a-46a5-ac99-585e509b66a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054649Z:a0e5b94d-c59a-46a5-ac99-585e509b66a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1BD526C17FB4484B2B3B25B9D687525 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:58Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8A5EE0D43474EE08586900E30AAD9F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1220" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", "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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "206" ], - "x-ms-client-request-id": [ "e87f3691-f57e-47ed-a423-a56713f88e94" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "2562cf68-0c9e-42c7-a16e-4ba8a7da62f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3042,40 +2853,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83f7bbfb-3157-46bd-b70b-ad88b441309e" ], + "x-ms-request-id": [ "e558da61-367c-4812-8dac-49a678e68538" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "f2c987cc-bbda-4f5b-affd-1f37d5fc67cf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005859Z:f2c987cc-bbda-4f5b-affd-1f37d5fc67cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a64184bb-5be9-454b-aac9-7806ecda1497" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0fbee801-ce8f-45ef-aa53-7a0c39e78d5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054649Z:0fbee801-ce8f-45ef-aa53-7a0c39e78d5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F534B729609441F0ACB5CF1D85C8B263 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:58Z" ], - "Date": [ "Fri, 21 Jun 2024 00:58:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5CBC97C3E23482C8CCE0E99AC073ECC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4071" ], + "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites/config\",\"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\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "207" ], - "x-ms-client-request-id": [ "dcd33470-9866-456f-9d26-22419f297742" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "cba9e257-014b-4218-ba41-3fafc365cd69" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3086,19 +2898,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376162E2DD5\"" ], + "ETag": [ "\"1DC38E00779EE15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b38c7bcd-78fe-4e34-8d93-15e6babacc33" ], + "x-ms-request-id": [ "895dceb4-1452-4c22-8f37-783141dff5dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "80d04b66-37d1-4b0f-ab5c-1aaf2f8d1928" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005909Z:80d04b66-37d1-4b0f-ab5c-1aaf2f8d1928" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be6c158b-0a55-4feb-b698-90fc85e4c5fe" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "a863d02f-83aa-4542-9747-94b065edbdb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054657Z:a863d02f-83aa-4542-9747-94b065edbdb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99CA061068904947B60E2EF01539290D Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:58:59Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DF0403CD3DC4F898419BDA05F3999D4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3112,13 +2925,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -3127,17 +2940,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f027dc0-d9d6-4133-aa86-ef243f934b47" ], + "x-ms-request-id": [ "23b5c7cd-2a4b-4636-827c-fdc7a0397f3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "62203051-7926-4241-ada4-526ad4f95ef7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005909Z:62203051-7926-4241-ada4-526ad4f95ef7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22370464-57bc-436e-ab3f-e39af160e54a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b91259b5-1dbb-4831-81f9-3fb9e8f9768c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054658Z:b91259b5-1dbb-4831-81f9-3fb9e8f9768c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35135CE9DDB34162A7D2A19C298AF3E3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:09Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 628843C4C12D48B6B999E074A243B688 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3155,12 +2969,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "209" ], - "x-ms-client-request-id": [ "5fc1a93c-48ea-44d3-a6ca-d2f5d3f47dd9" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "77d80879-f1f1-4935-a8bd-d6e331613171" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3172,24 +2986,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95f949cf-c602-4339-aa2a-ec2a171fd73e" ], + "x-ms-request-id": [ "b77b09f1-7316-4a35-82f5-3b2bc9f7de9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "55fee992-a924-402c-a823-5afecd8a653d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005910Z:55fee992-a924-402c-a823-5afecd8a653d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/92e94d6a-7a75-47c1-94a2-41fd87c40466" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "61c8339c-b69b-4ff0-9e11-88c71ea8b5f8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:61c8339c-b69b-4ff0-9e11-88c71ea8b5f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CCCBD7318FF43DA95819ABE8DD52641 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:09Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D30BEDB87F9548748E33F4DE781CC3C6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31130" ], + "Content-Length": [ "36289" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -3200,12 +3015,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "aadf0139-ad98-4fe0-a8f7-daf488fc3e47" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "0479b6ee-3401-4032-8cb9-34cc066e89a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3216,39 +3031,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3420e8e9-81eb-403e-9fa1-ba8a5670e1d3" ], + "x-ms-original-request-ids": [ "488a2bba-3249-429e-89ba-0b2dd970de8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "1f449bad-6cfd-4aa1-89f3-e6da964e9b00" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005911Z:1f449bad-6cfd-4aa1-89f3-e6da964e9b00" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a2640dc6-6763-4131-a40d-7e0c75847c49" ], + "x-ms-correlation-request-id": [ "a2640dc6-6763-4131-a40d-7e0c75847c49" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:a2640dc6-6763-4131-a40d-7e0c75847c49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 277B26EAC9DB44068A8D98FE36D4C5BB Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:10Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9E1A54025D34C989661CBDCF28C9057 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "83645da0-a8d1-4aee-8613-5e45e45432e9" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "cd47dc4d-78ac-48c6-b347-568ed90b8748" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3259,30 +3075,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a3b397f-10bf-469c-81de-389fce3a5d20" ], + "x-ms-request-id": [ "6fc2d848-fc5c-44e8-b92b-0cd642d092d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "82c36cbf-c5bc-4ac9-8ed2-01eed195d755" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005911Z:82c36cbf-c5bc-4ac9-8ed2-01eed195d755" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/526bd3c4-5217-4eab-9809-b84dbd80db5c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "49548607-76b2-4018-8359-19af02398cc8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:49548607-76b2-4018-8359-19af02398cc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6210366BFC44955A0056717916329A8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:11Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C9F6A6DE29C4362AA619525AFEC74C3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:46:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-kylbxe/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?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-m4501w/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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-kylbxe/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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": { @@ -3302,35 +3118,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "6e4481a8-0a1b-4a14-9900-823d4e9609c6" ], - "x-ms-correlation-request-id": [ "6e4481a8-0a1b-4a14-9900-823d4e9609c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005912Z:6e4481a8-0a1b-4a14-9900-823d4e9609c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb8eac61-b53e-4e10-84a8-775d62799bb4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "0014cfc1-533a-4d60-81c5-fa050e1532e7" ], + "x-ms-correlation-request-id": [ "0014cfc1-533a-4d60-81c5-fa050e1532e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054720Z:0014cfc1-533a-4d60-81c5-fa050e1532e7" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05F896D08E53413BB9FF25E0393F6020 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:11Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01D987A2148B44F09BA2F7EFD7F78C67 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:47:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1399" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e55a-0000-0300-0000-6674d0600000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"f25825b3-5fde-4712-a9e7-ee859f6df902\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c024a4a7-73ab-44da-a551-c208b6d73ac8\",\r\n \"ConnectionString\": \"InstrumentationKey=c024a4a7-73ab-44da-a551-c208b6d73ac8;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f25825b3-5fde-4712-a9e7-ee859f6df902\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:59:12.5706273+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69006de4-0000-0300-0000-68e74c680000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c60160b5-1df3-403a-ae09-477312b2167d\",\r\n \"ConnectionString\": \"InstrumentationKey=c60160b5-1df3-403a-ae09-477312b2167d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:46:59.3886076+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-8l0a19iyrf_4410ee6b-fa30-4aa6-80c2-d8bed8c860be_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"c024a4a7-73ab-44da-a551-c208b6d73ac8\"\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 \"name\": \"AppSetting3\",\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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"c60160b5-1df3-403a-ae09-477312b2167d\"\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}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1913" ] + "Content-Length": [ "1917" ] } }, "Response": { @@ -3338,43 +3155,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3763CA6B5CB\"" ], + "ETag": [ "\"1DC38E02F4A4AE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f177b59c-24c5-4dc4-95fc-fbf2fecd1c31" ], + "x-ms-request-id": [ "19984114-b74c-473e-bde1-28042a9a4e99" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "4db782d0-1afb-45fd-8e3c-3e5afa8efce7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T005939Z:4db782d0-1afb-45fd-8e3c-3e5afa8efce7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25e70201-333c-4d2e-8490-5bfed0b10891" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "00616a8e-7845-4614-8cf9-bf51033fbd5b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054804Z:00616a8e-7845-4614-8cf9-bf51033fbd5b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88CA291E521649DBBD60A6E5A01BCAF5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T00:59:12Z" ], - "Date": [ "Fri, 21 Jun 2024 00:59:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D72399D0E0E4CF5A8E200134AC0253F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:47:20Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7595" ], + "Content-Length": [ "8953" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:59:14.51\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:47:22.4433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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}}", "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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "44d7b1db-e1d4-45af-a795-a344dd721999" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "ce3a8373-074e-4833-b2c9-9b8985e6efc9" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3384,42 +3201,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC38E0479FF28B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95261f8d-6f6e-4bf8-84c9-6a955b7e2f7b" ], + "x-ms-request-id": [ "7a8a5898-4660-490e-96c0-f893af8a18de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "0d00449f-a162-406e-ad61-c87d28522469" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010013Z:0d00449f-a162-406e-ad61-c87d28522469" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "91b64b14-efcf-44bb-a8f7-e709c7a16182" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054834Z:91b64b14-efcf-44bb-a8f7-e709c7a16182" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C33D19785FD04F7AB4F322FEEFDD2CFE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F72D06FA11448B5823F25AB9DE77577 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:34Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:59:38.2633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "c35efa59-42fa-47d0-a800-3581b747b4f6" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "68fb5888-5c72-4ff3-a1ed-c933f24f7ee8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3430,42 +3247,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC38E0479FF28B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0122da65-7f75-4405-9a99-c9e67da81879" ], + "x-ms-request-id": [ "3bf72158-21b5-42b2-964c-05c5410023d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "c2d665e2-1584-46a2-9d28-4507a23083e6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010016Z:c2d665e2-1584-46a2-9d28-4507a23083e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6df1eb84-70eb-4502-960d-7b91e9ba2075" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:6df1eb84-70eb-4502-960d-7b91e9ba2075" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E68AEE5F0664ADA84B0B0B5CB3290C5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:13Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 833116FC54C24A67B0C132C67A81ED42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:59:38.2633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "da80c50d-5df5-48aa-9e78-cc2841b2b03f" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "94ae3efa-ed16-4d1d-b9a4-6f1ad22bd366" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3477,40 +3294,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33cb8beb-308f-4898-83e3-c87d5230fa09" ], + "x-ms-request-id": [ "3860afe3-6b58-4cc3-92e6-72f6560cf928" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "65246f78-fd5f-41df-992b-29f66dcc4c3d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010017Z:65246f78-fd5f-41df-992b-29f66dcc4c3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b878863-de5a-4a52-b7d2-4146bdb59cee" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d4a170fc-bd80-4c4e-adfc-5a94db1c8f72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:d4a170fc-bd80-4c4e-adfc-5a94db1c8f72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10C059609015450E94A0C6CD55E023A2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF3D1D82F84C413DB645EB02990F492D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1309" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c024a4a7-73ab-44da-a551-c208b6d73ac8\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", "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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "ecedf9b2-a980-458c-ad07-bbc9be9f6ff1" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "b0ab4b0c-731f-4fa9-bcf9-ab743615f742" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3522,40 +3339,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "493d6d0f-fdbb-4890-9ec0-b73e14106cd5" ], + "x-ms-request-id": [ "868c21dc-6272-45c1-8e93-0ec98d5128f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "6d6d4568-347d-431e-a618-b7b8d2ca5980" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010017Z:6d6d4568-347d-431e-a618-b7b8d2ca5980" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/01811e01-311f-4047-8e75-4290a4727df5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "243c61db-6db3-483f-98a0-c9900c2d569b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:243c61db-6db3-483f-98a0-c9900c2d569b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EAEE21AA4D146B288D1A564B139DB7C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 177BB7AEDB14458A85855CCEA1652503 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4135" ], + "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "9156b6c4-9632-4241-9d86-2235b32d65c6" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "2fe8fde0-068f-4daa-9dd2-94b0637cdc7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3567,40 +3385,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d82f7d7-57da-4483-bcdd-ead5a9d9235f" ], + "x-ms-request-id": [ "729bb04f-89c8-46ed-a43b-75e7812a2e94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "1db93728-93fd-4bdc-b32c-d4a0344fed58" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010019Z:1db93728-93fd-4bdc-b32c-d4a0344fed58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a7df9a6f-3dc9-4445-8c79-6ec85461ec8a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7ad83cbf-a4e1-4fc9-a2d4-c391a3981b45" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:7ad83cbf-a4e1-4fc9-a2d4-c391a3981b45" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D35602F46162480094D20E6A7C4B8B6F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5536BA4685141F5AD50E7100CF7307D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1309" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c024a4a7-73ab-44da-a551-c208b6d73ac8\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", "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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "3f32d030-7db2-4d2f-a051-154ee73aa8ba" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "d6cb06d9-9e3d-472a-8608-8a14cd596ab9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3611,42 +3429,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC38E0479FF28B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35757407-d458-4e7b-826a-e3775c72678d" ], + "x-ms-request-id": [ "2e0bb261-680e-44e2-aa9f-229e0a0a81ed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "45e45c53-dcf2-4aaf-b1b4-977e53e09b22" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010020Z:45e45c53-dcf2-4aaf-b1b4-977e53e09b22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7a315798-05b0-4b7a-b187-14bb9b091cbb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:7a315798-05b0-4b7a-b187-14bb9b091cbb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27760CB9F85A45E5A2CFFADFCF86245E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 147474D0A4054593A25ABF6019644762 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7399" ], + "Content-Length": [ "8822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:59:38.2633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "220" ], - "x-ms-client-request-id": [ "b7b334e1-6794-49ec-bd95-eeeaefec77e8" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "d0422bc2-918e-4632-b816-340479144870" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3658,40 +3476,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c8c55f2-f0c6-478f-82ca-ce8e6c818eeb" ], + "x-ms-request-id": [ "434605ad-e190-45ed-9a48-94e74e7f3390" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "78a4e833-4f17-4131-85dc-8afca2cb0bd8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010020Z:78a4e833-4f17-4131-85dc-8afca2cb0bd8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6b80662-b97a-4c83-9d0f-f419f92e1b7a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "acca92da-f031-46e3-97d3-46dfa1b359cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:acca92da-f031-46e3-97d3-46dfa1b359cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BE92E40C27148159E6BE5E5E794DBD9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B601EFD21473434B831E5FF7301E737A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1301" ], + "Content-Length": [ "1309" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c024a4a7-73ab-44da-a551-c208b6d73ac8\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\",\"AppSetting3\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", "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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "3cbc576e-c8c2-4471-a2f7-99cf225e97a3" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "c3a54d33-23fa-48da-a147-2466e4a2c4ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3703,40 +3521,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa848387-aa15-429c-9d41-b5e5d5895a61" ], + "x-ms-request-id": [ "83a20579-6194-453c-ba77-ff19e0cb5808" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "9223c179-cf16-4592-aaf8-b4db53e43093" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010020Z:9223c179-cf16-4592-aaf8-b4db53e43093" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50ac7b85-e36b-4dbe-9f9f-c3d0dbb75bdf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8ca9e366-e43a-487f-896e-17ed1d0df11f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054837Z:8ca9e366-e43a-487f-896e-17ed1d0df11f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0CC575E120C141A2A51A2471753A8712 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C7DA46C799640738A167334B7D73C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4135" ], + "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "222" ], - "x-ms-client-request-id": [ "ab7d7ebd-b0f9-41eb-8417-30ad1901d692" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "15b70aff-f55a-40e3-894f-8aec550991e4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3747,19 +3566,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3764A666775\"" ], + "ETag": [ "\"1DC38E0479FF28B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11c4ec43-093d-4969-8e10-99f75c489d0f" ], + "x-ms-request-id": [ "e465a8e6-2a2a-4d50-94b8-513b6c33b440" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "5363f6de-0868-4359-b48d-29d1bb4860d5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010033Z:5363f6de-0868-4359-b48d-29d1bb4860d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/424306dc-93a3-4782-8c04-e4415bcab918" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "e03f3878-23b4-4dfd-aa2a-fe5530259ed9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054846Z:e03f3878-23b4-4dfd-aa2a-fe5530259ed9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 84CF8EB7893E455D9D978105BF3856E4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB122B03FCC34335AB308A10C8CCD800 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:37Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3773,13 +3593,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -3788,17 +3608,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43c96a79-2781-4740-a460-6a9783dfa11b" ], + "x-ms-request-id": [ "43f43d7f-851d-4d0d-ba08-c8e3388ac870" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "11ae95fe-dfd0-426d-9f6e-bf70b0c614f0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010033Z:11ae95fe-dfd0-426d-9f6e-bf70b0c614f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b78bf6b4-b6ff-415e-a737-cef415749c71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0d8a8484-84b4-47b2-adaa-004ea8523629" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054847Z:0d8a8484-84b4-47b2-adaa-004ea8523629" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9B0EC35CB444462992F4319168F5653 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1781E94D1EF54623BE18F0001E6F64A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3816,12 +3637,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "224" ], - "x-ms-client-request-id": [ "041b34e4-aadf-46eb-8051-eedb5a8f7953" ], + "x-ms-unique-id": [ "221" ], + "x-ms-client-request-id": [ "5e19e404-1d3b-4f84-a677-a31876a98c17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3832,86 +3653,83 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "af45bb20-6207-4146-acd0-45853c7d96d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbd90530-1636-4a97-85f5-d299ad2807ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "b07eab7c-8986-4a1e-8111-405f0cb8f748" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010033Z:b07eab7c-8986-4a1e-8111-405f0cb8f748" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "9a390876-ffed-4d51-92bb-c825e4ac5d66" ], + "x-ms-correlation-request-id": [ "9a390876-ffed-4d51-92bb-c825e4ac5d66" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054847Z:9a390876-ffed-4d51-92bb-c825e4ac5d66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93D5415054AE4ADE8BA82B3559DBD1E5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D31299BB86A42FDB7717B826B39F923 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "58887545-118d-490b-906c-5b98adbb92a8" ], + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "1b8fb8b9-d09e-4d08-876c-bba8ea2ecb26" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], + "x-ms-correlation-request-id": [ "a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054847Z:a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "189c27ea-dcbb-4f2b-9db7-cbb54dc3b1a5" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "9f48e5a7-f4bd-4cd6-9569-84e67e7a002f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010033Z:9f48e5a7-f4bd-4cd6-9569-84e67e7a002f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1202F7F2E49C4AA081589F4B69B51C19 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2945D7E9432C46EA9C6B055839B5FEDC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "226" ], - "x-ms-client-request-id": [ "8c9f86e7-8e7f-4602-a62c-fae87fbff5b2" ], + "x-ms-unique-id": [ "223" ], + "x-ms-client-request-id": [ "3c7ffb50-1914-4908-b275-c3c27fd9c0b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3923,40 +3741,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "375e74f2-84d6-415f-954d-d2d952c29be3" ], + "x-ms-request-id": [ "1b72a9f1-d22b-4eff-a9b7-a935b58d4f9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "56784443-f852-4965-9ec4-78b688ea02ef" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010034Z:56784443-f852-4965-9ec4-78b688ea02ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5c509cd7-2070-49d8-8f7c-a4abf4c752b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:5c509cd7-2070-49d8-8f7c-a4abf4c752b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DEFFE59174CD4F0283621EFBF6C10FE7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF8F9D8A53874B8CAA1233FB45E7A02E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "6f74bf68-0e20-451f-b324-05107838d903" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "b83d289a-9dbe-48b5-ac16-6ef2a4605368" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3968,40 +3786,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f595ea4-f0b5-47ff-976b-41b4397a011b" ], + "x-ms-request-id": [ "d3ce57dc-2c15-4221-bde8-ffdad77e6c47" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "04bc19f5-f059-4480-a270-513c03022855" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010034Z:04bc19f5-f059-4480-a270-513c03022855" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4cef1454-44fc-40a4-baff-e27508960be0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:4cef1454-44fc-40a4-baff-e27508960be0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 593149E220D14FE4AAC459D2DF0EABCF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1FC896841DF14366BE942D7EB78105B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "54bdb0de-1285-4f40-84a2-1d3acf336f1a" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "2aa5c90f-1a4f-4c97-b502-18b522929459" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4013,24 +3831,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f57f3bd0-801e-456a-8d17-6c91f99f07e1" ], + "x-ms-request-id": [ "a9620f3a-9083-4934-bce6-f28c3b586643" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "af9bb95d-c490-4b27-802e-520ed12f8edb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010034Z:af9bb95d-c490-4b27-802e-520ed12f8edb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "152da4fc-194d-49b9-b6f0-006bfd7de7f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:152da4fc-194d-49b9-b6f0-006bfd7de7f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5753B53FD0248D29073F3CC17AD7B6A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3BEF82954164772838D40F0F27AD917 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -4041,12 +3859,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "229" ], - "x-ms-client-request-id": [ "8aa2199c-0cc8-44f2-9174-400332a80436" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "9b42af78-10b8-41bd-90e0-829a18e9b470" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4057,39 +3875,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ac943580-0df7-448a-a08c-27c6e146a7d6" ], + "x-ms-original-request-ids": [ "120b38f3-d2e4-48dc-982c-db418b3e687d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "bf2a0cf8-ab0f-4e27-9a52-431736f50629" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010034Z:bf2a0cf8-ab0f-4e27-9a52-431736f50629" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], + "x-ms-correlation-request-id": [ "3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054849Z:3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DA11A9D783443B8A0C026EA35FC9AC8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37534FC0921C48A09140974C2124D959 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "6df0fe8f-070d-4cea-b86e-e96436ae1972" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "0fbe8798-dcc1-4ab3-bb2a-009a2a8a8841" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4100,30 +3919,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2778eaba-0b24-445d-8ab8-af3d29625f6e" ], + "x-ms-request-id": [ "c8f2a0a4-b0b6-4ab6-af89-3fbf2f266ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "c2dce548-95d1-4e50-a9bd-c083ad86ff30" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010035Z:c2dce548-95d1-4e50-a9bd-c083ad86ff30" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/069357a6-6c87-4988-ae8f-6bf059e9360f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c2cfa1e1-0dd8-4917-ba92-7cdeb2309a43" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T054849Z:c2cfa1e1-0dd8-4917-ba92-7cdeb2309a43" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B613B7C70644614837EFD07397EFA72 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 783D7EC20DAE449C9D40D56967C64ABD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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": { @@ -4143,35 +3962,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "e36f8f59-febb-4e79-92db-4a3c80c1a5a0" ], - "x-ms-correlation-request-id": [ "e36f8f59-febb-4e79-92db-4a3c80c1a5a0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010037Z:e36f8f59-febb-4e79-92db-4a3c80c1a5a0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e969db3-cb32-44b8-be16-fec5680faa87" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "7b6978a5-645d-4a75-bea4-f997fe407225" ], + "x-ms-correlation-request-id": [ "7b6978a5-645d-4a75-bea4-f997fe407225" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054900Z:7b6978a5-645d-4a75-bea4-f997fe407225" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 514FF0ACC1FF461987EC533BDB5A817E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A72E239FC17418E886FBF08E8AED2CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], + "Date": [ "Thu, 09 Oct 2025 05:48:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800c15b-0000-0300-0000-6674d0b30000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69000fe8-0000-0300-0000-68e74ccc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\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-x7qylg/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\"\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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2067" ] + "Content-Length": [ "2071" ] } }, "Response": { @@ -4179,43 +3999,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3766F5DE7B5\"" ], + "ETag": [ "\"1DC38E06AE0F630\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfbc92c6-a887-47dc-b3d4-64af0ac2c0fd" ], + "x-ms-request-id": [ "e7f52793-864a-40d5-ab80-77dbb2f1fee5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "962c1b02-5edf-4b06-b067-e475317a5356" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010103Z:962c1b02-5edf-4b06-b067-e475317a5356" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b038161-f4cd-4898-83d8-37b43f66121e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "e227a2dd-038a-4fd8-8c44-50dd0243ec6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T054942Z:e227a2dd-038a-4fd8-8c44-50dd0243ec6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A21058F4328470CAE862CA5836DF35A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:00:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1599A08ADAA443C1A4E0C130EAD1E4E9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:49:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:49:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7854" ], + "Content-Length": [ "8902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:00:39.6833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:02.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+11": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "c00060a2-8df0-41be-8002-0973b8d6d4c4" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "82873200-2047-4dce-a192-34e86f6c77c1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4225,42 +4045,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3767CF56AEB\"" ], + "ETag": [ "\"1DC38E0823E6830\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a6f474a-18fc-4174-be0b-024bb3b6ed27" ], + "x-ms-request-id": [ "5c6caf12-3274-490e-8a2e-eb691afb8e5f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "ff736056-e64b-4bac-88e9-6eb479825dac" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010133Z:ff736056-e64b-4bac-88e9-6eb479825dac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "66fbb65a-2d5b-415b-89b8-d21d39d9e484" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055013Z:66fbb65a-2d5b-415b-89b8-d21d39d9e484" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C879EF6D53DC4802B495E03296A10569 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FADEC04503F4B53985BF1667DB290B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "8769" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:01:03.0866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "1481dd7d-62a1-4d86-a021-1d0c8e4d67d0" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "494ea597-96ac-44f5-b0d0-3ca3ed2e830b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4271,42 +4091,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3767CF56AEB\"" ], + "ETag": [ "\"1DC38E0823E6830\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "76f55bbe-613b-416d-88b4-5bf3405557fc" ], + "x-ms-request-id": [ "5abcd383-4f98-4120-8ce0-990eb6598cea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "5bf0f907-8cbc-4678-a11b-071b24411a8d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010134Z:5bf0f907-8cbc-4678-a11b-071b24411a8d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aaf05c46-8c01-47b0-92e3-3bbcc3d656a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055013Z:aaf05c46-8c01-47b0-92e3-3bbcc3d656a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D6906BDE72F40B8A21EF5AFC0F60814 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F0B5313F14742688054803BF0069186 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "8769" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:01:03.0866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "235" ], - "x-ms-client-request-id": [ "6db4d578-4c8f-435b-9710-14c57d756e75" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "fc886488-05f5-44e0-9d98-7188201fe6dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4318,40 +4138,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b5b42f5-436c-467e-89af-527723b29b75" ], + "x-ms-request-id": [ "dda86243-ab5c-4c23-a578-588b272eb00c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "1795e2f2-7c57-47e9-bdf9-acc7df5b0da1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010135Z:1795e2f2-7c57-47e9-bdf9-acc7df5b0da1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2fe6edae-2613-4253-93d3-cc141d6fe743" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5b3615eb-f9c3-4639-8d52-f96ec82185d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:5b3615eb-f9c3-4639-8d52-f96ec82185d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 018CEC411BFC4A7FB2D5C4805D42B3E8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F15CCEEFDF6C4C1B90FF911A51448902 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "a6567f1c-d5ba-4356-be55-d7a610c1cedd" ], + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "b291a9c4-40da-4640-a49a-35ccc314318a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4363,40 +4183,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a0b232b-b8a7-4b78-ae51-c3e0bf44d928" ], + "x-ms-request-id": [ "87d481c9-e82d-40b5-9089-280d800e631e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "8bbfd60f-39f2-403f-8673-f5979604be91" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010135Z:8bbfd60f-39f2-403f-8673-f5979604be91" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8597ca27-f66a-4429-a465-08ecfef43a09" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "72822952-7c59-4b07-acac-0f304b800033" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:72822952-7c59-4b07-acac-0f304b800033" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1F3FA9EB3E94E1C872666027F4D19A3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 910C99361D2B4539836BADE283C1D3E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":26364,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29157,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "ee16a3ff-d973-4e5c-a534-ccd832e1926d" ], + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "1470ea6f-4ea8-499d-adc9-c6c81ab821b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4407,42 +4228,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3767CF56AEB\"" ], + "ETag": [ "\"1DC38E0823E6830\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b71b5e09-8f1c-4408-9f9f-9e2d276a2f67" ], + "x-ms-request-id": [ "e5d535b8-276a-47cb-b315-ac7f93bfe875" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "72d38be6-a783-4359-acf1-4609a026a297" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010136Z:72d38be6-a783-4359-acf1-4609a026a297" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4fc27e0d-a040-4352-ada8-2d66ae3ab970" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:4fc27e0d-a040-4352-ada8-2d66ae3ab970" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E9C0E8FC5774A2EAEE5686605940867 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4982C7A697F3448DA3679DBFD1605153 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "8769" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:01:03.0866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+16": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "238" ], - "x-ms-client-request-id": [ "2663c108-57fa-4b60-a1a2-cdfab879c028" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "ceae63a8-dea2-4dc9-a64a-a7e46243ebe9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4454,40 +4275,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcfcb250-599c-4c29-a437-3abfe8166af2" ], + "x-ms-request-id": [ "d4c6b270-52e7-4882-a46c-94744b6b7960" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "8728e972-b6f3-4154-b844-e5cf0e4afa7b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010136Z:8728e972-b6f3-4154-b844-e5cf0e4afa7b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5210eecf-f60a-411e-b0a4-9e411b8df367" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ac3b8492-0a0e-4ec8-bc86-88f2fdc56159" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:ac3b8492-0a0e-4ec8-bc86-88f2fdc56159" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 342000AECD14485982D7B7EF6FE8453E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EFCEDAF53F3F4F36B008C832CBD83848 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+17": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "cf5fcfc8-ce10-4d23-a8a4-c9ba381ca924" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "d69ac547-097b-4429-94ec-d30569038884" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4499,40 +4320,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60ff20d2-5339-4809-811e-9027551e17f0" ], + "x-ms-request-id": [ "2607a3fa-37e4-4804-8796-a93cceb078e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c0b83324-e509-42e5-8f9e-765f42ce59eb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010136Z:c0b83324-e509-42e5-8f9e-765f42ce59eb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea0f896f-8674-4128-acdb-81d9bfa47b88" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "19ca81db-76e2-4cf9-9b73-f7406ff20ed9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055015Z:19ca81db-76e2-4cf9-9b73-f7406ff20ed9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F48579FBFB1549A290EB38EDF3EE9E98 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 548833888D8A48A88263E67E2DC84D3E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":26364,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29157,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "f0ac85e8-3c2f-4a20-8e06-fe7d5f90b176" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "9a4001c3-b9b4-49c4-96f1-de8356293659" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4543,19 +4365,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3767CF56AEB\"" ], + "ETag": [ "\"1DC38E0823E6830\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1ddcb8c-07d8-48c2-a1e5-4c1e4f9d3278" ], + "x-ms-request-id": [ "99c246fe-eab3-400d-93d4-4ab865c67fd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "74f3ce9b-1aa8-4ded-8494-1009fed489bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010147Z:74f3ce9b-1aa8-4ded-8494-1009fed489bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac866b24-bcfa-4a5f-b86c-ff0c5e625855" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f4bcf21b-a5c5-4912-b9ac-2f2f83a8e5a4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055023Z:f4bcf21b-a5c5-4912-b9ac-2f2f83a8e5a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEC7D13BAF4E4C4897AA4D355D1EEDB9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A636899F53AF41E4A7A426E04D41280D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4569,13 +4392,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -4584,17 +4407,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "435b6812-05fd-4f91-942e-b8e396a7403f" ], + "x-ms-request-id": [ "1cc3b97a-77e7-45a3-9108-44363438e3ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "66566df3-0e92-4b6d-ae6e-26d2350796ba" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010147Z:66566df3-0e92-4b6d-ae6e-26d2350796ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad7c3fb7-2b51-4cdf-b7a6-67d128a2b172" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "abe48cc5-92b1-494c-be4b-0200747cc01d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055024Z:abe48cc5-92b1-494c-be4b-0200747cc01d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F6D1739070249E78DE271D8A073A711 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5409568182C3417E96E83E290626ADC7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:23Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4612,12 +4436,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "0fd4a832-6612-42b3-a427-4d56036c04a4" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "5af2a143-34e2-4e55-9687-c4017a25bc32" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4628,86 +4452,83 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "e80c26ad-8d31-49d6-a5e1-5e949825523d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa62615a-4fe5-41fc-98b3-c757b03b0b05" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f89ca992-b3f0-44b2-9c8b-a77ff8e46452" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010147Z:f89ca992-b3f0-44b2-9c8b-a77ff8e46452" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7750a675-4135-4bee-b318-8397815b43cc" ], + "x-ms-correlation-request-id": [ "7750a675-4135-4bee-b318-8397815b43cc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055024Z:7750a675-4135-4bee-b318-8397815b43cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A4102D5F7574F119994A4E49E34C6CB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42A947EF814A4679B784C1D8404F1220 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "7a6f3e01-4365-4798-a1f9-b3ceafcbf1f4" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "933d506d-0091-4dd6-bea9-bcf39e3e0a05" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], + "x-ms-correlation-request-id": [ "41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055024Z:41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "009e3d5c-9ef8-4a83-93e3-27e9bd0d669b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "c56f49d1-4ff6-4cf7-a7cd-9d128baa7b7b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010148Z:c56f49d1-4ff6-4cf7-a7cd-9d128baa7b7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A791294EC428446B931E25848F5B2BFD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C637275B9184129971392D0612879E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "a6c3f55c-28f5-45ec-94d3-5379492fe792" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "b2a7ee87-b511-467a-af32-0506b8e6f8b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4719,40 +4540,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14a5d1e4-b21c-407e-afd4-80e0202ed2bb" ], + "x-ms-request-id": [ "752114ea-68fb-4d76-9460-4bfff862cfc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "940ebdaf-f4bd-478d-be98-53da4ed7cf5b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010148Z:940ebdaf-f4bd-478d-be98-53da4ed7cf5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9bce9c9e-5fca-49a4-bb20-301bd77b0e8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055024Z:9bce9c9e-5fca-49a4-bb20-301bd77b0e8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 168398A8DE5944D5B9109789D070A6AA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E48EA9961FE4783B8CD17B467BFB5D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "3e6f810b-ad66-4b59-bb07-9baf46698bb4" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "22bc956d-ec41-4e78-9014-da1b6ea09da7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4764,40 +4585,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6f9de99-14c8-45f0-adb5-35fecbe8190b" ], + "x-ms-request-id": [ "d9ca0c03-df0a-4fb8-a2b1-e94ce082abe4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "22bda6ed-35cc-4171-b612-e28ddb6996ee" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010148Z:22bda6ed-35cc-4171-b612-e28ddb6996ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ef08831a-4b56-4f38-ad13-1d6f5f3e0a69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:ef08831a-4b56-4f38-ad13-1d6f5f3e0a69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B83100333D5C420AA9739074E134BAEC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02E438CB2D6B4AD6BD006C62BC0652E9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "9cff1b48-6b9c-435d-9cdc-09d338866815" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "f44a2c01-2ef5-48e6-b0d6-ef0a103b89ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4809,24 +4630,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4536be18-5d8a-4ac8-be32-8b7fdb9a0beb" ], + "x-ms-request-id": [ "2932efa8-2232-4b65-9b43-19c6bc8f25f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "d3a46230-2262-464a-aa1c-54e72f1d9acc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010149Z:d3a46230-2262-464a-aa1c-54e72f1d9acc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "70a8cae6-403b-47c4-b298-8b65603083b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:70a8cae6-403b-47c4-b298-8b65603083b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27A22CBADD0E4084A2F75FC7FB19A943 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BE69BF450734C7AB534ED879F44FC97 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -4837,12 +4658,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "1226fba8-6a05-42ca-8085-2680a38e2661" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "e7f9b429-b8e4-423f-9cf4-1332fed7e5a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4853,39 +4674,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f61b65b7-44d1-4bdc-90d7-c1937856867f" ], + "x-ms-original-request-ids": [ "9d17c09e-6953-4489-a78b-677182ac0b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "4e47ab92-768c-4df0-ae5d-8e961fca68f9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010149Z:4e47ab92-768c-4df0-ae5d-8e961fca68f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "759156ef-e691-4c79-8175-169d94a51776" ], + "x-ms-correlation-request-id": [ "759156ef-e691-4c79-8175-169d94a51776" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:759156ef-e691-4c79-8175-169d94a51776" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1E5E7E6D49C4348A2669255D9CC8509 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA7CF757AA944A2F96D1899D1F7B3AD8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "5cd662c7-ea2d-41d5-bfca-7f2cb528a485" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "0282a322-a24c-4402-bfcf-e3ca1f43ab81" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4896,30 +4718,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4fe23641-d298-4301-91d0-161b9aacec8c" ], + "x-ms-request-id": [ "5f243530-86e8-4ae6-b868-36a54389256f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "2ed538a2-cf8f-4f5a-ab75-1e647d1381f7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010149Z:2ed538a2-cf8f-4f5a-ab75-1e647d1381f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/73fbffd2-3b81-4c2e-bfea-9e0d97fc25d1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "68ff55f5-0773-4a3f-8a4b-42c6c29484f7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055025Z:68ff55f5-0773-4a3f-8a4b-42c6c29484f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85A32C11006744AD869452E8C4B1B40A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 05C08EA1347A49F1BE30167F70B87C73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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": { @@ -4939,35 +4761,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "a9d9b9b5-7929-47ae-b7eb-97cd84053f79" ], - "x-ms-correlation-request-id": [ "a9d9b9b5-7929-47ae-b7eb-97cd84053f79" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010152Z:a9d9b9b5-7929-47ae-b7eb-97cd84053f79" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2020206e-9f6a-497e-9c17-b17ff14d316b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "6faa6e22-5817-4f65-b141-a0b490450674" ], + "x-ms-correlation-request-id": [ "6faa6e22-5817-4f65-b141-a0b490450674" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055029Z:6faa6e22-5817-4f65-b141-a0b490450674" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 607CFBA6AFC240BF90562C0C859F1B3D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:01:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E72D151B34A8404DAC273DFD50992105 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:26Z" ], + "Date": [ "Thu, 09 Oct 2025 05:50:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800a45c-0000-0300-0000-6674d0fe0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009feb-0000-0300-0000-68e74d220000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\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": [ "2014" ] + "Content-Length": [ "2018" ] } }, "Response": { @@ -4975,43 +4798,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A40C21AB\"" ], + "ETag": [ "\"1DC38E0AB45A450\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd153135-4659-4872-b35e-d0a11345f61e" ], + "x-ms-request-id": [ "8ac34f20-188c-4522-8017-9dc3b19922f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "db27d401-504e-4ea6-bee1-3bea85b9f341" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010218Z:db27d401-504e-4ea6-bee1-3bea85b9f341" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b7f7e86-491d-4875-a0f4-e022e1e3709c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a4c50deb-abe1-45e1-9178-dce0adb6af31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055113Z:a4c50deb-abe1-45e1-9178-dce0adb6af31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E39E60901D744234BB9B975FF251C663 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:01:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDD15E0693A540CFAF2EA414898126D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7657" ], + "Content-Length": [ "8705" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:01:55.4033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2a32ede1-e790-4c07-af0d-7b10cb67426b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:50:32.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+11": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "14d602ef-8655-453e-a082-c3d132dc8fe9" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "8f03b926-a3dd-4371-81e6-11f359635997" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -5021,42 +4844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A9E48295\"" ], + "ETag": [ "\"1DC38E0B822F240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0c59722-8555-4eb3-81c8-bce1276c9e0e" ], + "x-ms-request-id": [ "ad5fc646-2a5d-46e2-bb58-f2e5327e0f7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "32ef45ca-6c7e-4396-9c7b-99caa6090080" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010249Z:32ef45ca-6c7e-4396-9c7b-99caa6090080" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f74ffd65-e9e2-4bd7-9f3b-57b912d3fe39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055143Z:f74ffd65-e9e2-4bd7-9f3b-57b912d3fe39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22D21AC6984444AD88367A3C3E732402 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73927EEB93634B92AB5053D35844195B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:02:18.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2a32ede1-e790-4c07-af0d-7b10cb67426b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "252" ], - "x-ms-client-request-id": [ "fe6e9625-b369-48d2-a928-b48ea6498cc6" ], + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "95d54e05-f2a7-46a7-ad5b-ed4249919ba5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5067,42 +4890,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A9E48295\"" ], + "ETag": [ "\"1DC38E0B822F240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b874597-83b7-4455-832d-b58034428d84" ], + "x-ms-request-id": [ "48260738-ecf9-41d3-a851-2983c2491c17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "4f2ba350-45d5-46ac-a718-0928fe0305a1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010249Z:4f2ba350-45d5-46ac-a718-0928fe0305a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1011dfb5-03ff-407a-b0bb-42b7e1c1aaaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:1011dfb5-03ff-407a-b0bb-42b7e1c1aaaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AEA22329DFD4FC190970F9A8CEC0E95 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28B418503C13431794255E2295CFD513 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:43Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:02:18.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2a32ede1-e790-4c07-af0d-7b10cb67426b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "8fd116ba-7229-4581-8a90-4b6f1127d7d4" ], + "x-ms-unique-id": [ "250" ], + "x-ms-client-request-id": [ "5b55696e-5630-4b09-8360-47add2072fac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5114,40 +4937,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9efefe2-3c51-4278-b151-c3b2220a6596" ], + "x-ms-request-id": [ "363ccbf4-3b5b-40b4-9ba8-63d0bca6ce6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "0f3432be-0520-47fc-b920-a3a70ebd6aa7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010249Z:0f3432be-0520-47fc-b920-a3a70ebd6aa7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8582475f-2aa6-48dd-9a31-a70775bba91e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2279344d-e2aa-4d2a-8653-e6b7e714aa6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:2279344d-e2aa-4d2a-8653-e6b7e714aa6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65A4223AD4D34A16B9E56CB91E84E13D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C5EB45A25E94F2D97F6253CF91F035F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+14": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "5952ab54-91ce-4e82-a47c-4d641c0eca90" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "8f35b026-5670-4ced-a510-a0fdcbffd976" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5159,40 +4982,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dae2b087-bc37-433e-9cdd-74e672747f7b" ], + "x-ms-request-id": [ "c2b05aa7-ba12-48d4-a895-b71534d0a7a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "e4fcc34c-aa89-4515-9b43-29ae7174af25" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010250Z:e4fcc34c-aa89-4515-9b43-29ae7174af25" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07931bae-1353-4bb2-b4f7-b11d1690755a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5fa0c02e-043f-46af-9c8f-f6fe1e7e95ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:5fa0c02e-043f-46af-9c8f-f6fe1e7e95ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13DDAE7B33C34A8EBABBF3C07D3D4BB2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9765510EBDA4AA4A70D17B612E0A9D3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26365,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29158,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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 +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "7458f526-3dc7-4f23-a2c3-06d8390f0111" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "fff726c7-8fe1-48f9-bf90-7ad855359e4e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5204,40 +5028,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "795809b2-238d-4765-8a0c-7609795f03e4" ], + "x-ms-request-id": [ "e70cdccf-ea81-47d5-a4d6-22cb5540f7bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "96f319a6-d9da-4351-874d-94cb2f09ede2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010250Z:96f319a6-d9da-4351-874d-94cb2f09ede2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ef08533-3910-459d-8df9-672858e6e909" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2f012a76-6c0b-4e8b-9173-c31d32075208" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:2f012a76-6c0b-4e8b-9173-c31d32075208" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E3D44C138374C42BF4573A4F56528C7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57B972DADAA84B8DB6C78EE38B179283 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+16": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "719dc7eb-82b2-4fed-a23a-2269d8d33bf7" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "1f6d5122-2992-4347-9d38-0a753e8ce95c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5248,42 +5072,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A9E48295\"" ], + "ETag": [ "\"1DC38E0B822F240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb3bc6b8-83f7-424f-ae20-835eaa656420" ], + "x-ms-request-id": [ "508f4c32-e0f8-4677-8e98-66f4966c2cf8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "560ad2d8-bce2-4188-bcdc-fd2d711bf050" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010250Z:560ad2d8-bce2-4188-bcdc-fd2d711bf050" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7e32e738-babb-4632-9087-db1cc3927cae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:7e32e738-babb-4632-9087-db1cc3927cae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 297C37D8BED44DA69BF3CA881A0CC8D3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A85EEE1AD88549D9843EFA5167E79669 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "8571" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:02:18.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2a32ede1-e790-4c07-af0d-7b10cb67426b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+17": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "257" ], - "x-ms-client-request-id": [ "e5361d3b-d3f6-4ad5-bba2-3a52447efe9f" ], + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "7f11ccc7-0ddc-442e-852c-3a8e32f3bfdb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5295,40 +5119,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f15eb3f0-c80b-4817-a4d8-0ff1e6c098d0" ], + "x-ms-request-id": [ "4c373e33-545a-43a4-a088-6344921a5d52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "eb2cc76b-0423-42de-9703-206dff6a33b0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010250Z:eb2cc76b-0423-42de-9703-206dff6a33b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9603bd24-a71f-4dc7-b1d0-ef5783c4cacb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ec845fc8-4f36-4190-a1cd-8317ac21dd7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:ec845fc8-4f36-4190-a1cd-8317ac21dd7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61B1655C39964DD58396EA00FA636B39 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5C6EAD2B66F4AD7864142176F5A8BA5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+18": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "4cae1d4f-9b32-4fbe-89a3-5bb943a902b7" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "4ac3ab56-b7a5-45b2-ab04-45c145731c57" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5340,40 +5164,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4c25c18-3deb-4aec-b5d9-b3d9e949c404" ], + "x-ms-request-id": [ "acd2a408-7ce2-43e9-950f-2ba47d74f231" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "a2962455-c9f1-41db-8543-e5d412a26432" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010251Z:a2962455-c9f1-41db-8543-e5d412a26432" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c864268-e788-4338-ad0f-764a8eea27e8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "07b2cc37-72a3-4c19-b5bb-071fca5e3162" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:07b2cc37-72a3-4c19-b5bb-071fca5e3162" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D63FBF3D4284C8F8CE04B032DA8A79A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:02:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A44FAC305D1047EC9DCA6AC37813D5A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26365,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29158,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "6ad950b3-04b8-4369-9351-9b5503bf13d4" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "6b0648cc-4a06-4489-84a5-ac3d8593a6f9" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5384,19 +5209,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376A9E48295\"" ], + "ETag": [ "\"1DC38E0B822F240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7707d4e-6bf6-4bb8-ad51-290bf7c320bf" ], + "x-ms-request-id": [ "677b12d9-bc1a-447e-82e8-ccf8e3543839" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "f87d6a77-92a6-401b-8804-d68499bc03d0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010304Z:f87d6a77-92a6-401b-8804-d68499bc03d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcbe4000-a004-4fe3-927c-b3093921b7e1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "78c47124-916e-4dae-8389-7c30ad7b1e7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055156Z:78c47124-916e-4dae-8389-7c30ad7b1e7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5B9374F2FA642E089E593A6955C05A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:02:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2684295E219A457B8E44E6CBB8741F15 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5410,13 +5236,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -5425,17 +5251,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ac9baee-06c2-43f9-a620-df2f7d376fb2" ], + "x-ms-request-id": [ "c85d4e0d-8a64-4f0d-8dac-09e28172ecf8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "d32b3b03-c6a1-4f4a-8f5e-0f92d3d3242f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010305Z:d32b3b03-c6a1-4f4a-8f5e-0f92d3d3242f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18e61c0c-6539-48ef-8147-53e99f34f5bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c602c1f0-fadf-4ee9-b115-51027928b26e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055157Z:c602c1f0-fadf-4ee9-b115-51027928b26e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCEB5E3B6D4545CAA33948EE8EF69126 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:04Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5D6F8957D0F24BA1B474C847F03DC108 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:56Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5453,12 +5280,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "437b2e38-6d3b-4453-8845-44c79da23686" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "70a4df29-efdb-4437-9325-f6291948368b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5469,86 +5296,83 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b1cc9fdc-f870-467d-a0d6-fd0f6bc12e4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cc5d456-2f72-4f90-b798-ae2cd887f6dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "1c3e20a4-ca97-427f-9a10-10bda46677ca" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010305Z:1c3e20a4-ca97-427f-9a10-10bda46677ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], + "x-ms-correlation-request-id": [ "f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055157Z:f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C4593A5C05D48878F8C4D464341D66A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53838CF85AC7403083EF0C6754C58AF2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "6651" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "262" ], - "x-ms-client-request-id": [ "9aeb2f92-531d-4f41-a891-dff2b950f5c1" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "491874e9-e729-41ef-8a13-9539216405b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "fa3ef9cc-926a-48db-936d-c6944d268d3e" ], + "x-ms-correlation-request-id": [ "fa3ef9cc-926a-48db-936d-c6944d268d3e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055158Z:fa3ef9cc-926a-48db-936d-c6944d268d3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "920b6be6-de9b-4301-9fb2-6713e569cd22" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f50168ba-f90e-4574-b15c-72f088c379e9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010305Z:f50168ba-f90e-4574-b15c-72f088c379e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EECAA25C52F848D08DDCD03031595E4D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12012B2ACA9349A496AB94B0DF554BEF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "262" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "263" ], - "x-ms-client-request-id": [ "e169bcc2-cc2f-490e-b71a-a2aa279cbc10" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "f03949f3-cda1-4eee-b851-7414b8e7f97c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5560,40 +5384,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc1862cf-7576-41bc-8f38-5f4c0ea01afc" ], + "x-ms-request-id": [ "58b4e7c0-b571-477f-b1db-8051f23b1ad1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ada8ecff-2d41-4b9e-9bde-75fa5c48cdd8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010305Z:ada8ecff-2d41-4b9e-9bde-75fa5c48cdd8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bf45909f-dc28-4806-b04b-195d1536910b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:bf45909f-dc28-4806-b04b-195d1536910b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40F44FED9D634F54A9B9DD84314B3A69 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91EEEDC35AF148BA8A4678924981D0C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "dd161252-5f1c-4da5-8a25-1aedfef5a8c9" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "e7cabb2c-837f-47d2-b8c2-e236918487b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5605,40 +5429,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ef68199-da3a-481d-9758-032ec717e852" ], + "x-ms-request-id": [ "7c741be6-168f-4d42-a654-774bf36e4634" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "f8643ab1-0f2e-4b8c-8fac-30273bc34232" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010306Z:f8643ab1-0f2e-4b8c-8fac-30273bc34232" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fecbee0b-ce8f-4d84-863b-9e5c5d8ee2c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:fecbee0b-ce8f-4d84-863b-9e5c5d8ee2c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E993EE50CA2240CDB9D13845768AE960 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F8B3EA1A86E40ED9475B0290F66F079 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "513bc9e5-f6a8-49d5-8ce4-8ec16becd3ce" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "4f2b67d5-31f6-4f69-b54b-a018d50ebb3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5650,24 +5474,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57ff1f54-acf3-42b3-ad4d-29f13a42e71d" ], + "x-ms-request-id": [ "8bb00962-1817-40b7-9dd5-7fb086202ac3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "318d8b73-e000-47d6-80e1-6eb556a0da4e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010306Z:318d8b73-e000-47d6-80e1-6eb556a0da4e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7678e0c2-f25b-4861-8177-166138a45b59" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:7678e0c2-f25b-4861-8177-166138a45b59" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D2A6EB51C8043F6A760C84FC8456A29 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD3470FCCADB4228A933BD1F40686993 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -5678,12 +5502,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "266" ], - "x-ms-client-request-id": [ "b721dfec-1e21-45d8-81a1-e98510f02ca4" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "58281abd-3618-4634-a247-642ae316ba5e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5694,39 +5518,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b8f39fe9-b309-4e25-ac2c-c39aaaf5d2db" ], + "x-ms-original-request-ids": [ "e5647cc7-a83b-4603-a21f-5da32a29ea30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "1de87ad8-6101-4497-b808-d564b6838c93" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010307Z:1de87ad8-6101-4497-b808-d564b6838c93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "37812caa-7696-4e48-a5fe-ba31de67d2d1" ], + "x-ms-correlation-request-id": [ "37812caa-7696-4e48-a5fe-ba31de67d2d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:37812caa-7696-4e48-a5fe-ba31de67d2d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DF085A07620462892E54CBC0E679DB3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9B4651D121344D6951DE82274F4F1D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "d18d88de-90d0-47a1-942b-83f5ac96096a" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "b0a0d2ef-b7ae-47cb-98de-6b334cde1d4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5737,30 +5562,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1f32da7c-aaca-4fe8-a48e-3eb671df0575" ], + "x-ms-request-id": [ "ad19b8cc-42ff-438c-ade6-a8db479f2606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "ca71000a-d34e-48ba-b26e-46580b16a5c8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010307Z:ca71000a-d34e-48ba-b26e-46580b16a5c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d53bebbd-d001-4889-b707-72a81e9bd862" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "368b6345-4ccf-418f-bb03-c22d197f9db6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055159Z:368b6345-4ccf-418f-bb03-c22d197f9db6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DFCD161AAD242999E1F3BD8AFA8C158 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B300484E6F64D59BC6D38EABEF63113 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+9": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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": { @@ -5780,21 +5605,22 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "ce97dc53-9c5a-4f10-8cf9-5d26e4dca5bc" ], - "x-ms-correlation-request-id": [ "ce97dc53-9c5a-4f10-8cf9-5d26e4dca5bc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010308Z:ce97dc53-9c5a-4f10-8cf9-5d26e4dca5bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7e67d4c-47e2-4d3b-824d-e07ffe880584" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "b95bbc3b-4675-46f3-8d93-453cfaea5946" ], + "x-ms-correlation-request-id": [ "b95bbc3b-4675-46f3-8d93-453cfaea5946" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055200Z:b95bbc3b-4675-46f3-8d93-453cfaea5946" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6225DFEBA6CC4A95B55BAB18C9B75AE8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9696635E63C148CA811D422F1A43C8D8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800ab5d-0000-0300-0000-6674d14c0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69000ff0-0000-0300-0000-68e74d7f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, @@ -5802,7 +5628,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-fzbnp5j12m\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5817,17 +5643,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4952fc4-14d6-4611-bd0a-8cbf1c866490" ], + "x-ms-request-id": [ "4bd2f1be-1995-4fba-9770-1cdc64bb7382" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "89d7b36e-b17a-4cbb-9ec1-cd9f660eefb2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010309Z:89d7b36e-b17a-4cbb-9ec1-cd9f660eefb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acd2b2ab-62ef-4154-aef7-ac5ae69a9ca2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cf4c0a5e-575a-442c-b36e-0883e74257e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055200Z:cf4c0a5e-575a-442c-b36e-0883e74257e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B94C915FFB464069A50E5F51EFA4EEE1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F85E641D23C74CA08E9D7B937264BD55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:51:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5845,12 +5672,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "09bbdc65-e13c-40ae-aa45-8f982b7507fb" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "4fd883ff-dbe3-4305-a59b-566ad2120d21" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5862,24 +5689,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69ee9769-1631-4b92-80ee-568c92a6628d" ], + "x-ms-request-id": [ "88e3968f-fffd-4f77-9ba3-c80669444707" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "0cf64ba0-dd0d-47d9-8590-901c18bec258" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010310Z:0cf64ba0-dd0d-47d9-8590-901c18bec258" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b6058451-1ec7-4cc6-87cc-b8d86b4e9f2e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "41a5b681-ce4f-479a-990f-f7508c24e56f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:41a5b681-ce4f-479a-990f-f7508c24e56f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1615B383D0B84D66A7CD39DD58CE7658 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23063AE33EED4B5AB1B58268D53796BD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -5890,12 +5718,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "06d64a5e-c308-47a7-b789-66fbb20e47f2" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "22f638ee-4ce6-4cce-8822-177e2e66b01c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5906,39 +5734,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc3e5af7-f746-412d-b87f-fec92b16d7b5" ], + "x-ms-original-request-ids": [ "a9014e0b-8f68-4266-b080-40a661439141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "554b6e67-741e-4417-9233-6fa49c7842cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010310Z:554b6e67-741e-4417-9233-6fa49c7842cd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], + "x-ms-correlation-request-id": [ "3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6088864D0884A41872FD42DD77C7D60 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B843A9EA9AA42268D8683FE1056BA14 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "a619f8ec-0c65-48d9-b4cb-d66a63d1e314" ], + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "1b76ae96-55b7-420e-b72e-c968c11a2fe6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5949,30 +5778,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f662c3e-500e-4f12-81ad-ec52642e3a83" ], + "x-ms-request-id": [ "837d69ce-7729-4629-b4e7-30093dfe581f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "cbad71e7-7280-4860-bdc7-6e8377d3dcc3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010310Z:cbad71e7-7280-4860-bdc7-6e8377d3dcc3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f60cf97-2c21-4813-b345-4bf82d104a25" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bc071dfd-99a7-4b49-bfe4-f6a15e816c1b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:bc071dfd-99a7-4b49-bfe4-f6a15e816c1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 637BC8DAB58D42AA808A83ECFEEEA6CE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B8A2A685DC741C6BCD6605F034B2914 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "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-h8frn2/providers/Microsoft.Insights/components/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Insights/components/Functions-DotNet-8ae9thv0pn?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-h8frn2/providers/Microsoft.Insights/components/Functions-DotNet-fzbnp5j12m?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-DotNet-8ae9thv0pn?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": { @@ -5992,29 +5821,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "3a1be048-2ac4-4376-a7e2-edbf43b81849" ], - "x-ms-correlation-request-id": [ "3a1be048-2ac4-4376-a7e2-edbf43b81849" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010312Z:3a1be048-2ac4-4376-a7e2-edbf43b81849" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cbcebc61-4caa-4e91-8395-fd3d4815324f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], + "x-ms-correlation-request-id": [ "a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055223Z:a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9270C633031E456CBBCA44B463826A21 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C499B4BFA0224EBE85A16C5FCA3822C6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:52:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1381" ], + "Content-Length": [ "1638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-DotNet-fzbnp5j12m\",\r\n \"name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800c65d-0000-0300-0000-6674d14f0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"AppId\": \"f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"acfe5cbd-9c18-4a5c-8296-28f0544156cf\",\r\n \"ConnectionString\": \"InstrumentationKey=acfe5cbd-9c18-4a5c-8296-28f0544156cf;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"CreationDate\": \"2024-06-21T01:03:11.9534357+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900f7f0-0000-0300-0000-68e74d970000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-DotNet-8ae9thv0pn\",\r\n \"name\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"AppId\": \"882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\",\r\n \"ConnectionString\": \"InstrumentationKey=f3ec4fb2-d80b-4510-aa34-7b544e9d4361;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\r\n \"Name\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"CreationDate\": \"2025-10-09T05:52:02.2302285+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-8ae9thv0pn_882b5dc6-655a-4f8b-9cff-8bb93f098cb9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8ae9thv0pn-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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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|6.0\",\r\n \"appSettings\": [\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-fzbnp5j12m\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"\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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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|6.0\",\r\n \"appSettings\": [\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-8ae9thv0pn\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6028,43 +5858,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376CB98568B\"" ], + "ETag": [ "\"1DC38E0E36A5A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c839c584-3fbc-44e5-8dcf-28315df7214d" ], + "x-ms-request-id": [ "b08a2248-317b-4f1a-a75c-24bf21e58ba2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "eedc6b77-e76c-490e-a66d-575e5bd1f7d4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010335Z:eedc6b77-e76c-490e-a66d-575e5bd1f7d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/296e4942-5155-4f2d-b8be-9b151dce87b9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "40fa2585-cdf7-44a0-8df2-077808d85f85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055244Z:40fa2585-cdf7-44a0-8df2-077808d85f85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 457E71D0B14740F0B74710FF2495FA5E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:03:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:03:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC6F99D3943A4280B865141C87FD3424 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:23Z" ], + "Date": [ "Thu, 09 Oct 2025 05:52:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7337" ], + "Content-Length": [ "8346" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:03:14.3966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:24.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.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}}", "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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "d35e2635-20e3-4b85-b093-50a21a268869" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "17d84e7d-b5dc-4a9c-987f-bb160ca322a0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -6074,42 +5904,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376D74D2A0B\"" ], + "ETag": [ "\"1DC38E0EEAEC5D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a623bec6-eed4-46fe-88cd-902e735e1220" ], + "x-ms-request-id": [ "94c9c2fb-a2b0-4da2-94e9-753108afe0b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "97855411-a69c-4988-b313-8bee818b3b06" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010405Z:97855411-a69c-4988-b313-8bee818b3b06" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a95c67c-5e4f-478b-b019-b232d8319f92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:3a95c67c-5e4f-478b-b019-b232d8319f92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B90259EE60034BFFA1B78BB4441604B3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DBB9728A9114E18AA3CF3FFDBFD55E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:03:34.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "ab4dae3c-3cfa-4f05-8ea4-14a9000a3672" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "b2c46481-ce1d-48e9-9f0b-f3b0127cc4bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6120,42 +5950,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376D74D2A0B\"" ], + "ETag": [ "\"1DC38E0EEAEC5D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "835dd541-84f0-4ff7-9954-c4658ee6689f" ], + "x-ms-request-id": [ "4656379c-e8c3-4537-8ad5-b6719594f90f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "7cb7c836-7a81-4540-9c3d-210baf5c94e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010405Z:7cb7c836-7a81-4540-9c3d-210baf5c94e4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cf8f08ee-32f2-4a5c-b0d4-2c9abbb333db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:cf8f08ee-32f2-4a5c-b0d4-2c9abbb333db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB234D06B0BA41B990A3ECE67494001B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 083C3EC041474F9AB232C8B8997C039E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:03:34.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "52a15007-2c78-4e8c-b2eb-9b4ac51eb968" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "70c3e0da-21dc-4bb7-997b-1c54b5eab80f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6167,40 +5997,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f35fed2d-7c3d-4e97-a4c7-34f862cc51a4" ], + "x-ms-request-id": [ "7ab09db6-b606-4a9b-8eb9-b41461aedae3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "284db976-8c3b-435b-9bde-930de43cce8a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010405Z:284db976-8c3b-435b-9bde-930de43cce8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86675379-4cda-4f2c-a131-fd7aa594fb92" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "69cc95a8-38d2-44f7-96c0-6aa66343f2ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:69cc95a8-38d2-44f7-96c0-6aa66343f2ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7F6E51BA2054BE0836B2BFFB90D4C3E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C134D4D390194199B38FA52A3D8A57A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-fzbnp5j12m\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8ae9thv0pn\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"}}", "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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "32ecb27e-23bd-4984-a677-5888f75aeafc" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "dd6e9bb7-a587-4dcf-9375-1396be4b7cdd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6212,40 +6042,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70c69cb7-7305-4af7-86d9-de461196c91b" ], + "x-ms-request-id": [ "8e583eed-0a19-4d02-9c8c-ccd5b22c3330" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "2cb07cd4-3211-4c50-b118-7ecd9d703aa4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010406Z:2cb07cd4-3211-4c50-b118-7ecd9d703aa4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/529514b0-8066-4767-8749-ca0ebd660f80" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bbc8420e-4e5b-4cf6-a530-5fdd5798d8a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:bbc8420e-4e5b-4cf6-a530-5fdd5798d8a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7707D58481DB4B79A72122FD7AF9DF2D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8796F3D770E419C927F88E628B57675 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4076" ], + "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "56bc0900-4076-4d3d-b44f-ee8ec1dabff7" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "68385374-30fe-4abc-98f9-65f30ca55b2d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6256,42 +6087,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376D74D2A0B\"" ], + "ETag": [ "\"1DC38E0EEAEC5D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2141255b-ca53-42b8-9aa6-2c2246ad92f5" ], + "x-ms-request-id": [ "f9187706-65a0-4af0-93d2-84ce1b2a4130" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ed8e6d03-d622-4ae8-9d95-e6d4c3878b92" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010406Z:ed8e6d03-d622-4ae8-9d95-e6d4c3878b92" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a495d977-cb42-419e-898c-b07da6c05743" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:a495d977-cb42-419e-898c-b07da6c05743" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93E9A2DCC2134F14AD6BCB422AE8916D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C91988C6927403F861134179E2D7579 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:03:34.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "93d88048-bce4-4198-bab7-bc7ce84ac9d7" ], + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "3354de3a-705d-4c81-a04a-3dd47abb7596" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6303,40 +6134,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83dd67c7-cab1-45fc-a8a1-8abc8b9afbfe" ], + "x-ms-request-id": [ "fd5ad667-b3af-4769-9723-9fdcb14bd8dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "e4649407-465b-4e52-b2b8-1dca38b0f877" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010406Z:e4649407-465b-4e52-b2b8-1dca38b0f877" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c666873f-4394-457a-8be1-0e7b58f076ec" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "30887f59-ed7a-45bd-9e6a-094b57f71ed7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:30887f59-ed7a-45bd-9e6a-094b57f71ed7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42D92F0C369B47D1AE25ABFD902F09B6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E40ED715DB64037B5A000182586611D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-fzbnp5j12m\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8ae9thv0pn\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"}}", "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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "45d283ef-d868-4f14-a44b-b909c473e1c1" ], + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "7282aa5d-f38a-435a-a30e-5c249d6d4f12" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6348,40 +6179,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af041da2-c6d5-4ba8-aa88-09cb73ac5360" ], + "x-ms-request-id": [ "71b66382-4080-4bb9-8ab1-b7951d3411fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "bfb29c57-e00d-485d-9a62-26239b081108" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010407Z:bfb29c57-e00d-485d-9a62-26239b081108" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d579c62c-0e1a-4204-bcba-a46195231363" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "82ff7313-cad4-4b92-b96b-453f35d08515" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055317Z:82ff7313-cad4-4b92-b96b-453f35d08515" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C2F4376DB71428DB5612FC1B1BBDBFA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5B211B5F07C4C338D2FB9A83BFCEB5F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4076" ], + "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+14": { + "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "8a98aff8-0658-4936-b188-2b1aea21442e" ], + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "82db110c-f264-4862-befe-05c80cadea54" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6392,19 +6224,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376D74D2A0B\"" ], + "ETag": [ "\"1DC38E0EEAEC5D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f904e26-2ce7-4adf-89f5-f8c4508a5a56" ], + "x-ms-request-id": [ "51931dc6-b52b-4cb8-b0a7-24a2bd451ed2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "2d0f8b2c-9a02-4176-8640-7a54f580e4e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010420Z:2d0f8b2c-9a02-4176-8640-7a54f580e4e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed41a378-5e48-451d-9864-99e9003e3091" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "3bff98ba-ab71-4ef1-97c9-5dc076e1b596" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055327Z:3bff98ba-ab71-4ef1-97c9-5dc076e1b596" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 059DBFB6A8E54244B1B79D4035DFCA58 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E604BEB81BF4496199846EB6644E0671 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:17Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6418,13 +6251,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -6433,17 +6266,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0a8c9ab-a483-4723-830a-ed8c17a971a0" ], + "x-ms-request-id": [ "a8b7aa4f-13d1-48d4-98b1-23c7888c4a09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "852feb92-a9a3-4171-b8b0-6e0e700cfeda" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010421Z:852feb92-a9a3-4171-b8b0-6e0e700cfeda" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9336b3d6-22c1-4e63-80f5-ce641e039306" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "24cc2ac8-d202-4df1-bda2-08f36c223a89" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055328Z:24cc2ac8-d202-4df1-bda2-08f36c223a89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8D385E79ED6446DAE3A0BA4544E9BDE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47EE45C697924F188774353BAA757073 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:27Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6461,12 +6295,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "06d6744c-6082-40e2-a472-464257fb9a4e" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "a9d2a549-d412-427d-b475-3c7f50d7d65a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6477,41 +6311,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "62d27942-946b-4067-b4bc-305389a0ad1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb027495-57d0-47ef-b748-2edb163d0fab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "e20ef233-7010-4089-82ff-c5a5c6bab6cf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010421Z:e20ef233-7010-4089-82ff-c5a5c6bab6cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "fe6d2549-c1db-43a6-927b-fe77b005b875" ], + "x-ms-correlation-request-id": [ "fe6d2549-c1db-43a6-927b-fe77b005b875" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055328Z:fe6d2549-c1db-43a6-927b-fe77b005b875" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E39075A6D0BB4C39B9DB866730911A8A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91E8FE306F8F4F9B906AB3A4E99A1E67 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:28Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "8241" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "285" ], - "x-ms-client-request-id": [ "82a9d3e3-18c6-4d0e-ab0c-84f6e6754030" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "1a8b16d6-2f37-4a84-a011-fb28a4487e23" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6523,40 +6357,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83eab083-c5e8-4c82-ad0f-3224c03daf42" ], + "x-ms-request-id": [ "35e1cf2f-e211-48a4-9a9c-c23c7fd5f523" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "56044663-44d2-43d6-978e-85e99702c6b5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010422Z:56044663-44d2-43d6-978e-85e99702c6b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "74b8101f-868b-4bc1-b771-22d3410abae9" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055329Z:74b8101f-868b-4bc1-b771-22d3410abae9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C641CD87B5243CAAE356CD221A96B80 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEFF86DD87E945D99DD5056438E06181 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:28Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "286" ], - "x-ms-client-request-id": [ "69e6ed1c-8c45-451e-9205-a7258fea1958" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "696ad74e-454f-43fb-a3b8-e2cc5ae7fbc6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6568,40 +6402,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "422f4670-709c-46fd-a7ce-20098b2bc138" ], + "x-ms-request-id": [ "6674cbbd-17ce-488c-ad81-2e14417b6025" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c4ca1493-2c5f-45d6-93f7-0ce0a8301b1e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010422Z:c4ca1493-2c5f-45d6-93f7-0ce0a8301b1e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "545f9d24-b900-482e-8ee5-52ccfffc5b69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:545f9d24-b900-482e-8ee5-52ccfffc5b69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6483085C70D441EABA2A98BCF9767E6F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85E782E5C52944ED8257B28070480A75 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "287" ], - "x-ms-client-request-id": [ "76bd5d75-b868-45a0-9441-c9c3d89e18af" ], + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "4c34e72e-8eb2-4201-8153-4035e7a15b75" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "8a5b886e-29dd-482c-8b86-becb53e99e2c" ], + "x-ms-correlation-request-id": [ "8a5b886e-29dd-482c-8b86-becb53e99e2c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:8a5b886e-29dd-482c-8b86-becb53e99e2c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 654AF21DD34049B887B54B2DA52585B2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "245" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "285" ], + "x-ms-client-request-id": [ "34f02c19-844a-4e65-8aed-e2c6f5155e52" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6613,40 +6489,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fcdbd0b-55a3-472b-a75e-8680a4b452d1" ], + "x-ms-request-id": [ "f8828f98-df70-4948-9a16-4beedd78690f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "bdd87ef9-dcfa-4351-8ed3-5062e43df818" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010423Z:bdd87ef9-dcfa-4351-8ed3-5062e43df818" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5d161a3b-6993-44d2-adce-034036821ac4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:5d161a3b-6993-44d2-adce-034036821ac4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2B168274D9C4E2BAC34FE586420F65B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8029FD733BBB4B8CB5ACB478B08870ED Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "4bc4b460-3b0b-45c5-844c-2961ea3511c7" ], + "x-ms-unique-id": [ "286" ], + "x-ms-client-request-id": [ "d99d9472-eee2-4ffe-9839-7345954ed65f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6658,40 +6534,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "035370f9-aa72-4765-bae1-7589fc36d5e6" ], + "x-ms-request-id": [ "686ef0c6-6b7e-4e6d-8004-d70c858fbdc1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "73eba5d8-1434-41f7-b3d7-33209f3add5b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010423Z:73eba5d8-1434-41f7-b3d7-33209f3add5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e856f1e2-1d87-43f2-8314-8785070290bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:e856f1e2-1d87-43f2-8314-8785070290bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBBA64EE4EAB4439BF7D56383F989C36 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F43A3665E5E342FFB21E7D0F8E0A6B1B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/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": [ "289" ], - "x-ms-client-request-id": [ "956d6b98-9225-445f-aecc-f72b8bbb3dd8" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "30a2a278-3d1d-42df-bfc1-901f9dde992d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6702,39 +6578,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2ea611fd-9f73-468d-9686-c539f1ad1fa6" ], + "x-ms-original-request-ids": [ "68549883-80a3-411b-974c-d16d8c4dc180" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "6ea8b407-a025-4c79-8c21-7d30d83dc914" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010423Z:6ea8b407-a025-4c79-8c21-7d30d83dc914" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "27192dfd-c031-4e58-8117-94755e16a38a" ], + "x-ms-correlation-request-id": [ "27192dfd-c031-4e58-8117-94755e16a38a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055330Z:27192dfd-c031-4e58-8117-94755e16a38a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5AFB1322B4194ACAAA2929A9D4E10E79 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6EB965F8E3C47C98DB6C949E81E1001 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "445f79b5-ca85-4a1d-be6c-5b360eac92eb" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "23a5b772-cfc2-480d-a3b6-9cec1a8dc0b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6745,37 +6622,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3407e38d-bf88-4206-9a4c-cba508d921b7" ], + "x-ms-request-id": [ "c46052af-9c8a-4f20-b058-4799f14f20d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "b463a59c-38bc-4f65-815e-fb7cd9b23ddd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010423Z:b463a59c-38bc-4f65-815e-fb7cd9b23ddd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b347a4e6-b9b7-4982-80b9-5e0a29c738f1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f1e0a778-4d91-4e46-9c30-3975197b5650" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055330Z:f1e0a778-4d91-4e46-9c30-3975197b5650" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F49653FA87834173968579D1D0A73755 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 807CD29B38B741FF9B793B456AC61F77 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:53:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+9": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1651" ] + "Content-Length": [ "1655" ] } }, "Response": { @@ -6783,43 +6660,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC376F6A337E0\"" ], + "ETag": [ "\"1DC38E10BD7EE90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e801d651-c046-4ef5-8237-a41c44e1dcd6" ], + "x-ms-request-id": [ "c67bed99-0f09-42a5-8a01-ef87c1621f8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "f5751e0e-43af-4853-a456-3d3a7e2cf4e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010453Z:f5751e0e-43af-4853-a456-3d3a7e2cf4e4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af48fa00-2cfe-49af-a00d-cf16595b903d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "bc3e04f1-2a32-47a5-b6d8-078042298c37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055414Z:bc3e04f1-2a32-47a5-b6d8-078042298c37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2062D85875C741B0B2EFC1FA3598D627 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:04:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:04:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B65228887FC5465095E3E3CA5C3911B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:04:26.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:53:32.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+10": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "a1ed0f15-8841-4407-82cc-ea94c3cbc8ca" ], + "x-ms-unique-id": [ "290" ], + "x-ms-client-request-id": [ "2e1c0b47-f07e-4638-96b9-72f2adb81503" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -6829,42 +6706,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377062489B5\"" ], + "ETag": [ "\"1DC38E124468270\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aaa0568e-e8be-45cf-b63c-593d1ec9e482" ], + "x-ms-request-id": [ "34b67080-3551-4df9-8934-b2f9a34e5f1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "6be803f3-3df2-4bbb-b2ae-5dcce8943eba" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010523Z:6be803f3-3df2-4bbb-b2ae-5dcce8943eba" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3affa0f5-ecea-413b-b45d-3857c1452282" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055445Z:3affa0f5-ecea-413b-b45d-3857c1452282" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C23163E00E444019B860D1DC511D579 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F8AA2B801C24125B49D9CAF94F90326 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:04:53.2433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+11": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "bdfaff66-31b3-4a64-b2ce-c5718160c27f" ], + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "2182497b-0652-40ae-b576-391196a1f449" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6875,42 +6752,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377062489B5\"" ], + "ETag": [ "\"1DC38E124468270\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0de0c0eb-1dcb-46c2-b313-c94e3ac0340e" ], + "x-ms-request-id": [ "160d3930-ddff-47a3-a544-76051dc366ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "15d02b67-22d9-4a70-a4d2-e48ba26bb415" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010524Z:15d02b67-22d9-4a70-a4d2-e48ba26bb415" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5ba7c4bd-751e-439a-8bb0-ed01a3bb674b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:5ba7c4bd-751e-439a-8bb0-ed01a3bb674b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FDCF4B2836E444AB6F4D65006F9104F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6100363FE0074F7A829C41D9A5B0EC62 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:45Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:04:53.2433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+12": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "0fbf4ec0-95c0-403e-92c4-ee6d4c81a120" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "79642951-22b7-48cc-9b0f-e7290536580e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6922,40 +6799,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9854a48-5190-4388-987a-701fd36bc117" ], + "x-ms-request-id": [ "8409f437-a8da-4090-bde7-bc6fbc7ca505" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "0c855baf-83e6-4138-a42a-5becea207c2b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010524Z:0c855baf-83e6-4138-a42a-5becea207c2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8130acfc-19d6-4b7c-aaca-6bae7bc0a296" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1ec97885-b1e1-4033-8373-9e2d5e68ca9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:1ec97885-b1e1-4033-8373-9e2d5e68ca9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDF8234AE3AC4B64BA8C1C8D68D0E879 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00650CD768FD40AD9735C31074EFE84E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1111" ], + "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "baf7dbb7-374c-4aec-b0c3-2b2dfa4e7c69" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "09848217-14d3-4b2d-a90c-6374a2985aaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6967,40 +6844,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3fcd186-d5eb-45c6-958a-8d9a13c177eb" ], + "x-ms-request-id": [ "7ad8e730-b354-4918-8572-5acf69a433f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "1c05fcd3-0eb7-4a8c-9b8a-4fd008d46893" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010524Z:1c05fcd3-0eb7-4a8c-9b8a-4fd008d46893" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/473425db-030c-462d-9ea6-878c6872a42c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3effefe6-1e65-4ae2-8a10-8362e50248bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:3effefe6-1e65-4ae2-8a10-8362e50248bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73E565E156F34BAE8F8B104D8B979719 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8AE4229A2374AB693C055984449E6F9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "5531bb47-9eb6-49ee-a620-7033d2ae53bc" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "a05489b3-313e-43dd-a917-3b2ad9da5a02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7012,40 +6890,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6d3d848-0649-441e-9fb0-d0d8e345d413" ], + "x-ms-request-id": [ "6edb3b8d-134b-4810-9d3c-bd575815fbc4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "cac8fa59-8b03-435f-acab-ebde26efe01b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010525Z:cac8fa59-8b03-435f-acab-ebde26efe01b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3353f871-6189-4ed4-97be-58ff35edb936" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "98fc7025-80ff-4106-b520-51386dcdf7e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:98fc7025-80ff-4106-b520-51386dcdf7e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41224356436042CFA691743A512C29AE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06AF08A93138462292A9BBAC729F8252 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1111" ], + "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "10a67d95-d658-4405-9be3-a6c3efe0e8d0" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "6701c2de-53e5-4cab-b9ad-f1cb9e90d6ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7056,42 +6934,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377062489B5\"" ], + "ETag": [ "\"1DC38E124468270\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f59ccfc1-5ccd-46da-ad59-40a59a2a3a25" ], + "x-ms-request-id": [ "787247b9-b1ff-47d3-802c-86a9e7040f79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "b00efab3-ba52-4f8c-b83d-c98a65096672" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010525Z:b00efab3-ba52-4f8c-b83d-c98a65096672" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "abaff43d-696e-4385-ba5a-831b473ebf02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:abaff43d-696e-4385-ba5a-831b473ebf02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F59E8458E4244C7BBB15C1CFAD29A43F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0353DFAAD82445893F81D334B9A2949 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:04:53.2433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "0686eaa5-9ee5-4d3f-b6d7-dcf7968f3023" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "f9c0ee37-7dd8-4547-8323-58b10b4081aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7103,40 +6981,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9b5e65f-88dd-4d07-aaa0-a8f6c50372af" ], + "x-ms-request-id": [ "a05ec33e-b661-4b02-8fcb-3675b6c5a762" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "a3678093-1e75-4cce-b373-9e5c5f5d5b39" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010525Z:a3678093-1e75-4cce-b373-9e5c5f5d5b39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8948abc9-6756-4fac-9c7e-8560583f84f6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e722cdfe-159b-43c4-866e-38bacdb646da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:e722cdfe-159b-43c4-866e-38bacdb646da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B79772D12B7405B8300B1C3C74AA91A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0099B39380FE4E8D9F77B628B7A8A3E0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1111" ], + "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "d186579e-a12c-4f62-a4d5-44d9c5fef22e" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "9eae290d-3709-4e44-b8e9-4766d95297c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7148,40 +7026,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3958120c-8a0a-43de-b3d0-87a513319ed6" ], + "x-ms-request-id": [ "5a78ac68-9046-4519-b406-b42f544ebe5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0317b6db-d35e-4568-b8af-1ea918b2592d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010525Z:0317b6db-d35e-4568-b8af-1ea918b2592d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ec754d0-3099-46c0-92aa-fe20f6db6626" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e27cebb2-9481-4378-9afe-4c818b746716" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:e27cebb2-9481-4378-9afe-4c818b746716" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04B47F3F649F4EB69F941BD8BB534661 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCB124A6BDEC45158890C4F7A86CD14E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "25fb3fb4-5e8e-4c62-b633-215a114e7472" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "b97a8f91-8dd8-48d4-97a2-e9a024045565" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7192,19 +7071,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377062489B5\"" ], + "ETag": [ "\"1DC38E124468270\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "388a6f3f-15c8-4d9b-b524-6a6dbe019f93" ], + "x-ms-request-id": [ "5681caa7-1d28-44d5-88c7-6efba057f8bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "e89c35ca-5d12-4ac9-9101-9f341761124c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010537Z:e89c35ca-5d12-4ac9-9101-9f341761124c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40ce361d-8ebc-44dd-a981-d657995df7b0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "13f4b2c1-9378-4275-8219-33e0473177ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055456Z:13f4b2c1-9378-4275-8219-33e0473177ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 669BF570936A4C89962A4AD3DB33E953 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C12F8E773682448BBA26A181BC73790B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:48Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7214,17 +7094,17 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$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 v4 Linux Java 21 Function App hosted in a Consumption plan.+$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-DotNet-fzbnp5j12m\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] + "Content-Length": [ "62" ] } }, "Response": { @@ -7233,17 +7113,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f476c4a-10aa-4197-86c7-19fc82ab264d" ], + "x-ms-request-id": [ "973175af-ac61-431c-ae2e-884ac915f078" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "f4decd2e-7fd9-4ea3-a3f2-9677a8e70f29" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010538Z:f4decd2e-7fd9-4ea3-a3f2-9677a8e70f29" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d202f957-c63c-4701-8a65-95a0b460d8b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d916e53d-f0e6-457b-86e0-20a9688e1711" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055456Z:d916e53d-f0e6-457b-86e0-20a9688e1711" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D64FE4CC01D140D79B7876997DB068FD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79EF2E923CD148F7A8771F1523B1B34A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:56Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7254,19 +7135,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { + "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/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "3ae6b481-a79c-46ab-b4d4-17cde3c5d365" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "27158e65-0d40-4587-a4ff-de02372d909e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7278,40 +7159,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb2fac88-edb2-41ee-a580-fca9475507f0" ], + "x-ms-request-id": [ "e2d5f814-9c50-4a64-9d74-f212516a1578" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "11911cbc-c405-4b7c-b046-43676a5f7226" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010539Z:11911cbc-c405-4b7c-b046-43676a5f7226" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6d54facb-1e84-4f85-ba5f-1735b497d3c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2b18c17c-d111-49b0-b223-809ccd769476" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055456Z:2b18c17c-d111-49b0-b223-809ccd769476" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E560BE80830E43C7AC66A0C57D1B8B43 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FE29046D3E042159B251D8CBD899B36 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:56Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { "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": [ "303" ], - "x-ms-client-request-id": [ "f271c3b8-7072-4c34-9d18-80c7f9b0aa4b" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "2f8e4a70-b58a-4142-bf3a-fd4e7d99701b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7322,39 +7204,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "75b97c44-6fe2-4efd-bc79-3d6ae60ec468" ], + "x-ms-original-request-ids": [ "072da312-2398-4409-9140-f469d71f3745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "56b9b12b-0636-44ed-b809-e1e740b8ab31" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010539Z:56b9b12b-0636-44ed-b809-e1e740b8ab31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], + "x-ms-correlation-request-id": [ "eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055457Z:eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FEC9842B343E4ED19BC645F61FB721FD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10A1C2741EF848EB8FCE021F22A48EA9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "270c0e9f-fb43-49db-9dca-58e588a02f38" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "141c3ae2-5581-4689-99f4-79ce417b685f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7365,30 +7248,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "99093d04-c702-46df-81e8-17a4085577e2" ], + "x-ms-request-id": [ "4a537779-7910-4d19-9e25-61f35a4ccb97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "9b2b596a-2192-422a-9578-8c01f4077d40" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010539Z:9b2b596a-2192-422a-9578-8c01f4077d40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/29b36823-6f3b-48ec-8ec1-68f1cf3b6472" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "93ac2dba-2e44-4100-8ab0-bc21208b33cf" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055457Z:93ac2dba-2e44-4100-8ab0-bc21208b33cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B5BB7188B334B64A211770D70E953AD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E89C06025DD44889B69D2F629B98FF28 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:54:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Insights/components/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?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-h8frn2/providers/Microsoft.Insights/components/Functions-DotNet-fzbnp5j12m?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?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": { @@ -7408,35 +7291,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "3e862bfd-3275-4a41-afea-b5898478daab" ], - "x-ms-correlation-request-id": [ "3e862bfd-3275-4a41-afea-b5898478daab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010542Z:3e862bfd-3275-4a41-afea-b5898478daab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50f7541b-b426-4bd6-a59f-4f001edb3dcb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "81641fd8-f0c4-4fea-aacb-77093ebef747" ], + "x-ms-correlation-request-id": [ "81641fd8-f0c4-4fea-aacb-77093ebef747" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055505Z:81641fd8-f0c4-4fea-aacb-77093ebef747" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 29B2A9A4FC4F434EB0D25BDA5A7A30AA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:05:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EA713E8BC8A456C8DE40D404F8E5697 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1381" ], + "Content-Length": [ "1625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-DotNet-fzbnp5j12m\",\r\n \"name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800d15f-0000-0300-0000-6674d1e30000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"AppId\": \"f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"acfe5cbd-9c18-4a5c-8296-28f0544156cf\",\r\n \"ConnectionString\": \"InstrumentationKey=acfe5cbd-9c18-4a5c-8296-28f0544156cf;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"CreationDate\": \"2024-06-21T01:03:11.9534357+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69005ff7-0000-0300-0000-68e74e390000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-n63k2zl8s1\",\r\n \"AppId\": \"edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"be43f23c-478e-4712-ad8c-52104fbcde0f\",\r\n \"ConnectionString\": \"InstrumentationKey=be43f23c-478e-4712-ad8c-52104fbcde0f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\r\n \"Name\": \"Functions-Java-n63k2zl8s1\",\r\n \"CreationDate\": \"2025-10-09T05:54:58.184581+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-n63k2zl8s1_edaec8cc-9f4d-4da8-9bac-b10c8d42651f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-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 DotNet 6 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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|6.0\",\r\n \"appSettings\": [\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-fzbnp5j12m\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"\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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-n63k2zl8s1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"be43f23c-478e-4712-ad8c-52104fbcde0f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1689" ] + "Content-Length": [ "1683" ] } }, "Response": { @@ -7444,43 +7328,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37725473880\"" ], + "ETag": [ "\"1DC38E144A91140\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e88e6e9-192d-4f97-81a4-61542f1fc38d" ], + "x-ms-request-id": [ "ae4f18e6-4254-429e-b6c8-1fda749adcc4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "01ba5e7d-f68d-4ce6-a348-de98023cff86" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010605Z:01ba5e7d-f68d-4ce6-a348-de98023cff86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2c6a521-e1d6-43c9-a34f-70a16fa3f4f3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "eb7b6868-4c54-4935-b71f-3350816514f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055528Z:eb7b6868-4c54-4935-b71f-3350816514f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 844423B00BD245D68BF64129CA8F45F2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:05:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1A9BA714B8E4B989765603CF20DE6E2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:05Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7332" ], + "Content-Length": [ "8309" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:05:44.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:07.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "4aa34d62-1492-42a0-838b-1005e90161bd" ], + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "110cc0b8-397b-4203-bfe8-164ef3fec6d5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -7490,42 +7374,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "ETag": [ "\"1DC38E150183635\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3677d58-39e9-4eb4-b03f-91f6a0087c56" ], + "x-ms-request-id": [ "67956cae-2eee-469d-afaa-b056e836e3e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "ab397eae-fa74-4160-81a7-4b570d5a26d7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010635Z:ab397eae-fa74-4160-81a7-4b570d5a26d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a2568a40-9040-447f-923b-c35e37287a9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055558Z:a2568a40-9040-447f-923b-c35e37287a9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F1141BC352C4F1A88530CE46F483D3D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 219A74FE98214D90A59863D50C649DAE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:58Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8190" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:06:05.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "a0be67eb-7adf-41cd-97cb-72b87496adff" ], + "x-ms-unique-id": [ "306" ], + "x-ms-client-request-id": [ "cb40f226-7c26-4e5a-b46a-c3a7ada9db0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7536,42 +7420,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "ETag": [ "\"1DC38E150183635\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c76c9e0e-f389-4050-9edb-4d62fbd6ed22" ], + "x-ms-request-id": [ "dd00e811-0d2d-447a-a038-177636ffda6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "d4f8cc65-64e6-41d9-ba9b-aca577bcb481" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010636Z:d4f8cc65-64e6-41d9-ba9b-aca577bcb481" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aa479af8-0119-4471-95c9-bc0b9d000600" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:aa479af8-0119-4471-95c9-bc0b9d000600" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7ED6A6181844579B5E0472276F1A5FB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E728308EB5CC4558BC44734F4417355E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8190" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:06:05.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "5ce99a99-280a-47ec-9d62-1ca46c8ba1e4" ], + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "7e0c5f4e-4927-4991-a580-3b605f61fda0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7583,40 +7467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f956bf7f-1355-469b-9a6e-0b4288905342" ], + "x-ms-request-id": [ "00804885-60a3-4b86-849f-6160285ce2fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "c9cec872-1147-4813-afd8-200c5d09d32d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010636Z:c9cec872-1147-4813-afd8-200c5d09d32d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/000326fb-1e7a-4ed8-99fe-da3650a9b4f6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "97467c7f-86d7-4370-8fab-04371b40961d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:97467c7f-86d7-4370-8fab-04371b40961d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34EF817ACF914F5DB48CD0CAFB51325B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A77505C904A475CA40CB931BB53BD49 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-fzbnp5j12m\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "88c7756c-bda9-4b13-9521-37de868bdf8c" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "a9640add-2685-478d-85af-1babd9bf4da8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7628,40 +7512,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db4446d2-21c9-487a-b8ec-f20216a90666" ], + "x-ms-request-id": [ "e0c5c0a8-e96c-40e7-a095-8b2d044cecfc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "d86d5576-e4c1-4f1f-a23a-79c5db449bb7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010636Z:d86d5576-e4c1-4f1f-a23a-79c5db449bb7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/033c8a7d-1541-4f52-84c2-2829e7610750" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8f809636-13b6-43c8-bdc8-e6beeeb58b15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:8f809636-13b6-43c8-bdc8-e6beeeb58b15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18912DAE687B4051A45AD8E5186FE6C0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EADD6374BA764F8486689C998728C50C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], + "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4076" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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 DotNet 6 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "a7e98e6e-76bf-43eb-9ea2-c1b9f7ee87fe" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "beb7f1cf-ac93-409a-8112-396a0cb32078" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7673,40 +7558,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cdac969-db8e-408a-90ca-971ed5e09ca0" ], + "x-ms-request-id": [ "e33ee970-fc10-4605-ab58-731bd566e2a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "03a7b332-ed14-4e84-9d3f-f3055a2e9386" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010636Z:03a7b332-ed14-4e84-9d3f-f3055a2e9386" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5abdbe3b-cf3c-4ec5-9229-c3ab711eb547" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ad3f5424-2af3-4a3a-b890-645c78276013" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:ad3f5424-2af3-4a3a-b890-645c78276013" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EE29DA1AB03470AA602CD16618C05BC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E41B39CB75CB40A6816DFB000FB64FA9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-fzbnp5j12m\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "2d52177a-5dac-4ba4-bb26-a35de69d3a63" ], + "x-ms-unique-id": [ "310" ], + "x-ms-client-request-id": [ "37ec118b-bca7-415d-bcba-b2ff7218d637" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7717,42 +7602,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "ETag": [ "\"1DC38E150183635\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b6049f5-03cb-43cd-a727-e03e5dd759de" ], + "x-ms-request-id": [ "7f88c1db-736a-4101-893b-619adefc9b60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "e33d6a87-3067-4520-9b59-21080922a30f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010637Z:e33d6a87-3067-4520-9b59-21080922a30f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bb400d5b-1a97-4750-80fc-683268e48288" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:bb400d5b-1a97-4750-80fc-683268e48288" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 351579F8E3C34724B98921AA757F1F34 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F19696381CB4D7EB286B0FC7C2AE6B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7145" ], + "Content-Length": [ "8190" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-fzbnp5j12m\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-DotNet-fzbnp5j12m\",\"repositorySiteName\":\"Functions-DotNet-fzbnp5j12m\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"functions-dotnet-fzbnp5j12m.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-fzbnp5j12m.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-fzbnp5j12m.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:06:05.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-fzbnp5j12m\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-DotNet-fzbnp5j12m\\\\$Functions-DotNet-fzbnp5j12m\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-dotnet-fzbnp5j12m.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "0d92633b-5a01-4442-a761-4d281f0ec520" ], + "x-ms-unique-id": [ "311" ], + "x-ms-client-request-id": [ "9ddb2b12-46c5-4e7d-acca-033d0fe94042" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7764,40 +7649,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61d0bf90-e31e-4364-81af-4b151c0847bb" ], + "x-ms-request-id": [ "431b5dc9-82cd-4fc2-92a9-4a76bf6826fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "2ff264f4-510e-4f25-ad9a-52ed3e81b655" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010637Z:2ff264f4-510e-4f25-ad9a-52ed3e81b655" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a23bcb4-3f0c-437e-a509-26380d72412f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c7c61a83-9b3e-4a70-bf5d-b52e68ed177f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:c7c61a83-9b3e-4a70-bf5d-b52e68ed177f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF5BE3577EDA4FF59F883F39380E1883 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8C08A4D75DB414C990CFB974EF2BA85 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-fzbnp5j12m\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"acfe5cbd-9c18-4a5c-8296-28f0544156cf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux DotNet 6 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "ae829b3f-2c6f-43ae-adc2-316a09243e1d" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "965d81cf-8da2-440d-b9e1-fe93433010cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7809,40 +7694,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86318be3-3742-42cd-b713-02e2a5a1b10c" ], + "x-ms-request-id": [ "99dfd80d-eae1-4374-9eec-dd2211cad907" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "ab76d862-117d-40b7-ac8a-d72917dd81b2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010637Z:ab76d862-117d-40b7-ac8a-d72917dd81b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5f688bd-7ad3-4007-9bae-0128fa714e32" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b678476f-919c-47d8-b6f0-7448886c9ee3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055601Z:b678476f-919c-47d8-b6f0-7448886c9ee3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CFED5E4F70434F31AE1B38630BBAF278 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB15CEF84BC64EB4B3A19385B8C4E700 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4076" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m/config/web\",\"name\":\"Functions-DotNet-fzbnp5j12m\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.0\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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 DotNet 6 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { + "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-DotNet-fzbnp5j12m?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "4bb93a94-eaf0-45d6-a2ea-10ed957df7a4" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "32d0a966-aad2-4c66-b5c5-3ae37bd52167" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7853,19 +7739,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37730FC8E35\"" ], + "ETag": [ "\"1DC38E150183635\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6c24f3d-07c8-4712-b810-7baa47f3afbd" ], + "x-ms-request-id": [ "c0b5ad90-7320-4f12-b5fa-635c7a397cd6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "97142fd5-476e-4ba9-bb05-d1f61f4f9c6b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010648Z:97142fd5-476e-4ba9-bb05-d1f61f4f9c6b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5ef108c1-bcc5-489b-8683-ce75684b036b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "81689f4b-0b29-462e-9850-9232922d6d5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055609Z:81689f4b-0b29-462e-9850-9232922d6d5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF31CC3AA3294FD9BC5F879C5CD7804F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1042B0603F7543D38FAE90575CDE61D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:01Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7875,11 +7762,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$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 v4 Linux Node 22 Function App hosted in a Consumption plan.+$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-Java-k0vbul5y8x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-5ys83coe4k\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7894,17 +7781,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd6d08c2-5baf-43a2-94c2-2c8e6727f159" ], + "x-ms-request-id": [ "65eb8dfb-7e59-433e-97bf-85a66b850371" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f4e5691f-2388-4a96-99a0-83ddd28e0b6b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010648Z:f4e5691f-2388-4a96-99a0-83ddd28e0b6b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ebe1978-8601-4d83-b852-5cb282704376" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "df67b6f3-2c57-4d40-aeed-0293466485e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055609Z:df67b6f3-2c57-4d40-aeed-0293466485e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 925404F262504A55A561F0561F00D80A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F680858B730459FA61B8F377B1BB968 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:09Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7915,19 +7803,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { + "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/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "c436a67f-6af2-402c-a8ad-9f983e0d3755" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "ece58613-c13b-47c8-8cba-19e7904720fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7939,40 +7827,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be1f52ab-f6e2-4545-b740-eb074226a735" ], + "x-ms-request-id": [ "ad5f92c1-ec30-41d3-8c97-ea53167044b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "3a331ae3-8c89-4e3b-b032-52071dd6c523" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010650Z:3a331ae3-8c89-4e3b-b032-52071dd6c523" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fe3aec55-b3bd-4478-9e47-47c300a5a0b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a53f75b9-4047-4092-ac14-fc53064ce578" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:a53f75b9-4047-4092-ac14-fc53064ce578" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A6DB3641AA04C548A1F0A0D26922106 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8764CC4CD6004650B840565D905AFA03 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { "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": [ "318" ], - "x-ms-client-request-id": [ "03701a62-06d1-4b75-a1ec-bf14303cc824" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "b25cfccd-d414-4640-bdd7-7e1cdf7b26d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7983,39 +7872,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "205eed4b-8f88-4c70-88c2-ee38a5462864" ], + "x-ms-original-request-ids": [ "6e9c997e-8d0f-4902-af4e-04e6a83acb6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "52fc1d58-396c-47bd-9a07-62f3621abccb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010650Z:52fc1d58-396c-47bd-9a07-62f3621abccb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "dabf55ca-18c9-4024-a769-397de6c10617" ], + "x-ms-correlation-request-id": [ "dabf55ca-18c9-4024-a769-397de6c10617" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:dabf55ca-18c9-4024-a769-397de6c10617" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 479AD68E47B0458AB6434E36CDA499A5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A4F79E990E2473BA2A60FDA5AA6FECF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "319" ], - "x-ms-client-request-id": [ "1e194a8b-3ebc-4d09-abec-428a703bab2f" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "51787db1-2a0d-42bf-a0e8-135a82e543a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8026,30 +7916,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d7b40492-20ba-4749-ab59-d09b3a5a07a3" ], + "x-ms-request-id": [ "071d2877-15f8-48b9-b4ca-b33b28836332" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "8ea26e31-1d85-48af-8b94-c62d72d9fc2d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010651Z:8ea26e31-1d85-48af-8b94-c62d72d9fc2d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9cf0b4ea-4fe1-4162-bdbb-3b686ab015d3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2601cefd-9300-4e91-ac8a-eb84d4851f07" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:2601cefd-9300-4e91-ac8a-eb84d4851f07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E74B320FE01B46868867DF5B1B9D2153 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A85A174B1F14393B3A9B441A136AD34 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Insights/components/Functions-Java-k0vbul5y8x?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-pxiydk/providers/Microsoft.Insights/components/Functions-Node-5ys83coe4k?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-h8frn2/providers/Microsoft.Insights/components/Functions-Java-k0vbul5y8x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-Node-5ys83coe4k?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": { @@ -8069,29 +7959,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "bab0853c-10b3-4011-ab32-800a91fef01a" ], - "x-ms-correlation-request-id": [ "bab0853c-10b3-4011-ab32-800a91fef01a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010652Z:bab0853c-10b3-4011-ab32-800a91fef01a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/efd648de-f3fe-419b-902c-b602de580291" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "225b7de0-4c95-456d-8e0b-12d93914ed86" ], + "x-ms-correlation-request-id": [ "225b7de0-4c95-456d-8e0b-12d93914ed86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055619Z:225b7de0-4c95-456d-8e0b-12d93914ed86" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE4EE731A7D24A4991DAFD000117ABA8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:06:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06A0C8DAFB9444B0A10E1CD299E72F0C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1373" ], + "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Java-k0vbul5y8x\",\r\n \"name\": \"Functions-Java-k0vbul5y8x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e160-0000-0300-0000-6674d22c0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-k0vbul5y8x\",\r\n \"AppId\": \"e9ef6317-e5cc-459c-b68e-879c0e2d237c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\",\r\n \"ConnectionString\": \"InstrumentationKey=8a6d9fd4-69c8-4cc5-ae81-f1490938a438;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ef6317-e5cc-459c-b68e-879c0e2d237c\",\r\n \"Name\": \"Functions-Java-k0vbul5y8x\",\r\n \"CreationDate\": \"2024-06-21T01:06:52.3100553+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"690056fa-0000-0300-0000-68e74e830000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Node-5ys83coe4k\",\r\n \"name\": \"Functions-Node-5ys83coe4k\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-5ys83coe4k\",\r\n \"AppId\": \"1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8779f78e-5d73-455c-85c7-7e48c434f08c\",\r\n \"ConnectionString\": \"InstrumentationKey=8779f78e-5d73-455c-85c7-7e48c434f08c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\r\n \"Name\": \"Functions-Node-5ys83coe4k\",\r\n \"CreationDate\": \"2025-10-09T05:56:11.3214483+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-5ys83coe4k_1b7ffc5b-2de3-4ad1-b715-c59b306935a6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-5ys83coe4k-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 17 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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|17\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-k0vbul5y8x\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\"\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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-5ys83coe4k\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"8779f78e-5d73-455c-85c7-7e48c434f08c\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8105,43 +7996,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3774FA42695\"" ], + "ETag": [ "\"1DC38E1706B8FCB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "570e889f-3e2d-4c8d-ad37-5b9d34321303" ], + "x-ms-request-id": [ "c92194b3-661c-4b35-b68d-be1537e58a4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "66c596f4-8853-48fa-957b-d24c9a20e8d1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010716Z:66c596f4-8853-48fa-957b-d24c9a20e8d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1987e44-5291-49a4-882c-75649b06c188" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "562389f0-c764-43b2-bf0e-a0244c3db66d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055641Z:562389f0-c764-43b2-bf0e-a0244c3db66d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B848CD9C11E4AFA932F8337455AD2A6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:06:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B102D1483F8E423EA80B5BA7218C0EFE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:19Z" ], + "Date": [ "Thu, 09 Oct 2025 05:56:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7306" ], + "Content-Length": [ "8310" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|17\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-k0vbul5y8x.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-k0vbul5y8x.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:06:55.9366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-java-k0vbul5y8x.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:21.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "9decb4d8-b393-4710-a5b8-d7594353fff4" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "e788d309-33b9-4419-bbd2-bbf8de22d824" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -8151,42 +8042,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], + "ETag": [ "\"1DC38E17BD92E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e739376a-8889-4063-b054-612d3eb85906" ], + "x-ms-request-id": [ "e3b0d8c3-d0ad-4210-8dfd-d1be845c5f62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "075ea93c-858a-4fed-b0de-892311352315" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010746Z:075ea93c-858a-4fed-b0de-892311352315" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3f363a2c-63e5-4f39-ae14-ef88f72cb8dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055712Z:3f363a2c-63e5-4f39-ae14-ef88f72cb8dd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 927AAA218F4345DAB7B87D024DC02EC8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C2FFF050C794BD589BF7275B68F3EF8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:11Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], + "Content-Length": [ "8185" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|17\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-k0vbul5y8x.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-k0vbul5y8x.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:07:15.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|17\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "649873bb-3dc9-4544-9beb-6c9ff844ce26" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "59a2ebba-a1e3-4672-a69d-d5cd445b6456" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8197,42 +8088,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], + "ETag": [ "\"1DC38E17BD92E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5207420-5a7f-4fec-9594-adf05d98a0bc" ], + "x-ms-request-id": [ "6a755b50-c748-45d5-bd7b-550964373ad8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "a3231e69-cd0c-411c-854d-e5ea4c2c43d0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010746Z:a3231e69-cd0c-411c-854d-e5ea4c2c43d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "896fe30e-1e2b-4271-98ad-1a3cab599a37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055712Z:896fe30e-1e2b-4271-98ad-1a3cab599a37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A7F9E5A14324117B808F9284057DC87 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D17FA28D8AC4B1D82AAB646721CBF2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:12Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], + "Content-Length": [ "8185" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|17\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-k0vbul5y8x.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-k0vbul5y8x.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:07:15.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|17\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "cd80f271-a157-4e4b-b30b-051366657a5e" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "d9352d14-05c3-4969-bae0-c815e9c3a1ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8244,40 +8135,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "010c0e17-d747-45ab-95c3-abb5b5b3bbe8" ], + "x-ms-request-id": [ "a352ba0c-ee1b-4d11-8b96-c0c5b9cf9d92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "6a932d6e-3f7d-4d58-8f55-53f2ae865a9d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010747Z:6a932d6e-3f7d-4d58-8f55-53f2ae865a9d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3bd3e91-4271-413b-b616-81cd9c23696c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f0fb3897-2f8d-4645-820c-80d56a200eb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:f0fb3897-2f8d-4645-820c-80d56a200eb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBE7FCACF01C45D8BE117A2A37A50901 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85CFB773355C46D1A658172C437635B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:12Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "4adce969-91cb-41ed-8670-be7707a28641" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "be6c764f-5578-4618-8ca7-b2470d67e085" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8289,40 +8180,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3016b49e-b39c-4ab7-bbd3-de577e5088c8" ], + "x-ms-request-id": [ "cd330d37-4ffd-44f5-b391-5c14d7b053a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "eb6302ea-1c8d-456c-9dcf-40885fe8f5d9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010747Z:eb6302ea-1c8d-456c-9dcf-40885fe8f5d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4501dde-f7d8-42e1-8f86-05a7275c458a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e8b5c4c1-0c32-4e11-8f13-0ac8928aa7df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:e8b5c4c1-0c32-4e11-8f13-0ac8928aa7df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44838EEEB8A741FDA8BBC04FA1105966 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCD7617CECA24A769175C9C746E55A4A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites/config\",\"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|17\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites/config\",\"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 Java 17 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "0695d620-6399-493c-a733-5d82f2d2ebbf" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "8a3d8586-724f-436d-8aed-288305a23ec5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8334,40 +8226,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "beae533f-834e-4b5c-a4dd-7e5878e04d89" ], + "x-ms-request-id": [ "45ecd65d-a5f9-447b-bcfa-a678a0e47f3f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "d2c42e10-9c0e-41d0-b353-7545cfcbe560" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010747Z:d2c42e10-9c0e-41d0-b353-7545cfcbe560" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9f758fa-335d-40fd-8143-e72a30013b19" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4b2c1f7f-43a1-4c5f-a581-d9a6b7eed07b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:4b2c1f7f-43a1-4c5f-a581-d9a6b7eed07b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09CF8B573C514F3BB6DCFDCC9EB2679E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1C4548931974696A4E89593678DC283 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "2567364b-9bc7-4b46-8bb4-bf0bae277f8c" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "20808808-aaf1-4a6b-9e33-737efe9ad53c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8378,42 +8270,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], + "ETag": [ "\"1DC38E17BD92E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbfe0aed-059c-42e2-ae10-2a7935a96a4c" ], + "x-ms-request-id": [ "2d49c1a0-8995-4c31-a50f-bef3bfecd567" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "d5eca252-9b72-46f3-b5cc-a7c398e4e3b2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010748Z:d5eca252-9b72-46f3-b5cc-a7c398e4e3b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e6760a0f-0182-48fd-b717-54a519909f77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:e6760a0f-0182-48fd-b717-54a519909f77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EF2E2C2A3E54B2C9143631FEB37D47D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A16652C19B8F416D99DDC90697A8267A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7106" ], + "Content-Length": [ "8185" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|17\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-k0vbul5y8x.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-k0vbul5y8x.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:07:15.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|17\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "185d9203-846a-43b9-be09-112f2731076b" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "73802fa5-a167-463c-9f02-32ce653704f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8425,40 +8317,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "485efb93-a2d0-4f32-ae3e-2348d7171aab" ], + "x-ms-request-id": [ "a881a082-8e21-469c-b8e4-75f0df138d27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "3eebcdca-1a1d-4b64-9d79-7e44ddbe7c37" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010748Z:3eebcdca-1a1d-4b64-9d79-7e44ddbe7c37" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/475d53be-f254-4aac-963c-447e4d706015" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "71bf54e2-5300-416a-a4f6-f6f2a1b99f2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055714Z:71bf54e2-5300-416a-a4f6-f6f2a1b99f2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED9701FFC4134EA48FD36337DC418D8E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7A3FDB2B6FE436D9DB771F93F59CD5C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1218" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 17 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "329" ], - "x-ms-client-request-id": [ "9d700b06-568b-4717-a017-17da0a6a1175" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "b127e97f-1d4c-42ec-a4e2-13c50f8f3c34" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8470,40 +8362,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4881ba02-9ac5-48e7-b558-e042f0f2e068" ], + "x-ms-request-id": [ "945a01b7-c0a2-40fb-9c2c-d2d242ad2955" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "360c5df2-8c9b-46ee-9c6f-0215bfb7e371" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010748Z:360c5df2-8c9b-46ee-9c6f-0215bfb7e371" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/259b7f71-ef18-40a6-8412-4ebe10cdbbee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c5157cb-bf97-4c13-a9fe-66f511ec1ea5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055714Z:2c5157cb-bf97-4c13-a9fe-66f511ec1ea5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE60281812CC4026A875A6DC4A0D7021 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:07:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00F0971A9DA14936BD3A734087C84652 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:14Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4069" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites/config\",\"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|17\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites/config\",\"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 Java 17 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { + "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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "80460fe8-fc52-4613-9e14-b4fada10b4a5" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "3010b412-2dd5-4988-970c-9b8651c108f5" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8514,19 +8407,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3775B355F80\"" ], + "ETag": [ "\"1DC38E17BD92E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a22f87b3-f421-4b4c-874c-e65f9ef54736" ], + "x-ms-request-id": [ "ac751d34-e8a5-4be4-a80f-e40aa364d58c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "3efc374f-0276-46e2-a744-a15189707db3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010800Z:3efc374f-0276-46e2-a744-a15189707db3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11a5f574-7a2a-408b-a27b-3bd208e041aa" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "f9ce8d06-6304-4c23-9b87-82bff9fdc3e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055723Z:f9ce8d06-6304-4c23-9b87-82bff9fdc3e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F61888A0D9CF4A76AC4FA14FD6717401 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:07:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 961CDED48F844028A17876280E847AF5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:15Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8536,17 +8430,17 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$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 v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$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-Node-4fqxib7usc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -8555,17 +8449,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32034c36-fc6b-431f-bfe7-c14bb1bc0109" ], + "x-ms-request-id": [ "1649c44a-6a6f-4d80-8cd0-e4e8379202ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "1b2fb810-b1ba-4510-a9ae-dbe5c0610eed" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010800Z:1b2fb810-b1ba-4510-a9ae-dbe5c0610eed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4c7d2fa-3b19-4c21-b17f-e98fd8bae112" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "af9fa358-16f6-44b3-b849-f7ae9b8f4866" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055724Z:af9fa358-16f6-44b3-b849-f7ae9b8f4866" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0079717DECAD459A8106B4BFC04DDCF1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:00Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8817CA4112E44AED9EC1CFBEAAA6ACA6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8576,19 +8471,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "f6a7c02a-c15b-4e9c-8b99-ccd6be22d620" ], + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "1b960d02-2a8e-47ac-b8b4-cacd66509c4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8600,40 +8495,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f1648d7-d6ff-4be9-ab27-a80bd7f634f4" ], + "x-ms-request-id": [ "18c99763-a1f7-45e6-8f6a-8946379f77fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "b88b4c62-530b-4473-9001-be11cb0db918" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010801Z:b88b4c62-530b-4473-9001-be11cb0db918" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/561e0912-47e5-4f74-9009-03eef54f5e9f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2bc3e44f-89b7-4b29-a19e-d4a43b53382a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055724Z:2bc3e44f-89b7-4b29-a19e-d4a43b53382a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3A375BFAA0940FF95DCDB8A3303B441 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:00Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAC5111A777D4701A1298599DB5D9F61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31591" ], + "Content-Length": [ "37141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { "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": [ "333" ], - "x-ms-client-request-id": [ "0a7de39a-7788-486c-b942-b1a65b3d00ca" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "8a434b1e-c96b-4c7b-b552-db892d872270" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8644,39 +8540,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fc9c9c5b-5f74-4cb7-a5b1-644c14790907" ], + "x-ms-original-request-ids": [ "5b6f6b2f-e938-4273-91e5-6e122bbdf9df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "fb1d8bfd-a7ab-45ae-80c2-5319bb39eba4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010802Z:fb1d8bfd-a7ab-45ae-80c2-5319bb39eba4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "be6d0779-d946-4e34-a95a-3bd33336f7bb" ], + "x-ms-correlation-request-id": [ "be6d0779-d946-4e34-a95a-3bd33336f7bb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055724Z:be6d0779-d946-4e34-a95a-3bd33336f7bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B150D3CF89849489963036FCAECEB98 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A774D981B92E4D10BAA3EFBEE99946B2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "334" ], - "x-ms-client-request-id": [ "5e8cc7b0-69cb-4e07-945b-685eb7e65327" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "a001aaf0-13be-4ece-a155-e7a18b526ade" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8687,30 +8584,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d4dfc644-d7f8-47b4-b37c-41393e0c299b" ], + "x-ms-request-id": [ "393045ec-5ad6-4ee5-8b73-32e645151685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "76f180b5-291f-42d3-8b7e-9ad863ba440f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010802Z:76f180b5-291f-42d3-8b7e-9ad863ba440f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b8836515-06dc-4e75-af9e-02b3c8b919f8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6b3fda6c-b0e9-4f69-98a9-d016f12c919c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055725Z:6b3fda6c-b0e9-4f69-98a9-d016f12c919c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4FADD94CC7141E8B85832AC2613973B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 537CA208D3A048C6A8C58FE60FA40657 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Insights/components/Functions-Node-4fqxib7usc?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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-h8frn2/providers/Microsoft.Insights/components/Functions-Node-4fqxib7usc?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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": { @@ -8730,2198 +8627,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "5fe5f540-2fde-488d-b21b-28a4b6d39c5e" ], - "x-ms-correlation-request-id": [ "5fe5f540-2fde-488d-b21b-28a4b6d39c5e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010803Z:5fe5f540-2fde-488d-b21b-28a4b6d39c5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c9adc76-b8cb-456c-91f0-96eb0804fc02" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "f6bb07e7-b503-454f-80c6-56cc363421b5" ], + "x-ms-correlation-request-id": [ "f6bb07e7-b503-454f-80c6-56cc363421b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055736Z:f6bb07e7-b503-454f-80c6-56cc363421b5" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B96955034664DA5921B2D7E58B46F38 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72317B3D37474A11980F5C670D758015 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:25Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1372" ], + "Content-Length": [ "1686" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Node-4fqxib7usc\",\r\n \"name\": \"Functions-Node-4fqxib7usc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28002162-0000-0300-0000-6674d2730000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-4fqxib7usc\",\r\n \"AppId\": \"25041e42-7597-45f7-a834-ee831ea9537e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\",\r\n \"ConnectionString\": \"InstrumentationKey=1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=25041e42-7597-45f7-a834-ee831ea9537e\",\r\n \"Name\": \"Functions-Node-4fqxib7usc\",\r\n \"CreationDate\": \"2024-06-21T01:08:03.241404+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"690090fd-0000-0300-0000-68e74ed00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"a2e23061-6e60-4732-9a62-d9506b484be6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"81f30117-f079-4303-9ab4-cc64b23fdc04\",\r\n \"ConnectionString\": \"InstrumentationKey=81f30117-f079-4303-9ab4-cc64b23fdc04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a2e23061-6e60-4732-9a62-d9506b484be6\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:57:25.9307232+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-8l0a19iyrf_a2e23061-6e60-4732-9a62-d9506b484be6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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 18 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?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|18\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-4fqxib7usc\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\"\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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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\": \"PowerShell|7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"81f30117-f079-4303-9ab4-cc64b23fdc04\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1683" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377793AB76B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "614b949b-cc8a-4073-8560-983cdeec59e1" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "fb0cc413-a768-4e71-8f55-63dc2eb89a7a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010826Z:fb0cc413-a768-4e71-8f55-63dc2eb89a7a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AE21ADE3F40481BB3BF6BCCA9E975E2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7306" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-4fqxib7usc\",\"state\":\"Running\",\"hostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Node-4fqxib7usc\",\"repositorySiteName\":\"Functions-Node-4fqxib7usc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\",\"functions-node-4fqxib7usc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-4fqxib7usc.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-4fqxib7usc.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:08:05.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-4fqxib7usc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Node-4fqxib7usc\\\\$Functions-Node-4fqxib7usc\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-node-4fqxib7usc.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "fd18a595-b4c9-42f2-a839-8de4e61b364b" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b56457f2-c7af-4997-9701-bf59ad6e273b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "5d140a20-3054-45ac-b3c3-74efe9974ae6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010856Z:5d140a20-3054-45ac-b3c3-74efe9974ae6" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F10D2731549B4422B9E917AE9E0FD6E5 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7111" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-4fqxib7usc\",\"state\":\"Running\",\"hostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Node-4fqxib7usc\",\"repositorySiteName\":\"Functions-Node-4fqxib7usc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\",\"functions-node-4fqxib7usc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-4fqxib7usc.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-4fqxib7usc.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:08:25.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-4fqxib7usc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Node-4fqxib7usc\\\\$Functions-Node-4fqxib7usc\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-node-4fqxib7usc.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "279e32a4-9a6a-4358-98a5-8aa2819df9b3" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "982b59e4-a0fa-4282-80f5-5265c08a04fb" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "940b47f0-4244-47ba-adc2-9d6e5c58179d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010856Z:940b47f0-4244-47ba-adc2-9d6e5c58179d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD39E19D9FC84BE788353CE1CA480D87 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7111" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-4fqxib7usc\",\"state\":\"Running\",\"hostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Node-4fqxib7usc\",\"repositorySiteName\":\"Functions-Node-4fqxib7usc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\",\"functions-node-4fqxib7usc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-4fqxib7usc.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-4fqxib7usc.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:08:25.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-4fqxib7usc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Node-4fqxib7usc\\\\$Functions-Node-4fqxib7usc\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-node-4fqxib7usc.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "91192df6-5050-4c3a-bb0a-c4a7ab681b46" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "d120f012-d905-447f-a5a1-e4fde68e43e2" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "7ab2d371-54e2-41b5-b7b8-1d0e6103268b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010856Z:7ab2d371-54e2-41b5-b7b8-1d0e6103268b" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7169C86250734E39BD64DC0D4BB83D60 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-4fqxib7usc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "6db478ba-8ac7-4351-a30d-abc898db4165" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "edf0afde-ef4f-41ea-8c8b-f6b2c79a2583" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "564fdb8f-6f8b-45c5-87ee-66b2a43a34b1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010857Z:564fdb8f-6f8b-45c5-87ee-66b2a43a34b1" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD725F8C348F4D7DAD217A76228B03BC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:57Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4069" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/web\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "341" ], - "x-ms-client-request-id": [ "8d93456d-56b8-41b5-9818-a02d4e484e8c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "ab51c827-9363-4270-a315-64d33f8326c3" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "152867a2-6845-45a4-b952-cd722fd0ff31" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010857Z:152867a2-6845-45a4-b952-cd722fd0ff31" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5420B5D5397F4EAF8F5BC2711EDA73B6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:57Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:57 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-4fqxib7usc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "dc1d2281-7491-449e-bd1f-37c3167c2caf" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86149377-a11c-48f8-8f85-8128e2800314" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "b695e0bc-32c8-4104-b4f0-cf14fbb3054c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010858Z:b695e0bc-32c8-4104-b4f0-cf14fbb3054c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AD7194B93EB4D849F74EE01A3BACA74 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:57Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:57 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7111" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-4fqxib7usc\",\"state\":\"Running\",\"hostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Node-4fqxib7usc\",\"repositorySiteName\":\"Functions-Node-4fqxib7usc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-4fqxib7usc.azurewebsites.net\",\"functions-node-4fqxib7usc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-4fqxib7usc.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-4fqxib7usc.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:08:25.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-4fqxib7usc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Node-4fqxib7usc\\\\$Functions-Node-4fqxib7usc\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-node-4fqxib7usc.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "06fbd197-115a-43d7-a6de-eeb3a4715610" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "d7d3f569-3861-4ea0-b740-e0839a832560" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "de438a63-57ee-4737-97b3-abe1a9a17a68" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010858Z:de438a63-57ee-4737-97b3-abe1a9a17a68" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 273609C8C3BF465FA9F7F6CD03D65BB3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:58 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-4fqxib7usc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/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-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "99889ac7-cadd-4df6-b95b-30e07b21ddfc" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "04ad180d-ea74-4584-a808-b9eec0ffc81b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "63d5e57f-5273-4f29-9935-5faedadd7ecc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010858Z:63d5e57f-5273-4f29-9935-5faedadd7ecc" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 220ED7CD0E6943059387BF8E9B5F0163 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:08:58 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4069" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc/config/web\",\"name\":\"Functions-Node-4fqxib7usc\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 18 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Node-4fqxib7usc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "97be2ca4-a278-4c97-bf98-0505f77cddac" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37784C34ACB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "485dfb41-388e-440c-bc21-75e8c126de53" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "a0d85448-86b2-4b68-93c2-4677a73e9892" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010910Z:a0d85448-86b2-4b68-93c2-4677a73e9892" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 040C76DFB1614B55B9F0B8F38AEB888B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:08:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:10 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$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-Python-iyf85pjd9l\",\r\n \"type\": \"Site\"\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "782acc54-9146-4c5e-a155-613726dc0929" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "cdbb0c8d-f403-4efa-af50-d22198e2a04e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010910Z:cdbb0c8d-f403-4efa-af50-d22198e2a04e" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5463CF3A4E4A445FACD397C41486AF49 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "347" ], - "x-ms-client-request-id": [ "cda154bf-a396-4c61-8e38-55225f71c5bc" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "500fab0d-aa4c-41f0-aad3-cb07a7cd3098" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "56b8daea-6697-4e70-946d-26e6266b8834" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010911Z:56b8daea-6697-4e70-946d-26e6266b8834" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8419AC6C620E4040AFD1BA61D3B0F3C9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "31591" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { - "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": [ "348" ], - "x-ms-client-request-id": [ "79389f86-b26f-4a66-a536-4beaff166444" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "82ea83a5-5f8b-469c-83f8-cfb119c1b91c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "dd1457a8-a41d-4c48-98e2-f55f0b3e4983" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010911Z:dd1457a8-a41d-4c48-98e2-f55f0b3e4983" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CF401FF6E554CEAAAE2DF36981305E8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "f7be3f58-d069-4d11-b9db-559eadf0adc8" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a1388bc-b280-41ac-9f13-a05ab71f9fbf" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "0e336af7-0944-43c8-8ef3-7aad91d74a00" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010912Z:0e336af7-0944-43c8-8ef3-7aad91d74a00" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49E184C758824BDFAF9146B5C053F350 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?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-h8frn2/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?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-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "75ab838f-63ae-4c69-ad3d-c977d483b4c5" ], - "x-ms-correlation-request-id": [ "75ab838f-63ae-4c69-ad3d-c977d483b4c5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010914Z:75ab838f-63ae-4c69-ad3d-c977d483b4c5" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0740FB681C4F47A0B91A681C5713F612 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1381" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Python-iyf85pjd9l\",\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28006b63-0000-0300-0000-6674d2ba0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-iyf85pjd9l\",\r\n \"AppId\": \"2b2e1923-aceb-4b6a-acb6-45c3f5114756\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"28c9c284-01ef-4482-81ba-4b90e467d131\",\r\n \"ConnectionString\": \"InstrumentationKey=28c9c284-01ef-4482-81ba-4b90e467d131;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b2e1923-aceb-4b6a-acb6-45c3f5114756\",\r\n \"Name\": \"Functions-Python-iyf85pjd9l\",\r\n \"CreationDate\": \"2024-06-21T01:09:14.3402753+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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\": \"Python|3.10\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-iyf85pjd9l\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"28c9c284-01ef-4482-81ba-4b90e467d131\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1691" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377A36DF06B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5391d9dd-342e-46f6-9a37-bf755532666b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "69766a7e-a36e-4e8d-aa8a-9d9b5e58ce84" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T010936Z:69766a7e-a36e-4e8d-aa8a-9d9b5e58ce84" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E091992197EA468F873DAEB1151AA9A6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:09:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:09:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7338" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:09:16.3966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-iyf85pjd9l.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "0ad10f80-1d3e-4dde-a09c-c0ace0654d75" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77571ba7-c885-4f09-a8eb-eed4bae05d8c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "bc27e42b-11cb-4bcc-818b-0e498866a94f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011007Z:bc27e42b-11cb-4bcc-818b-0e498866a94f" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F09D37FDC8CB47C5BEB2171F6FDC07DE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7141" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:09:36.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "c6da1363-d22b-4cde-b4b6-672527c0007a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c26f120d-4273-4802-aec2-187cd4995b79" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "6ea5f559-f5ff-470e-b979-0a2afdf6a1f2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011015Z:6ea5f559-f5ff-470e-b979-0a2afdf6a1f2" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CDE3D07D4ACB499AB17B9BD27704D3ED Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7141" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:09:36.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "354" ], - "x-ms-client-request-id": [ "16c15944-3afe-4413-8169-908f04104a7d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "b73ae8aa-141a-4df6-8364-1a26d8b92141" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "7297aeb1-9835-4921-ba89-dc7b5213cb37" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011015Z:7297aeb1-9835-4921-ba89-dc7b5213cb37" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D26F6B1D6A5401FBB7147716C7057A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1224" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"28c9c284-01ef-4482-81ba-4b90e467d131\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "1f6f0514-bc96-4018-b301-05a58737462e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "3f0660ba-279c-42dc-959e-bc9af3b7d0b7" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "2f754a94-73cf-4709-8f78-fcf5a953b939" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011016Z:2f754a94-73cf-4709-8f78-fcf5a953b939" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6C0572B7B3D4E8990D0FA24E8154CB2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4077" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "6f4786bf-29cc-4f0c-86c3-062248b27301" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "a087d602-2112-4eee-984b-bccfa2696c66" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "cd389272-ff90-43a0-b8c4-1da4d4d0f23c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011016Z:cd389272-ff90-43a0-b8c4-1da4d4d0f23c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04B9267736A24AA7A76F804B2AA2E0BB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1224" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"28c9c284-01ef-4482-81ba-4b90e467d131\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "340271a2-6ee5-4eab-b5c5-aae2fedb3d3d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0583df9-1bac-4125-baaa-c1ea77a7e608" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "28669ef1-cf68-4bbf-a3e3-0fd124831876" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011016Z:28669ef1-cf68-4bbf-a3e3-0fd124831876" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D0E4DD341DD4376A6ACB379B8F858E7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7141" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:09:36.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "358" ], - "x-ms-client-request-id": [ "6ba58e58-0c3a-45e3-af5f-66d6a0c359db" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "e126abb8-cbfb-4fa6-b4f5-5eb7accc0f8d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "71d43852-ff24-42ab-a753-0821429c788c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011017Z:71d43852-ff24-42ab-a753-0821429c788c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3021D941533440E88B1309803DE97D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1224" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"28c9c284-01ef-4482-81ba-4b90e467d131\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "3b4a488a-a543-4b18-bf0c-465e5fb8d919" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "fa34df24-4191-4a23-a28b-a2952baafbc4" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "74f24cbc-bf3c-4167-af0a-f96fcefb79b0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011017Z:74f24cbc-bf3c-4167-af0a-f96fcefb79b0" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 917CDCE3946C4F87BF5EBDFD96D15539 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:17 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4077" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.10 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "25855bb1-b3a5-495c-8ed6-2227477c1aff" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377AF095580\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03850b9d-49d1-4720-8953-159939be7601" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "8238f8cc-f74f-4441-bbd6-8e8b652bd6fe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011027Z:8238f8cc-f74f-4441-bbd6-8e8b652bd6fe" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1DB79CAB0DB411EAB4DA8F501F49CB6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:27 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ec486ba-b6fa-4961-8cee-ca294abe6c95" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "30f523a6-b5ca-4af2-981c-693b28df2fc0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011027Z:30f523a6-b5ca-4af2-981c-693b28df2fc0" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44DCFC822ABB464B8D2B44A64931D775 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "362" ], - "x-ms-client-request-id": [ "bd2bf184-b5ca-4198-8b1f-6429a82618ed" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "7cdbeebb-c3e6-41b8-98e5-d68224f7e275" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "5eaa0fe3-cb1e-4595-bfe6-05299cb4ea7d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011029Z:5eaa0fe3-cb1e-4595-bfe6-05299cb4ea7d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87013A6ACE0D4C0597B0B5DD569D2660 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:28 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "31591" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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;LINUXP0V3;ELASTICLINUX\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { - "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": [ "363" ], - "x-ms-client-request-id": [ "063aa4b3-0b3a-4652-b219-285f8e7a1f31" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "75e49f1a-3ce1-4429-a8bc-14f753b11268" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "89879f54-567d-4a49-8c39-30373cbbe38d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011029Z:89879f54-567d-4a49-8c39-30373cbbe38d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A89FAB38CFA54A72B071C24B36044DD8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:29 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/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-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "364" ], - "x-ms-client-request-id": [ "d9e71e01-6620-46c0-98b0-f69911014a4f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b7918ad2-ba88-4f5f-bfaa-a1e98b84f4a4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "57f54a7d-e924-4dac-90b5-6f14713deae6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011029Z:57f54a7d-e924-4dac-90b5-6f14713deae6" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF25E3BE4CFB40CDA7CA99FBD5DFE208 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:29 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?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-h8frn2/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?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-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "30451947-293b-4011-ae46-5723c2fcca06" ], - "x-ms-correlation-request-id": [ "30451947-293b-4011-ae46-5723c2fcca06" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011031Z:30451947-293b-4011-ae46-5723c2fcca06" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA00790708C84ACFA0ADD4FDD729CBF9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1397" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28004765-0000-0300-0000-6674d3070000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"dbadec04-f560-41d3-9e38-544954eee5aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"97d89d08-0973-44ed-9c86-411f097d7105\",\r\n \"ConnectionString\": \"InstrumentationKey=97d89d08-0973-44ed-9c86-411f097d7105;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dbadec04-f560-41d3-9e38-544954eee5aa\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T01:10:31.0470776+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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\": \"PowerShell|7.2\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"97d89d08-0973-44ed-9c86-411f097d7105\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1702" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377D17B6360\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4565f3dc-1af7-4a9c-ba2e-cc2dea9113bb" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "bf184e98-0c48-42a9-910f-628f4f778ca0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011054Z:bf184e98-0c48-42a9-910f-628f4f778ca0" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1944655FE366485D90C36974F620D5B7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:10:31Z" ], - "Date": [ "Fri, 21 Jun 2024 01:10:53 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7392" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.2\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-0sp8e17wjo.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-0sp8e17wjo.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:10:33.36\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "367" ], - "x-ms-client-request-id": [ "519545dd-223d-4c64-a93f-ef2b4689fe71" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3e9ab42-97bc-49f7-943c-5da758653825" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "043f64a0-08f4-4d85-9cff-d0aea328e462" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011124Z:043f64a0-08f4-4d85-9cff-d0aea328e462" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1408B2E0F844896A94575FCFF7DEED4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7204" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.2\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-0sp8e17wjo.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-0sp8e17wjo.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:10:53.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.2\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "7bf54566-7fe0-4431-af9c-e2424dc01bc1" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4922f36-fde3-4dd1-93e8-a092fa7829a7" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "18bfb210-e60d-43a5-89ae-21df6f03a688" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011124Z:18bfb210-e60d-43a5-89ae-21df6f03a688" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85FB2DD5C68B49A99CEDE503B997D59D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7204" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.2\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-0sp8e17wjo.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-0sp8e17wjo.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:10:53.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.2\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "aaeab475-699a-4c32-b27e-4ef83fc3f4ca" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "e3538f07-e3ba-4179-8cc5-b30dfbeb2d90" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "c07be0f0-2a4e-4c44-91d7-1a4b157a9359" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011125Z:c07be0f0-2a4e-4c44-91d7-1a4b157a9359" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D355452FD704322ABFAE2587C20CB7D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1236" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"97d89d08-0973-44ed-9c86-411f097d7105\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "555f62ff-3816-4344-a560-e13614a89146" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "1bbcad99-c87e-47a7-8a46-4f7797b8f90f" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "c29ff71c-5621-40a2-a63d-c9348c33ba55" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011125Z:c29ff71c-5621-40a2-a63d-c9348c33ba55" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDC2D9C218EF492A85092AF21C2EEB89 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4088" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.2\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "9aceb5e0-2ec9-4ceb-8e6d-f49a767fab94" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "35130f14-043d-4e4f-bba7-e2943566ab33" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "512e558a-423e-4b32-9666-ba76750f663c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011125Z:512e558a-423e-4b32-9666-ba76750f663c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5FAE39A8ACD420D93BE4B20A5DC0B40 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1236" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"97d89d08-0973-44ed-9c86-411f097d7105\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "372" ], - "x-ms-client-request-id": [ "30b20a38-ff07-4ce7-91b1-315ff0ad5bdd" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b78b51f5-e28f-4351-9474-0c2a4b23b95c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "ab48276a-ec17-41bf-bcb9-26089a28b3e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011126Z:ab48276a-ec17-41bf-bcb9-26089a28b3e4" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 268653B31A094536A701D6A160F488D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "7204" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.2\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-0sp8e17wjo.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-0sp8e17wjo.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:10:53.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.2\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "7ed4600e-b7ed-493e-9fb4-ec890a10d086" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "82d16d94-4789-4b96-8d00-1c15714d8427" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "8be98f3a-e870-4e60-a530-a91b0dca2730" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011126Z:8be98f3a-e870-4e60-a530-a91b0dca2730" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F56F5915883641F1B59A62BC4AF549B3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1236" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"97d89d08-0973-44ed-9c86-411f097d7105\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "374" ], - "x-ms-client-request-id": [ "985b52ae-7894-4f53-9301-29b90dfe58fd" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "0db4fb56-b471-4827-996c-e56930b0b6f5" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "0bfaac8b-0c00-4e5f-8d15-62fa05d4242c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011126Z:0bfaac8b-0c00-4e5f-8d15-62fa05d4242c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A17BE79BAB8A4067B80F77828E71CDD9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:26 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4088" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.2\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.2 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "375" ], - "x-ms-client-request-id": [ "bb49cdff-4233-4799-994c-f821fa26e1a2" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377DD057D60\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9ae39bd-4521-4358-b911-4ad91b4aad2c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "e86d3456-bf37-493e-b390-f175909c818b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011137Z:e86d3456-bf37-493e-b390-f175909c818b" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3626BE3F5E64913A41B3D35B5D7B47F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:37 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$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-DotNet-Isolated9mgi8jlqpw\",\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": [ "dd12e503-c19b-4a16-bcd2-bccfe190aa75" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "303a2af2-bf4b-46e9-8dc9-2913c53ee776" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011138Z:303a2af2-bf4b-46e9-8dc9-2913c53ee776" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDF4B70FF0554C33937EDA7E4A91241D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$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": [ "377" ], - "x-ms-client-request-id": [ "82150fdf-998c-4d87-bebd-282d1e1a6763" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "077c39e6-32bd-4ac7-8f72-17129321ed1d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "d2f51a1c-fc8b-4c67-b10e-2ccf0cb0960c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011138Z:d2f51a1c-fc8b-4c67-b10e-2ccf0cb0960c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 709293DE51FA4B859CDD153DE98AD84E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "b9c99edc-45a5-43de-bd20-1117d797ce10" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "c7c48ea0-aca5-46bb-b0c1-b5f7fd53ffbe" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b39c9a4e-10e1-4b01-bb10-0958eaa264ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011138Z:b39c9a4e-10e1-4b01-bb10-0958eaa264ab" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC5F577FEF0E45CA95AA7ED980A0DF75 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "58611352-e2ef-406e-8684-7105a1c43ceb" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "70e9821e-c690-46c9-8def-ed41fae1abd2" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "87e41a74-29ed-4e00-b8f7-eb94561ac655" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011139Z:87e41a74-29ed-4e00-b8f7-eb94561ac655" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB9C9EB95C024822AD4120D9D1F94E24 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "11b7e303-bdf9-432b-b33b-1b12fb2cc577" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "93779178-1fa3-49ba-8252-282895a8eaf6" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "741b1753-f93b-4d00-918c-b07529911b84" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011139Z:741b1753-f93b-4d00-918c-b07529911b84" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 604D3196D8AB43E4B3AECFF49E526B03 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:39 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1634" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "4e72bb44-aedf-48c3-a3b0-f44a6f50ce71" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "3b8596bc-5ff6-4ad5-b8a1-8bbe11459fc8" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "bd92dc54-9903-4048-ba78-412739ebee2d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011139Z:bd92dc54-9903-4048-ba78-412739ebee2d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55C090FAD3124FA6A8EE732795AC3216 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:39 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 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+7": { - "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": [ "382" ], - "x-ms-client-request-id": [ "93715357-d9c4-4673-b28b-464e7a65c31b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e4b5a5fc-c2af-4501-a5a7-0db2b5fba589" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "d05e1d62-f3a7-4f83-9b64-453c07467047" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011140Z:d05e1d62-f3a7-4f83-9b64-453c07467047" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2F3824607D34333B4E94DD601FDD722 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:39 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "a39adb57-da9c-4498-809d-da72c100bc5b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2e29e769-b06a-480c-8abe-b3cbc01e92ec" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "52822fbc-9554-4451-b568-11ab7b4a02bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011140Z:52822fbc-9554-4451-b568-11ab7b4a02bb" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F75C8D7594645AE8A2E065417914882 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2015-05-01+9": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-DotNet-Isolated9mgi8jlqpw?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-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "8fb15ca0-f6d9-48b7-99da-568be0f98fac" ], - "x-ms-correlation-request-id": [ "8fb15ca0-f6d9-48b7-99da-568be0f98fac" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011141Z:8fb15ca0-f6d9-48b7-99da-568be0f98fac" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 497AC77AFB204B47927B4DDC53864BD2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:11:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1411" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"name\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28004f66-0000-0300-0000-6674d34d0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"AppId\": \"38ead3a8-b8b0-4dc6-9cb7-3068e409fc8c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c98dc022-0624-46dc-ba44-94ecb3c8c16a\",\r\n \"ConnectionString\": \"InstrumentationKey=c98dc022-0624-46dc-ba44-94ecb3c8c16a;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=38ead3a8-b8b0-4dc6-9cb7-3068e409fc8c\",\r\n \"Name\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"CreationDate\": \"2024-06-21T01:11:41.6201575+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\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 6 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01+10": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated9mgi8jlqpw\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"c98dc022-0624-46dc-ba44-94ecb3c8c16a\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1869" ] + "Content-Length": [ "1706" ] } }, "Response": { @@ -10929,43 +8664,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC377FB44D10B\"" ], + "ETag": [ "\"1DC38E19EDE3A35\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4271655f-aa86-4573-a80b-1fa828f557fc" ], + "x-ms-request-id": [ "13d0aee1-0434-41dd-95db-3c141d6ab540" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "1a81b13c-7fd9-4b05-af31-09fb150698ac" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011207Z:1a81b13c-7fd9-4b05-af31-09fb150698ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75cf1281-6092-435f-8c32-289e2ded2065" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "282ec338-d4d6-48b7-830e-e09cdf797ecb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055759Z:282ec338-d4d6-48b7-830e-e09cdf797ecb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 790B9419617B4A3CA1B495D6D007AE11 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:11:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7960833240E645829A91088505D04E53 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:36Z" ], + "Date": [ "Thu, 09 Oct 2025 05:57:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7568" ], + "Content-Length": [ "8462" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"repositorySiteName\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"functions-dotnet-isolated9mgi8jlqpw.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated9mgi8jlqpw.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-isolated9mgi8jlqpw.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:11:43.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-DotNet-Isolated9mgi8jlqpw\\\\$Functions-DotNet-Isolated9mgi8jlqpw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-dotnet-isolated9mgi8jlqpw.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:39.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "386" ], - "x-ms-client-request-id": [ "9951b6cd-1bed-4f19-b0b9-882d5b44cad3" ], + "x-ms-unique-id": [ "335" ], + "x-ms-client-request-id": [ "c312a25b-3e57-4175-a5d7-6d20b8dee0f8" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -10975,42 +8710,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC38E1AA580D8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfd7cd34-2c41-4808-bac8-f08b5ec92385" ], + "x-ms-request-id": [ "ff58364e-36ea-4dea-b133-d79163cae405" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "4220a882-c449-4f61-a0b4-ab9ac12a4878" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011237Z:4220a882-c449-4f61-a0b4-ab9ac12a4878" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4d175c83-f390-417f-b250-33b64899ba4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055830Z:4d175c83-f390-417f-b250-33b64899ba4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73D51E79E103439D967F1443A8CF8938 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFC092C6D96D42F89EC36257DFC8460E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8344" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"repositorySiteName\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"functions-dotnet-isolated9mgi8jlqpw.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated9mgi8jlqpw.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-isolated9mgi8jlqpw.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:12:07.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-DotNet-Isolated9mgi8jlqpw\\\\$Functions-DotNet-Isolated9mgi8jlqpw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "24ebebe8-eb9f-4842-ad28-0336e9334557" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "6c9d0806-f102-463b-9049-dfd008ddd78c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11021,42 +8756,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC38E1AA580D8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4922aa1e-f34a-4dbb-a77c-6c28575a1812" ], + "x-ms-request-id": [ "2562376f-8894-4580-aaa0-8454262cdb2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "9e1e22e1-0aa5-4d91-a37b-d157f16c04eb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011238Z:9e1e22e1-0aa5-4d91-a37b-d157f16c04eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "23fb2029-39a5-4008-a544-704ad3756345" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055830Z:23fb2029-39a5-4008-a544-704ad3756345" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E999542C6425406DA4A6255A235FD690 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C3C61D3F35F4E649D8909E8F5D65C13 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8344" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"repositorySiteName\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"functions-dotnet-isolated9mgi8jlqpw.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated9mgi8jlqpw.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-isolated9mgi8jlqpw.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:12:07.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-DotNet-Isolated9mgi8jlqpw\\\\$Functions-DotNet-Isolated9mgi8jlqpw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "c85067a6-3859-4793-b5cc-7e655953172b" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "840fde75-0a8f-449a-ae1e-39b21ff14dd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11068,40 +8803,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26f7b66e-1c35-4c5c-9b61-b085c025a7e6" ], + "x-ms-request-id": [ "e1eb1a39-8931-4fb1-accf-62d5fcba09ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "a5f1a75a-4553-4b9f-baec-6c4c1681d9bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011238Z:a5f1a75a-4553-4b9f-baec-6c4c1681d9bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/299654cf-f515-4dc2-bcef-a34170f42e66" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "37987cff-df89-4fc3-ab2d-78cebcfbf00d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:37987cff-df89-4fc3-ab2d-78cebcfbf00d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8FC3013E88248A8AADC3E83D7F4FEC1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27726CAE775E45DF9F0C3CEE9D3315A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1244" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated9mgi8jlqpw\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c98dc022-0624-46dc-ba44-94ecb3c8c16a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "640211e0-ff83-422d-8b14-b394302809ed" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "64d847f6-437b-4e5f-8e6c-730d6164a10e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11113,40 +8848,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5888459f-71a3-466f-9aea-b17da97c26ca" ], + "x-ms-request-id": [ "3717fe5c-8aa4-4e2b-bf69-1e372917e7b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "ff3b53ab-32ee-420a-85a0-281071b038c4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011238Z:ff3b53ab-32ee-420a-85a0-281071b038c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a487e4a8-eb40-4773-873f-e4005b194e6a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "55f656c1-7030-42f9-9742-620c643d6ba9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:55f656c1-7030-42f9-9742-620c643d6ba9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2508D6C1E617429FA5646934DD24DA8B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 076A2214F24040B7A2D28274A43E78FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4078" ], + "Content-Length": [ "4207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "390" ], - "x-ms-client-request-id": [ "f83acdf9-f58c-4f27-aae6-53ad9e957650" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "6f8000aa-b724-45c3-abfc-f661db847229" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11158,40 +8894,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc08a974-8e94-4438-81c8-70c00f26d894" ], + "x-ms-request-id": [ "919eb448-8fea-4298-9811-8b0dc9119b6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "eb2ab9df-d0b2-4bf6-9794-fd76337599f9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011239Z:eb2ab9df-d0b2-4bf6-9794-fd76337599f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2484185-7007-4416-815b-f21154f28b76" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8c7c634d-b803-4915-9dea-6d15383f5db5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:8c7c634d-b803-4915-9dea-6d15383f5db5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F91905AECF046779D27B8F7A1C52C2B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2100F1FB0FC74BF58BB0FD9218AB1B6F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1244" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated9mgi8jlqpw\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c98dc022-0624-46dc-ba44-94ecb3c8c16a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "391" ], - "x-ms-client-request-id": [ "804a361e-e3f2-4241-9a37-df734c848924" ], + "x-ms-unique-id": [ "340" ], + "x-ms-client-request-id": [ "a39b6a98-8132-4513-9066-14644687d080" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11202,42 +8938,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC38E1AA580D8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c6afcb9-562d-4ac1-bfe8-11f707cf07e6" ], + "x-ms-request-id": [ "821a7be6-d6b8-4d42-bc1d-6b9bdbf0db4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "a4a49ea7-1639-46f6-8faa-89b9f94a56fe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011239Z:a4a49ea7-1639-46f6-8faa-89b9f94a56fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "60a3630f-0d80-4a9c-aea3-0969d64ad44c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:60a3630f-0d80-4a9c-aea3-0969d64ad44c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C6B25CFF4504B9A8816F545A37C1653 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 070C2B90E2AE4337AA6B605A6367C912 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7369" ], + "Content-Length": [ "8344" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-DotNet-Isolated9mgi8jlqpw\",\"repositorySiteName\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"functions-dotnet-isolated9mgi8jlqpw.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated9mgi8jlqpw.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-isolated9mgi8jlqpw.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:12:07.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-DotNet-Isolated9mgi8jlqpw\\\\$Functions-DotNet-Isolated9mgi8jlqpw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-dotnet-isolated9mgi8jlqpw.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "392" ], - "x-ms-client-request-id": [ "e29a2235-f1b1-4ce5-98b4-e30062ae503b" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "3dc3327c-6c11-434d-9ab4-74a9e5e604b7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11249,40 +8985,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "418822d6-2a11-4a6a-b280-63fb8e422e2d" ], + "x-ms-request-id": [ "b719de72-f254-465e-a069-bdc9414375ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "4c7d223b-e873-4093-bda7-56a28b2aca3c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011240Z:4c7d223b-e873-4093-bda7-56a28b2aca3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/195b20ec-ef27-42cf-aea9-9aba9c0df137" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1290038f-d2f6-4620-b7b2-563def354cde" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:1290038f-d2f6-4620-b7b2-563def354cde" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8036531010814C12A52F9F8392791E07 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99A0DED4DC5D4209B1E9B559248180EB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:32Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1244" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated9mgi8jlqpw\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c98dc022-0624-46dc-ba44-94ecb3c8c16a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "010ad3fc-518c-4047-8e67-4f707de08c07" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "f5b11ce8-32ef-40f1-a124-1909419ff668" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11294,40 +9030,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6527a4a-4fa5-4b05-96bf-4bb81d6a6486" ], + "x-ms-request-id": [ "5b1f72bf-3049-43ad-8a06-dc220cbf7926" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "a2d45329-d79b-41fa-99ef-038239c45198" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011240Z:a2d45329-d79b-41fa-99ef-038239c45198" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9acc10f-a3a3-4e0b-af7d-c31f32ccc048" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c2086c9-a2a2-475e-b6b5-b338ef1f7cc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:2c2086c9-a2a2-475e-b6b5-b338ef1f7cc7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 316D6FFCA8204C948111A02418E27BC4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB05DF31AE5C4C60AD1BA76EA8C0765D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:32Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4078" ], + "Content-Length": [ "4207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw/config/web\",\"name\":\"Functions-DotNet-Isolated9mgi8jlqpw\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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 Windows DotNet-Isolated 6 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-DotNet-Isolated9mgi8jlqpw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "43f1c28f-ed33-481a-b3b2-2253294548aa" ], + "x-ms-unique-id": [ "343" ], + "x-ms-client-request-id": [ "4c811cb6-c5e2-45d0-bf59-29ff4ece55b6" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11338,19 +9075,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37808B7330B\"" ], + "ETag": [ "\"1DC38E1AA580D8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f360b52-3ac0-47cb-ab07-d714172d05e9" ], + "x-ms-request-id": [ "f0096349-800c-42d3-9735-e387febb428f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "f8cbd5d5-4cdd-468b-a143-930bc9a4034b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011251Z:f8cbd5d5-4cdd-468b-a143-930bc9a4034b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fbaee5c-1a4b-4abb-b5ad-5efa7f15d2e7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "8b26b525-0bb0-4962-9ac4-77496d917fea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055840Z:8b26b525-0bb0-4962-9ac4-77496d917fea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79B555B94631413C89070B5E7AD59DA3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C38F6E539906411CA05994CD3208E20A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:33Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11360,17 +9098,17 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$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 v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$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-Python-iyf85pjd9l\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -11379,17 +9117,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82cc9cc6-73bb-4fcf-9dc1-01c2c13339cd" ], + "x-ms-request-id": [ "a95aa85b-a387-4ca2-a3e8-6d678a0386b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "8ca682b8-fc8d-42f5-8e01-96e9a3b28f75" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011252Z:8ca682b8-fc8d-42f5-8e01-96e9a3b28f75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06143232-e0b4-4e5b-bd47-55d330b4a4c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dfbe7116-bc23-418b-8a42-1c6359c1428f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055841Z:dfbe7116-bc23-418b-8a42-1c6359c1428f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECFDD28F9AC24E65BC243874104F4A6F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19DABF055EC74024A6A3D8D63595F784 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:40Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11400,19 +9139,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$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 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.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": [ "396" ], - "x-ms-client-request-id": [ "7121c54f-8d12-4d49-aa3a-1b20d2bfbdc3" ], + "x-ms-unique-id": [ "345" ], + "x-ms-client-request-id": [ "d7ebd122-e94c-412f-bedf-d3807b13d8d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11423,41 +9162,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "34031449-70a3-4a01-9385-ddad011bfdcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f2aa67a-e6a5-4653-8a60-26cc9357d2dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "b8d5042a-6cbe-444c-b520-db3fd956786d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011252Z:b8d5042a-6cbe-444c-b520-db3fd956786d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "142d522a-e069-4321-9a62-b10ed46076ae" ], + "x-ms-correlation-request-id": [ "142d522a-e069-4321-9a62-b10ed46076ae" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055841Z:142d522a-e069-4321-9a62-b10ed46076ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E16A62E6DCD24CC9AE864DAF97444656 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C8F3F73BA214345BB3140831907237F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "9825" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "397" ], - "x-ms-client-request-id": [ "61ba2964-9ffc-4ae6-ab32-2127c3f8e749" ], + "x-ms-unique-id": [ "346" ], + "x-ms-client-request-id": [ "ac4700a0-b244-4cf5-80d2-4be0f3a624b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11469,40 +9208,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdc2ef3e-737f-4c08-a8de-8e3e6ce30cce" ], + "x-ms-request-id": [ "675d4809-d848-4fc7-88ff-1d17b269f681" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "7ca53eb7-bb2f-4dcd-a471-9afdc22975b3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011252Z:7ca53eb7-bb2f-4dcd-a471-9afdc22975b3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3397020d-8668-4c25-aa0b-759ba798bac7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055842Z:3397020d-8668-4c25-aa0b-759ba798bac7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE70995FEB224BF5B0F2F6705A9D2D24 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 538E268C58AB43ABADDC987C4299DFE6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:41Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "01b843a5-d551-43d8-9fb5-5f78b4cbf606" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "b677be22-f3c6-42ea-921f-37aae3cbae0f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11514,40 +9253,124 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "963dce27-8f93-4c89-9c8f-6c34103bd40c" ], + "x-ms-request-id": [ "3c84a5bf-7667-4dc1-bcd1-7f3e6b991f56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "43dc1802-3174-4de7-b037-072ed596b0ed" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011253Z:43dc1802-3174-4de7-b037-072ed596b0ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "67aed713-1e97-4f2b-8be4-b4553a0dad84" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055842Z:67aed713-1e97-4f2b-8be4-b4553a0dad84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8F7306D1010443A8D1895F445D26DF8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00D40CBDCC334AF2B445BC7D159AF793 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:42Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "70fc8b83-d897-4f60-9515-92439908cccd" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "d8c4c0a5-c60e-4b2f-bffb-1e73ef796453" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "17b47ae7-d8de-483c-9c7e-381c08ed4030" ], + "x-ms-correlation-request-id": [ "17b47ae7-d8de-483c-9c7e-381c08ed4030" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055854Z:17b47ae7-d8de-483c-9c7e-381c08ed4030" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3D9DDB0699854A26A6B117B591773953 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "243" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "bf9975af-d820-4296-9e50-e69a7b4fbf98" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], + "x-ms-correlation-request-id": [ "388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055854Z:388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 844308D32C2F4CC784F6D74A3BACFEE8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:54Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "245" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "6943f814-141e-472d-9713-a4022577a7f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11559,40 +9382,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed069449-fd3b-40dc-b861-4a678ce37266" ], + "x-ms-request-id": [ "6cc25ed3-4e12-4435-9cc5-09dc223b775a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "a9c371ec-b845-4e52-bcb6-b0cb02495c87" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011253Z:a9c371ec-b845-4e52-bcb6-b0cb02495c87" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "81dcf5ba-9877-48b1-a24d-850f43d02f02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:81dcf5ba-9877-48b1-a24d-850f43d02f02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2515FC49E1243458333238E75A150DE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBBD470E7E9F46C7842A1CE589D8B00F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "ffeaa87b-7284-4efa-9441-5a2e31c182eb" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "6021ff86-9084-4788-8b2c-d6979ad74045" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11604,40 +9427,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59031584-d2cb-45b5-9d32-4f3775c6a977" ], + "x-ms-request-id": [ "4fd30eac-2e0a-4746-bc0f-dab2e553ec81" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "7341914c-b37e-49f0-acfc-0c6e3e8b8e7a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011253Z:7341914c-b37e-49f0-acfc-0c6e3e8b8e7a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0a7be5cf-4271-42a6-8f33-0ea75d8afb8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:0a7be5cf-4271-42a6-8f33-0ea75d8afb8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5DBA7765906465383FD55ECCE25B8F4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35F7D16E4DF947FF9F412DC29C959EB4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.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+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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "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": [ "401" ], - "x-ms-client-request-id": [ "ac9c98ab-62a4-4af0-9737-4082a9117475" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "454aa765-bf2c-412d-aea9-9fa66f032d0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11648,39 +9471,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eaed091d-89f0-41ba-a5f3-59bac528cc79" ], + "x-ms-original-request-ids": [ "b9c6472a-b4a2-494b-bd37-10543b51dc9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "135e314a-aa1f-412e-97f0-f45cbf1a4d68" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011254Z:135e314a-aa1f-412e-97f0-f45cbf1a4d68" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], + "x-ms-correlation-request-id": [ "370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0750FDD0EE194D4C996BF9A51CB8BA84 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C78DB0E5CA7744C2A1FF98CE67AB8182 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+10": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "2eb92ac5-ce62-4585-a4b3-4fe76cf38062" ], + "x-ms-unique-id": [ "353" ], + "x-ms-client-request-id": [ "66789689-7ad1-4bfc-8246-d6e45512c905" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11691,30 +9515,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3c98c34f-21ff-4337-acd3-b6f74923ce0a" ], + "x-ms-request-id": [ "33c6b9c5-5240-4c61-923a-03b2a9d88666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "10a79772-62ea-4b7f-82a4-350099e6e196" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011254Z:10a79772-62ea-4b7f-82a4-350099e6e196" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ab5880c-8423-4f73-9048-a8c3230d8b9f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d3036331-08a0-4b04-81c7-2f9025086135" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T055856Z:d3036331-08a0-4b04-81c7-2f9025086135" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2ADC1CBD7D74708A37E03D15B247438 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:54Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DD0B501454E4CD686DE23B0F14EBD0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], + "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"N0+zpyDpxf7BHTDo4IXwX4FkJFmSPKlPV5yXCMd9QV/9+AfZj5aaReacSTImfGJvfg33LjOr1Q/R+ASta7gecA==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Functions-DotNet-Isolated279k80n3oe?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Insights/components/Functions-Python-iyf85pjd9l?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-DotNet-Isolated279k80n3oe?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": { @@ -11734,35 +9558,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "4c594117-80f0-4de6-8b6f-4052237b0d74" ], - "x-ms-correlation-request-id": [ "4c594117-80f0-4de6-8b6f-4052237b0d74" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011256Z:4c594117-80f0-4de6-8b6f-4052237b0d74" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/669eb415-66b1-4b48-9053-cad2137392a3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], + "x-ms-correlation-request-id": [ "73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055904Z:73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 97AF3498EE41430188651E6E922209DA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:54Z" ], - "Date": [ "Fri, 21 Jun 2024 01:12:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B86A498857DB497E9E0D05A98DA4FBC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:56Z" ], + "Date": [ "Thu, 09 Oct 2025 05:59:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1377" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-Python-iyf85pjd9l\",\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28001867-0000-0300-0000-6674d3960000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-iyf85pjd9l\",\r\n \"AppId\": \"f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\",\r\n \"ConnectionString\": \"InstrumentationKey=3acd53fb-3572-4fa8-b91e-f48bfd5a6982;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Name\": \"Functions-Python-iyf85pjd9l\",\r\n \"CreationDate\": \"2024-06-21T00:57:47.3295727+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a002202-0000-0300-0000-68e74f280000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-DotNet-Isolated279k80n3oe\",\r\n \"name\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"AppId\": \"18182e7d-7fa9-4a35-b63a-8203c339e208\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"32a3312d-4213-42d7-ae86-1012107e72a2\",\r\n \"ConnectionString\": \"InstrumentationKey=32a3312d-4213-42d7-ae86-1012107e72a2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=18182e7d-7fa9-4a35-b63a-8203c339e208\",\r\n \"Name\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"CreationDate\": \"2025-10-09T05:58:56.8819319+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-isolated279k80n3oe_18182e7d-7fa9-4a35-b63a-8203c339e208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated279k80n3oe-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 Python 3.9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01+10": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.9\",\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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-iyf85pjd9l\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"\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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated279k80n3oe\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"32a3312d-4213-42d7-ae86-1012107e72a2\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1884" ] + "Content-Length": [ "1869" ] } }, "Response": { @@ -11770,43 +9595,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37827D756CB\"" ], + "ETag": [ "\"1DC38E1D2B02AF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b21ff838-d920-4e61-b4ac-466b2278d131" ], + "x-ms-request-id": [ "5fc6de81-1282-4afa-ac24-70918882f8e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "7ae1110e-739d-43eb-a26d-0731a4cb8e7c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011319Z:7ae1110e-739d-43eb-a26d-0731a4cb8e7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7ff1ccd-ec54-4312-af94-b581ee9189d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "4b21d65a-788f-482c-84e8-31df4a5add4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T055946Z:4b21d65a-788f-482c-84e8-31df4a5add4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 028E893CBBFE407983417049767612EE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:12:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1DE8F467AF2447A59BC16208360E1A3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:59:04Z" ], + "Date": [ "Thu, 09 Oct 2025 05:59:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7572" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:12:58.5466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:05.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01+11": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "45f20475-0f8a-49bb-8597-99452cd4a809" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "3141e322-92bf-4b98-a677-3a41c6b710f4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -11816,42 +9641,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], + "ETag": [ "\"1DC38E1EA3BFFF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "142f64d5-4e60-4b21-84ad-2bdb3f62ebf9" ], + "x-ms-request-id": [ "7108c691-1e5f-432d-8f3e-a3409bc98fda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "57bfec77-b462-4186-953b-cd79ae6a5f76" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011350Z:57bfec77-b462-4186-953b-cd79ae6a5f76" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f7b9d1ff-5808-4c31-8766-a09197ccd487" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060017Z:f7b9d1ff-5808-4c31-8766-a09197ccd487" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C902433DD8B74023A1DDF5EBF26A11FA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24415B7F86924AEA81BE5C54F9EDFC85 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:13:19.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.9\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01+12": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "77e072de-6916-4eca-ae50-0e071847fe6b" ], + "x-ms-unique-id": [ "357" ], + "x-ms-client-request-id": [ "612c164f-fcb8-440c-a508-b07beb8f7789" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11862,42 +9687,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], + "ETag": [ "\"1DC38E1EA3BFFF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f677106e-2722-40cf-bdb6-a985ef2c4727" ], + "x-ms-request-id": [ "26247376-a0d2-4a01-8b51-652828dadff1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "a1cf2631-dc2c-4263-9626-c91dac96da57" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011350Z:a1cf2631-dc2c-4263-9626-c91dac96da57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5eb3c92b-81c7-48fa-ba58-274ca6c6f192" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060017Z:5eb3c92b-81c7-48fa-ba58-274ca6c6f192" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 452A6B0992D84D4C9E5BDE398ACD55A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09816FF5A7364285A37225F3E1490518 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:13:19.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.9\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/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-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "1986f342-5a47-41ca-8029-be395f326971" ], + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "39dbeda2-70a7-4cb8-a45f-56c0323a04fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11909,40 +9734,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8ea9a0a-282c-4426-8f1b-2357add90833" ], + "x-ms-request-id": [ "8042e483-04b4-4437-a4b8-801080a2b9b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "ac0a6a21-9bec-423b-977e-252fd7206d44" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011350Z:ac0a6a21-9bec-423b-977e-252fd7206d44" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa886a7d-d923-43e2-ac8e-e1d77122c416" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d4d7b327-1b9c-4d60-a3a1-dc07e02e1e9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060018Z:d4d7b327-1b9c-4d60-a3a1-dc07e02e1e9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1168C02DEF042A18FF92C2529AF223B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 171B34855A2843B5BD7DF7DFAB98C924 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/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-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "d6920854-7a40-427f-9266-1d37b9a1b931" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "6cba607d-9d05-4670-a7de-63e4e0b5ffdc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11954,40 +9779,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb2c9a67-bd2c-4e66-8dee-de8372cd74f2" ], + "x-ms-request-id": [ "c9dab17b-8801-4f33-aa3d-bcfb864005eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "39704cb2-83a2-4a8f-b684-64e6fc51f890" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011351Z:39704cb2-83a2-4a8f-b684-64e6fc51f890" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4df1a54b-23c2-43f0-8d8a-7587f43fa235" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f01260a5-622d-4722-9836-88a90af90ddf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060019Z:f01260a5-622d-4722-9836-88a90af90ddf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 000B890E15304239A6BAF30B9A1031CD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10A06C5865AF4F79900BFBE1A92F4DBB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.9\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites/config\",\"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 Linux Python 3.9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01+15": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "9aba4d22-b985-48a6-aed3-09fa83763a6f" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "46f2d04c-dccc-4b5d-b2a2-28526d3055b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11999,40 +9825,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b941a94a-31ae-4e1d-8437-1703708ea711" ], + "x-ms-request-id": [ "5acf02d4-a3a8-4010-a76f-2c51f2dc67b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "4bd42741-36ff-45ac-9f68-03aa5e868495" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011351Z:4bd42741-36ff-45ac-9f68-03aa5e868495" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1057098-7611-431d-b38e-082a09e6329a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e31b5dbb-2aea-4a4d-9040-07478bb1861b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060019Z:e31b5dbb-2aea-4a4d-9040-07478bb1861b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB405BC3372F4CC9A9ABDA45B2D52D7E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DD01FBB8B9347028317248B5BDC64CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01+16": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "e9628816-59ba-49b9-ae75-d25a27573c62" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "9fb106f2-cb1b-4dde-8d77-5f72300d0e95" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12043,42 +9869,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], + "ETag": [ "\"1DC38E1EA3BFFF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf1148f3-f01f-4e9a-b5dc-7a4d731213ea" ], + "x-ms-request-id": [ "06f7d402-9e90-4ab6-b743-dd1b393e7740" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "000f6ccd-04e8-44de-bb2b-30779827be6c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011351Z:000f6ccd-04e8-44de-bb2b-30779827be6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8e5d4802-1504-46df-9f21-ad18488b64e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060020Z:8e5d4802-1504-46df-9f21-ad18488b64e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4DA9E3D1C854764B87DA5154F8EFBB4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2F46E32BE2D43B983C7818593B2D716 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7373" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-iyf85pjd9l\",\"state\":\"Running\",\"hostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Python-iyf85pjd9l\",\"repositorySiteName\":\"Functions-Python-iyf85pjd9l\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-iyf85pjd9l.azurewebsites.net\",\"functions-python-iyf85pjd9l.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.9\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-iyf85pjd9l.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-iyf85pjd9l.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:13:19.58\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.9\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-iyf85pjd9l\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Python-iyf85pjd9l\\\\$Functions-Python-iyf85pjd9l\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-python-iyf85pjd9l.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01+17": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "0b4a98c2-4c47-48d9-b2de-65fc827d8c30" ], + "x-ms-unique-id": [ "362" ], + "x-ms-client-request-id": [ "740df52a-390e-4d0d-827c-c86cb1d503dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12090,40 +9916,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb37aac8-8fb0-4b55-aa96-edd262d87625" ], + "x-ms-request-id": [ "d26e013a-a616-4bd9-8690-1452dee3f1e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "19e1a49f-0aa8-43b5-897f-a09480991034" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011352Z:19e1a49f-0aa8-43b5-897f-a09480991034" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21b7fcb4-2d3f-4c2d-9b7f-10a41079dfe0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b9be4bb1-c223-4d30-911c-8272a31f20b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060020Z:b9be4bb1-c223-4d30-911c-8272a31f20b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22395422241C43DFBD64C8162306C34C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0478039EC7374643852638361603FB27 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-iyf85pjd9l\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Python 3.9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01+18": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/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-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "694ae15a-2d6f-43f4-b1c9-b8dc937b91e2" ], + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "891d5d4b-77a4-4d6e-bc47-e1851714c556" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12135,40 +9961,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b48b4025-aa49-4707-8abc-28b6e120105d" ], + "x-ms-request-id": [ "c7732531-3793-494d-9656-2121fc303476" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "f09d4588-9908-42ac-851b-c90a63c0179d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011352Z:f09d4588-9908-42ac-851b-c90a63c0179d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/662ef457-7de8-49ed-98e8-fbdce63523db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a4ad8e4a-05f3-48d5-afc4-73c85ed0abbc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060021Z:a4ad8e4a-05f3-48d5-afc4-73c85ed0abbc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD5BFA86396F42A1953ADDA963FCA7BD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:13:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7229AE301EE4476D8E37D37E2E718846 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:21Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l/config/web\",\"name\":\"Functions-Python-iyf85pjd9l\",\"type\":\"Microsoft.Web/sites/config\",\"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.9\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites/config\",\"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 Linux Python 3.9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Python-iyf85pjd9l?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "23eb3f8d-0154-44aa-8b7b-8361e262d3ba" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "27270f34-ac28-4dd4-8631-0f7b671d0e11" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12179,19 +10006,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37833F161C0\"" ], + "ETag": [ "\"1DC38E1EA3BFFF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6659c02d-be14-440e-99ae-803342cd6289" ], + "x-ms-request-id": [ "ed15058f-71c7-40a6-80bb-5e51695dfa1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "5ed46ae8-4632-4384-bbd6-5184e79acbe7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011405Z:5ed46ae8-4632-4384-bbd6-5184e79acbe7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd200d7a-fe1e-4332-aefa-0f33e1cda9b1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "7c4481fc-a075-439d-9197-f5e0bba2836e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060034Z:7c4481fc-a075-439d-9197-f5e0bba2836e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E07D23E23E1E4476B53D026D6F5BDF88 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:13:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 262D974A3EA54A98960B1284847F7310 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:22Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -12201,11 +10029,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$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 v4 Windows Java 21 Function App hosted in a Premium plan.+$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-Java-k0vbul5y8x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12220,17 +10048,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b831d9c-12fe-482d-970e-1567d4dfd65f" ], + "x-ms-request-id": [ "1eef26e9-cd9f-405e-899b-ea148714f5e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "fbba614f-2e7f-49f9-9977-9e6856450c7c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011406Z:fbba614f-2e7f-49f9-9977-9e6856450c7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/98dc0862-9739-409c-9fc8-7bcfb97557c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ecd3cc1e-a219-41fa-8c2c-7877f74a877f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060034Z:ecd3cc1e-a219-41fa-8c2c-7877f74a877f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30B552F645FB480093A89BD7D5E281B8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8ACFF084D91D4C4DA9BFA5FB2A3C84B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -12241,19 +10070,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$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 v4 Windows Java 21 Function App hosted in a Premium plan.+$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": [ "415" ], - "x-ms-client-request-id": [ "67b61ba4-0fb6-404b-a2c5-39c1c2770ab1" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "22cc5421-a49c-41d5-a248-0024afc02e4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12264,41 +10093,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "a655c3a5-805e-4851-9896-4107bce81280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39df162d-5727-468c-9d39-e7748f2c91d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "12e8aee2-7a91-4573-8654-90285594b5ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011406Z:12e8aee2-7a91-4573-8654-90285594b5ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], + "x-ms-correlation-request-id": [ "7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060035Z:7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1357B235835A4BE38915B3C704F9330E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D654ADDE1C04D15998E2A464874F8FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "9825" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "416" ], - "x-ms-client-request-id": [ "6f2873b3-3445-41c4-8e29-47e7ba2dc7e8" ], + "x-ms-unique-id": [ "367" ], + "x-ms-client-request-id": [ "88aea86a-c10f-4b91-a9a2-b16a84f92df7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12310,40 +10139,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81f8438b-9a81-4ef5-839c-105fc995c40b" ], + "x-ms-request-id": [ "451a30bd-9373-4f0e-9879-1f1da4f52b2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "83a30716-4e4c-45f6-a726-415c224962fd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011406Z:83a30716-4e4c-45f6-a726-415c224962fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5279970a-f5c7-42df-aacc-2a6f72e1563b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060035Z:5279970a-f5c7-42df-aacc-2a6f72e1563b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C7DE2A52D5140569EDD84A3254E354A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB25E778482941049D794C422911B37A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "417" ], - "x-ms-client-request-id": [ "d134e5c0-0e79-4fec-98bc-277a266e2dd2" ], + "x-ms-unique-id": [ "368" ], + "x-ms-client-request-id": [ "c73bddbe-bd03-4900-bcb3-03834c5e884f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12355,40 +10184,124 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c904e086-d908-4b5d-ade4-65d1b69210aa" ], + "x-ms-request-id": [ "4f4bff0d-7143-4c70-801a-d849e4128cd8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "2d036e39-b153-4d66-a47e-b6b756e4c25d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011407Z:2d036e39-b153-4d66-a47e-b6b756e4c25d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "be4a29c9-0ff6-4475-88b0-12bbd7ab4d73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:be4a29c9-0ff6-4475-88b0-12bbd7ab4d73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED361CF669AF425982F85098257E7C75 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BF1E1F2A7FA4268ADA132B3E0598FC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "e722addf-1346-4808-a317-9d6bdfd087db" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "e9607b66-592c-4026-8021-b7bb1ec52249" ], + "x-ms-correlation-request-id": [ "e9607b66-592c-4026-8021-b7bb1ec52249" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:e9607b66-592c-4026-8021-b7bb1ec52249" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7DA7BFD70FC2402584FC729C9CBD8242 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "243" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "79d74d04-ac32-4519-933d-e352ec7553b6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], + "x-ms-correlation-request-id": [ "1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 847586392AC74EF0AFA6842E6C973E3A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "245" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "97f662ac-50dc-4f12-95fc-6bd932131f77" ], + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "c25dfe01-4fb2-47c0-b77a-e1cf2baf2c09" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12400,40 +10313,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "386a75c2-c1d2-4ca7-bb8b-a0d27c998f87" ], + "x-ms-request-id": [ "59809314-59ba-4cab-a139-d837af51848c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "525e4bef-0280-4fc9-ba94-0c769d82c6c9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011407Z:525e4bef-0280-4fc9-ba94-0c769d82c6c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c27aa5f-3e80-4119-94e4-2cf78d5fa550" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:9c27aa5f-3e80-4119-94e4-2cf78d5fa550" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0787D52CFEF14D79BC9EAB92635BB87A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 938677F9A633449F81C6D3B9777D8A83 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "8fb14234-a214-4cfb-9780-e5627d710d78" ], + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "88fd9fe4-e75c-4d06-a476-0eadd5671c06" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12445,40 +10358,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86a5b213-c658-48e3-b1f8-11b898d319c4" ], + "x-ms-request-id": [ "a2fd1aaa-52d0-4e15-8546-9bcdb0bfdbf7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7a1651fa-236e-40d8-a235-456ac75f1b4a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011408Z:7a1651fa-236e-40d8-a235-456ac75f1b4a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b45f3b0a-26be-4fea-896e-6d7495d5f1ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:b45f3b0a-26be-4fea-896e-6d7495d5f1ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE9236E596B04F8AABC122ECD4ED8DC1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6A3EC3A91A34AF2833FF2861336CFC3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 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+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 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+9": { "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": [ "420" ], - "x-ms-client-request-id": [ "62df0ca7-3c68-4170-9653-38aec806c569" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "9e27c5fd-bef9-415e-b67e-2fc3dd92f66b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12489,39 +10402,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f89b718-a556-464a-9d11-37f0b386ad52" ], + "x-ms-original-request-ids": [ "f109dc61-55d3-4dbb-8a5b-ed528f60dba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "df4291c6-94eb-4328-b46a-50d0a261c072" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011408Z:df4291c6-94eb-4328-b46a-50d0a261c072" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], + "x-ms-correlation-request-id": [ "c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060037Z:c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E6613EAFA6A4AB2AE434DF32D2D901D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B901DE7FB2F4BD6A241FC99896BA2C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "34020573-98a0-4ea9-90a0-4fb81f354ee0" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "aa882145-66c0-4b6e-8a2d-05cfbb971bb6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12532,30 +10446,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2fee91a5-e7e6-4aba-a0a2-227bbd9d3af6" ], + "x-ms-request-id": [ "6f56dcb5-3a71-43ec-9f54-ce1962a81696" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "df84e010-fa90-4f2d-9648-d136222a7af9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011408Z:df84e010-fa90-4f2d-9648-d136222a7af9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/97ea5eb9-6117-412c-b7c9-e5df9ecc154d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4e119f7c-86da-4c3e-b597-78b93898ed0a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060037Z:4e119f7c-86da-4c3e-b597-78b93898ed0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0FDBA3DDF11415CBDE67BF8D0A7B29A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B3EC5BEB11D4F7A8DD24ECFCA6995A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-Java-k0vbul5y8x?api-version=2015-05-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-Java-k0vbul5y8x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?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": { @@ -12575,29 +10489,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "a7bd77a1-b14a-4e99-8eab-215aa2a1c5a3" ], - "x-ms-correlation-request-id": [ "a7bd77a1-b14a-4e99-8eab-215aa2a1c5a3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011409Z:a7bd77a1-b14a-4e99-8eab-215aa2a1c5a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/869cae5f-ac6d-4c42-9fae-92bde82274c2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "0a2a8043-8128-499c-a2db-fc7ec82f4758" ], + "x-ms-correlation-request-id": [ "0a2a8043-8128-499c-a2db-fc7ec82f4758" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060058Z:0a2a8043-8128-499c-a2db-fc7ec82f4758" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4035906D1B44967ACC5F86C4787D0FB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC432ABE590246708B9895AB27E02E94 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:00:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1371" ], + "Content-Length": [ "1624" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-Java-k0vbul5y8x\",\r\n \"name\": \"Functions-Java-k0vbul5y8x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800c367-0000-0300-0000-6674d3e10000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-k0vbul5y8x\",\r\n \"AppId\": \"8278f501-f1ea-407a-92dd-a7828521d420\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5225ee3a-a446-43f5-b3df-c1fa272ecccf\",\r\n \"ConnectionString\": \"InstrumentationKey=5225ee3a-a446-43f5-b3df-c1fa272ecccf;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8278f501-f1ea-407a-92dd-a7828521d420\",\r\n \"Name\": \"Functions-Java-k0vbul5y8x\",\r\n \"CreationDate\": \"2024-06-21T01:14:09.7372619+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b607-0000-0300-0000-68e74f9a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-n63k2zl8s1\",\r\n \"AppId\": \"8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bc1cea38-cd52-446d-a51c-1f370f52fa5b\",\r\n \"ConnectionString\": \"InstrumentationKey=bc1cea38-cd52-446d-a51c-1f370f52fa5b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\r\n \"Name\": \"Functions-Java-n63k2zl8s1\",\r\n \"CreationDate\": \"2025-10-09T06:00:38.0476754+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-n63k2zl8s1_8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-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 Java 17 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-k0vbul5y8x\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"5225ee3a-a446-43f5-b3df-c1fa272ecccf\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true,\r\n \"javaVersion\": \"17\"\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-n63k2zl8s1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true,\r\n \"javaVersion\": \"21\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -12611,43 +10526,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3785361E26B\"" ], + "ETag": [ "\"1DC38E216CA6700\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df25a60c-fb54-4013-819f-a756d46e09c0" ], + "x-ms-request-id": [ "dca6ea3b-82d9-4bd3-97ab-baa3085dd197" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "96eb6cf7-faf8-466d-9529-8b67abaede50" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011435Z:96eb6cf7-faf8-466d-9529-8b67abaede50" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/935124a9-c4c2-4d34-a0d5-a9a0c5cceb22" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "0a39595d-11a1-4db7-b9f9-2e4602880993" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060141Z:0a39595d-11a1-4db7-b9f9-2e4602880993" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A83FDAB91C6A41F08A57F7B5A5705B96 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:14:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 804D741F824A4742B5106DA6164D8ADB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:58Z" ], + "Date": [ "Thu, 09 Oct 2025 06:01:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7433" ], + "Content-Length": [ "8425" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"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-k0vbul5y8x.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-k0vbul5y8x.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:14:11.7566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-java-k0vbul5y8x.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:00.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "37185681-bbd3-406e-ad0f-afd25ca9b045" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "fa04d396-dc7e-4fd5-b5d1-7b40f76eeec6" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -12657,42 +10572,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC38E22E86E8F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1722f63f-ce95-4656-adf1-aad9fd71b9e5" ], + "x-ms-request-id": [ "7621d81c-1bde-476b-a466-9b72c5397bf9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "f936fdd2-1a5b-4a1e-a2fc-8d013b653683" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011516Z:f936fdd2-1a5b-4a1e-a2fc-8d013b653683" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "59198078-8120-42ef-acd0-74a6cabfcfc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:59198078-8120-42ef-acd0-74a6cabfcfc7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C94596D956D4C48936F1DC0043C17E9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A6AD2A86308418881EE022DA286BDFE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8292" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"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-k0vbul5y8x.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-k0vbul5y8x.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:14:35.5033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "8f39b5e2-faa3-44cb-a5b1-4b4446bbb88e" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "fe3d96b5-4d84-44b3-a264-5f84b115e3c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12703,42 +10618,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC38E22E86E8F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5c52571-777d-49d5-beda-0d119d7d74bd" ], + "x-ms-request-id": [ "25f820dd-47d2-4674-928f-d940143a293d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "6fb384ba-2ce0-4a21-acd3-7950278479cc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011516Z:6fb384ba-2ce0-4a21-acd3-7950278479cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "366ae011-4afb-41b5-8b61-38cf79b2be8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:366ae011-4afb-41b5-8b61-38cf79b2be8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 290F0186DD5C4A84BADD3F50EE955E27 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE291ED1F25D4EC98678DD6A496B34C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8292" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"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-k0vbul5y8x.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-k0vbul5y8x.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:14:35.5033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "4f398b3b-ce66-4ae1-89ca-9e61f916b797" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "26cc1e53-0db2-4bd5-91e9-21dc485c48ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12750,40 +10665,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0a7a9fdc-1991-4ced-910b-2b85116bb81c" ], + "x-ms-request-id": [ "269c0cb3-5100-42b4-867a-dcbb22ac2332" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "33ad71be-9272-46cf-b30e-85d9aaa5c4ef" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011517Z:33ad71be-9272-46cf-b30e-85d9aaa5c4ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6a72dcd-5fb4-4053-8aa3-199bdd7d5472" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a8f2d957-e2b2-4ecd-affa-f946b6dce389" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:a8f2d957-e2b2-4ecd-affa-f946b6dce389" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B8A498A39BD4176BD217CADE0C91FB9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92491C8BF4844AE78405F48F0B4109DE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1165" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5225ee3a-a446-43f5-b3df-c1fa272ecccf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "427" ], - "x-ms-client-request-id": [ "7499df9b-297e-4bd3-98b4-1ee4bba00b7f" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "430bff13-6c8d-4b31-b4f6-fd2bb3649e68" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12795,40 +10710,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acfaa193-1bb9-4f48-8932-bf030b406634" ], + "x-ms-request-id": [ "ed48c515-e2eb-4afe-9f88-8894b6abffa1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "d5345a30-8cf8-4a09-af20-afc5417f8ef5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011518Z:d5345a30-8cf8-4a09-af20-afc5417f8ef5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e9a731e-04b1-4964-905e-55e18e7c3b4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "11f02cf6-48b5-4534-9295-3589a5c41c1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060213Z:11f02cf6-48b5-4534-9295-3589a5c41c1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA887A614296409C97D074FD1FC10471 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99BAA7F9E67B4E4FB8685EA2845043DC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4053" ], + "Content-Length": [ "4164" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"17\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"21\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 Java 17 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "428" ], - "x-ms-client-request-id": [ "1f705d5a-0935-4caa-9091-7aa9e428c76c" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "ac21c170-8044-4001-b447-f7e31b8314d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12840,40 +10756,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "940972ba-a691-4773-9a21-3067d6276144" ], + "x-ms-request-id": [ "61fa440a-7793-46a1-a358-a62735e42b7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "612f6162-0683-4062-b8dc-e7deaa5103ea" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011518Z:612f6162-0683-4062-b8dc-e7deaa5103ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28fc89b8-c635-4d15-8a53-fc7e1bbe1f5f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b3fa7d57-c063-4025-915c-30337cf2fdd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:b3fa7d57-c063-4025-915c-30337cf2fdd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C355E3F87034FA2ADF395B1E92D1B28 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22E47A0E7B0C4203BCBECD1786222B60 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1165" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5225ee3a-a446-43f5-b3df-c1fa272ecccf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "012f088a-e165-4178-ba5a-b3f11a7664a5" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "ba249218-9e10-41f6-bc43-33ba573a3fd8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12884,42 +10800,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC38E22E86E8F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc603a46-44bc-49b1-b482-dc97bdeff5e9" ], + "x-ms-request-id": [ "2e39d812-3bd3-4016-8f56-015d37438ab9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "1a8c0fde-fb6d-486d-b32c-69e15415ffe2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011520Z:1a8c0fde-fb6d-486d-b32c-69e15415ffe2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "78ad6e79-25f5-40ae-9a91-2a4d67b13405" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:78ad6e79-25f5-40ae-9a91-2a4d67b13405" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA704642EDFC423DA66FD251697A1F27 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08B4AF1CABC24F71B446DC9431B1384F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7229" ], + "Content-Length": [ "8292" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-k0vbul5y8x\",\"state\":\"Running\",\"hostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-Java-k0vbul5y8x\",\"repositorySiteName\":\"Functions-Java-k0vbul5y8x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-k0vbul5y8x.azurewebsites.net\",\"functions-java-k0vbul5y8x.scm.azurewebsites.net\"],\"siteProperties\":{\"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-k0vbul5y8x.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-k0vbul5y8x.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:14:35.5033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-k0vbul5y8x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-Java-k0vbul5y8x\\\\$Functions-Java-k0vbul5y8x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-java-k0vbul5y8x.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "92164cff-5a5c-4ffc-a75c-52fe21d7619b" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "20781b58-2a65-4a89-b220-9551e3354eae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12931,40 +10847,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "122feab4-14b8-4a85-9db0-94b62b20afd3" ], + "x-ms-request-id": [ "ae25ca16-fe5b-4c34-ae61-3ea1c4e6efd0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "edee2e1a-da2c-4c0d-af69-3e05c716bf77" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011520Z:edee2e1a-da2c-4c0d-af69-3e05c716bf77" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34a9cfcc-929b-483d-8a7b-417e0265cd17" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e0c54072-1f23-4819-bf69-ea1a1a5aae9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:e0c54072-1f23-4819-bf69-ea1a1a5aae9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57134353BCC74DD894FEE024D0DC58E3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CEB2EBCE1034BF4967B85B65E27CE5E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1165" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-k0vbul5y8x\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5225ee3a-a446-43f5-b3df-c1fa272ecccf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 17 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "2c62d89d-448a-4d7c-9eb4-dd378d8a9b63" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "181eae4c-533f-4fe4-9d8d-dc345ac40e4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12976,40 +10892,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ae58551-4a41-4f4b-88ec-dff870131170" ], + "x-ms-request-id": [ "ba8a431c-65ab-418a-9ff5-80d0ce5df30b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "f62a205c-2b38-448e-b392-32f74c7de3c5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011521Z:f62a205c-2b38-448e-b392-32f74c7de3c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7c8e427-2dd1-4a22-b98e-23832f7cf621" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "73dcb80d-c58e-46a8-bcbb-4debb3b04a10" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060215Z:73dcb80d-c58e-46a8-bcbb-4debb3b04a10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A982AC3FA758437F81008D9B6586AD99 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BCD74E876994594B54F8C78CE8798AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4053" ], + "Content-Length": [ "4164" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x/config/web\",\"name\":\"Functions-Java-k0vbul5y8x\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":\"17\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"21\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 Java 17 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-Java-k0vbul5y8x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "6e40b8af-341f-4aae-8395-ff48f5c3468b" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "2ef36304-4c3e-4830-a906-198c9bef3007" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13020,19 +10937,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37861325CF5\"" ], + "ETag": [ "\"1DC38E22E86E8F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18c11f83-4b3b-468f-be4f-a0c9d782c8a4" ], + "x-ms-request-id": [ "b5f3b9ea-317e-48be-8146-fbfe4388e7d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "b1f69121-efb6-40d9-8175-2baf9271b283" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011533Z:b1f69121-efb6-40d9-8175-2baf9271b283" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b364f55b-51d0-4806-9195-979b0d4aacf4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "25c2d752-7d76-421f-ad28-a9109897c5a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060226Z:25c2d752-7d76-421f-ad28-a9109897c5a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C70F59C2352E4C2C988614A1EDD07827 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51D511DA048C4214AF8CEA1EB93E7040 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:15Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13046,7 +10964,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-CustomHandleresz8ym7unv\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13061,17 +10979,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86bcc153-bada-4505-886e-5105e16a7fc0" ], + "x-ms-request-id": [ "6d174763-d367-48b5-aa3b-477225b4f2b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "7dad357d-c192-4931-9fc7-7c98fd549a95" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011534Z:7dad357d-c192-4931-9fc7-7c98fd549a95" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37e22ccb-4917-43e0-bc21-b909c41d2b0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1a08dbdb-ceaa-4717-882c-4c940fce490d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060227Z:1a08dbdb-ceaa-4717-882c-4c940fce490d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91945FD3E692494E957FB1F22E594400 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5663994C21C34036828191D0F54322E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:26Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13089,12 +11008,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "1fa46b99-db83-48b2-8826-71cfab8a7d23" ], + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "bb1b6b4b-ba45-4127-8ec8-aee26794bdce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13105,41 +11024,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "982eddd1-7a24-4907-b129-80ccaceba7c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcef2ba0-c66f-4793-bd8d-90da78310c79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "92f8e61c-8408-4076-b455-fc27cedfa8c7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011534Z:92f8e61c-8408-4076-b455-fc27cedfa8c7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "384f1907-66a7-410c-8612-fce226dd68ec" ], + "x-ms-correlation-request-id": [ "384f1907-66a7-410c-8612-fce226dd68ec" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060227Z:384f1907-66a7-410c-8612-fce226dd68ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE138419860244FBA6A911F0BC154A31 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 093C3B0D4E184372B8D259F02B24AD4C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "9825" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Consumption-h8frn2/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-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "7b9e447d-49bd-4178-a4af-b4e220081f50" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "dc83fc05-7b90-49af-8d0a-294b30b4499e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13151,40 +11070,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ccd45d8-1a26-42f4-ab79-94f93206c336" ], + "x-ms-request-id": [ "8569b5ff-987e-4a59-83a0-e03c089cc4b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "c14f93c9-a39b-4a83-8087-46a6b0d74701" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011535Z:c14f93c9-a39b-4a83-8087-46a6b0d74701" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "00809437-04b9-4568-a957-9ff44be53571" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060228Z:00809437-04b9-4568-a957-9ff44be53571" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD6FF9166265400AA24EFA049C1C1C26 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AAED9398EFF4CA2924EA1CCF2539905 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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-kylbxe/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-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "1bc4d83e-c0fb-48ba-ad73-ae1e84c7a689" ], + "x-ms-unique-id": [ "389" ], + "x-ms-client-request-id": [ "1b00431c-7a15-4d5b-8377-a0865a756f98" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13196,40 +11115,124 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9cc2698e-d6ac-489f-917c-74e276d61e48" ], + "x-ms-request-id": [ "ba24309b-5597-496a-a81d-ca3294e5425f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "e2ed9d10-74d3-41e6-9a8c-8431c25e09d8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011535Z:e2ed9d10-74d3-41e6-9a8c-8431c25e09d8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6b95b69a-2e1d-4e6d-b5b0-abb9bbcf8c9a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:6b95b69a-2e1d-4e6d-b5b0-abb9bbcf8c9a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BECF55204E6F43E38A017F656BDB0785 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BAB3D9EAF2E466593D597B21941DD65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "390" ], + "x-ms-client-request-id": [ "5157bfb1-ad2b-4a33-a299-30bc5fc0275f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "48327488-62fc-4de6-86ee-ab422488f8c0" ], + "x-ms-correlation-request-id": [ "48327488-62fc-4de6-86ee-ab422488f8c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:48327488-62fc-4de6-86ee-ab422488f8c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C0E2B0AF254C45D6BB5E5B46FDF2B929 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "243" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "391" ], + "x-ms-client-request-id": [ "61500c78-0522-4e8c-99c1-a46175e1e341" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "9519e2c1-84d2-4025-b302-7075685072ba" ], + "x-ms-correlation-request-id": [ "9519e2c1-84d2-4025-b302-7075685072ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:9519e2c1-84d2-4025-b302-7075685072ba" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8B3D280E751246DBAF21D22989DDA65A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "245" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "437" ], - "x-ms-client-request-id": [ "ecb6198f-a831-4a0d-b93c-d5e19b09575d" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "624a443f-aee8-409e-826f-dac6d59a4c62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13241,40 +11244,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d298bdd-1231-47c6-ad82-e4442631026d" ], + "x-ms-request-id": [ "699c5fb2-b011-4236-8821-e30950b0884c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "c08a5779-60db-41c0-a804-8dd19564397d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011536Z:c08a5779-60db-41c0-a804-8dd19564397d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "211d178a-f993-4c7a-ba12-d3c3c6259661" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:211d178a-f993-4c7a-ba12-d3c3c6259661" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCCED1D345D34B13AF0AA51DA68BF53C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C743C47B41FE4768AF2DC1E0B813CBDE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "8afe6cfd-48ef-4ab9-8d3e-1f7205cb727b" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "355b41fe-9c5c-4bdd-9b8c-6576121d91d3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13286,40 +11289,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73021912-23ae-4076-86ba-23921c0c0ca4" ], + "x-ms-request-id": [ "d35c003d-03b5-4550-979d-9d0c881ea4fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "f1c2f705-7b7f-4854-b03b-e6f1359111bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011536Z:f1c2f705-7b7f-4854-b03b-e6f1359111bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "49ca6b78-955f-413a-ba9c-6b56ebd8185d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:49ca6b78-955f-413a-ba9c-6b56ebd8185d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EA486753E294CB3B11178EA021C4BFC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C76A97275674D7FBE46F9EF21A9AF71 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "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": [ "439" ], - "x-ms-client-request-id": [ "eab8d385-0a2a-4575-a40e-dc1e3cd899a6" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "7cc0074f-1a09-4661-ab32-031aa41d613c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13330,39 +11333,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fab4b03c-4ed2-4dca-9e8d-9eee1feaa8bc" ], + "x-ms-original-request-ids": [ "d89f9793-1052-4979-af39-6d3b5e8755a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "5ace2bd0-d3a4-44fd-b70f-c83dd89da063" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011536Z:5ace2bd0-d3a4-44fd-b70f-c83dd89da063" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ccc94a11-f070-4020-8a78-1c6516212de2" ], + "x-ms-correlation-request-id": [ "ccc94a11-f070-4020-8a78-1c6516212de2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:ccc94a11-f070-4020-8a78-1c6516212de2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECEA89285B704C948075DC19B7011035 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84411A53750C4979B436836369DC836A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "3aed07e2-9811-4ff3-8b07-1cbb18715ef4" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "4762faef-c22d-4e72-95cf-0892125e82d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13373,30 +11377,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d5a2f27b-3684-416f-9e21-7d1c57d7eb99" ], + "x-ms-request-id": [ "17d7c3ea-2326-40eb-b814-3f45fb8e174d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "816c0f83-2871-48c6-ace1-b6732c96a672" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011536Z:816c0f83-2871-48c6-ace1-b6732c96a672" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/88212e22-bfcf-4a95-8f2c-b3980bc28079" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b2526722-cb7d-408f-99f5-912eb0b772f1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060230Z:b2526722-cb7d-408f-99f5-912eb0b772f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B43C83A0BEED4B048E84675076FBC545 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 211EB107E30E48A88370D19CDFDF3631 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-CustomHandleresz8ym7unv?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Functions-CustomHandlerlk9q0p4fot?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-CustomHandleresz8ym7unv?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-CustomHandlerlk9q0p4fot?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": { @@ -13416,29 +11420,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "551b2901-5d05-4427-9c11-08febb7bd466" ], - "x-ms-correlation-request-id": [ "551b2901-5d05-4427-9c11-08febb7bd466" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011538Z:551b2901-5d05-4427-9c11-08febb7bd466" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97be21c9-9b5c-4cab-8e8f-78f9ece0aeb9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "0e7823f4-8558-4834-977b-1ec56632d079" ], + "x-ms-correlation-request-id": [ "0e7823f4-8558-4834-977b-1ec56632d079" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060251Z:0e7823f4-8558-4834-977b-1ec56632d079" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF45E7103D2C4D6DA7BC623A46EE99F3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00C17BA6985A4ABE98DFD2699884E364 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:02:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1403" ], + "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-CustomHandleresz8ym7unv\",\r\n \"name\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800af68-0000-0300-0000-6674d43a0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"AppId\": \"1c45451a-114b-4566-8dab-7f99116847c0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\",\r\n \"ConnectionString\": \"InstrumentationKey=225cfc17-b4a8-4f0d-bc50-ff3d02783c68;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c45451a-114b-4566-8dab-7f99116847c0\",\r\n \"Name\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"CreationDate\": \"2024-06-21T01:15:38.2030237+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00390f-0000-0300-0000-68e7500b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-CustomHandlerlk9q0p4fot\",\r\n \"name\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"AppId\": \"2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a531e3e0-7484-48ea-8dfd-ef86644583c4\",\r\n \"ConnectionString\": \"InstrumentationKey=a531e3e0-7484-48ea-8dfd-ef86644583c4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\r\n \"Name\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"CreationDate\": \"2025-10-09T06:02:30.7826567+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-customhandlerlk9q0p4fot_2365ecb6-a03a-4d03-9da0-f7f040fed90c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerlk9q0p4fot-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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-01+10": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandleresz8ym7unv\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\"\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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlerlk9q0p4fot\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a531e3e0-7484-48ea-8dfd-ef86644583c4\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -13452,43 +11457,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37889C400EB\"" ], + "ETag": [ "\"1DC38E25AB24870\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26adbfaf-0c5f-430a-961a-6ae48655e9b1" ], + "x-ms-request-id": [ "81678942-700f-4e83-ad28-cd6349588852" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "1ea335ee-5c5d-4eaa-ae47-6d5bd39ca8c3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011608Z:1ea335ee-5c5d-4eaa-ae47-6d5bd39ca8c3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3e10ad0-88f7-4328-bb28-fa6f3fec1302" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "8ffb37cd-3d44-4195-877a-a0748279dfbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060336Z:8ffb37cd-3d44-4195-877a-a0748279dfbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91B655010E9C4FD190F0654C7BF5A6D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:15:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BCEACDD7DF943F99D9F27DAEC430B86 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:51Z" ], + "Date": [ "Thu, 09 Oct 2025 06:03:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7545" ], + "Content-Length": [ "8538" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleresz8ym7unv\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-CustomHandleresz8ym7unv\",\"repositorySiteName\":\"Functions-CustomHandleresz8ym7unv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"functions-customhandleresz8ym7unv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleresz8ym7unv.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:15:43.0333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleresz8ym7unv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-CustomHandleresz8ym7unv\\\\$Functions-CustomHandleresz8ym7unv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-customhandleresz8ym7unv.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:02:54.203\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "443" ], - "x-ms-client-request-id": [ "b0591f92-170a-46a3-ae45-c5c90f07a854" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "c93171be-00bb-44da-be2b-b7b25008fc3f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -13498,42 +11503,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC38E27325E560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6ca20c9-bf0a-42c7-926a-bcf9791469d1" ], + "x-ms-request-id": [ "acb04ad5-bd23-42c1-917b-628a800c2b2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "d0b970b8-5c77-4543-8e79-6c494cb6f7c9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011638Z:d0b970b8-5c77-4543-8e79-6c494cb6f7c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9772f79e-03fb-41a6-a3fb-02c6a513e4cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:9772f79e-03fb-41a6-a3fb-02c6a513e4cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93C4E066003747DF9CA7B65E6AB1767D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0516BDBE2884AF7B6477BB86484728C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8403" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleresz8ym7unv\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-CustomHandleresz8ym7unv\",\"repositorySiteName\":\"Functions-CustomHandleresz8ym7unv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"functions-customhandleresz8ym7unv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleresz8ym7unv.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:16:07.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleresz8ym7unv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-CustomHandleresz8ym7unv\\\\$Functions-CustomHandleresz8ym7unv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-01+12": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "444" ], - "x-ms-client-request-id": [ "4888a47f-0301-46ff-af06-8f141949525a" ], + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "f2745c89-22d3-435e-ab4d-f9074e84e169" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13544,42 +11549,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC38E27325E560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32a0998a-ebdb-4ec3-9cef-8e6180d94d46" ], + "x-ms-request-id": [ "70323555-b94d-4296-b30e-e0af6211a4e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "5a8633e5-ac44-43a5-a98b-919bfa14ea0f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011639Z:5a8633e5-ac44-43a5-a98b-919bfa14ea0f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b52792b-8b04-48ed-be22-fa980a831962" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:9b52792b-8b04-48ed-be22-fa980a831962" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B256E3F7C01B4A92AD1D2D03822DD941 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A1D4C23F47C4AE2A93AA86F4F53F3AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8403" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleresz8ym7unv\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-CustomHandleresz8ym7unv\",\"repositorySiteName\":\"Functions-CustomHandleresz8ym7unv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"functions-customhandleresz8ym7unv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleresz8ym7unv.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:16:07.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleresz8ym7unv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-CustomHandleresz8ym7unv\\\\$Functions-CustomHandleresz8ym7unv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "445" ], - "x-ms-client-request-id": [ "8d08c6a0-a2d5-4b5e-8832-a01f08c0470a" ], + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "54857829-5b47-4ee9-a083-fe460f410567" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13591,40 +11596,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50ef6764-3e92-4304-89e3-41cfebc91fcf" ], + "x-ms-request-id": [ "6cbfb769-ee4a-4316-b0bf-e0aef66df8f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "1c41116a-6d6a-40d8-867a-a2959e0bee62" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011639Z:1c41116a-6d6a-40d8-867a-a2959e0bee62" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbb9a501-7f5f-44f7-ba9a-6cf5c4e56604" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "516b8c01-6ee7-45d8-bbe4-6a9dee1c4a89" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:516b8c01-6ee7-45d8-bbe4-6a9dee1c4a89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63B61EFC377848F5863BDA505817C99F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A782EB8CA3F5455593678BD5D7EB090D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1183" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleresz8ym7unv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/web?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "0f88cab2-7ac8-441c-8f1c-e98a12e2e698" ], + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "3cd893ab-ddc9-4aee-b4d8-c76d1c06269c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13636,40 +11641,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f55a114d-da2f-46f0-bee5-3f9364564395" ], + "x-ms-request-id": [ "90d9c5a9-a6d8-4f7b-a517-f7180ea38e71" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "79e9973f-cf9c-4dad-9d77-280d43ad2b48" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011639Z:79e9973f-cf9c-4dad-9d77-280d43ad2b48" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2aacd55-d380-4a63-86f5-034807206560" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bc193858-57c4-4124-bf06-6454075acdb0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:bc193858-57c4-4124-bf06-6454075acdb0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E812EE51B3A147F4967402D0BE1C5EBE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54505C3E6495404D9441F5F6177B6F19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/web\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites/config\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings/list?api-version=2023-12-01+15": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "fe49c6f3-7f07-4366-b0e6-e0941f67ca31" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "5015a9e8-aa89-4f7f-a325-0e1865e317bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13681,40 +11687,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87d91262-a289-4177-a2fb-436d822bca93" ], + "x-ms-request-id": [ "fc93297c-f67f-41ca-9bc0-ff0ed7625eaa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "06301535-20b3-4f35-98c9-bf551f3e39cc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011640Z:06301535-20b3-4f35-98c9-bf551f3e39cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e40df77-9fec-4f33-8742-668102037948" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "abd0f576-bb1e-4500-b4ff-18e54b30735c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:abd0f576-bb1e-4500-b4ff-18e54b30735c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F59621F033B74226AA40E4463C2C17B2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26FC105B42944B12AB8DA063E8C106CE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1183" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleresz8ym7unv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "7fbfecf4-ac1d-4d46-b221-0296a194196c" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "9114c02e-0c0a-434f-9c7c-7c35c9968bf2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13725,42 +11731,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC38E27325E560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9fb5a5ca-922e-458a-ab05-49da11630667" ], + "x-ms-request-id": [ "22d52b1f-05eb-48bb-a9d3-a0c92016e88e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "62e39581-2f49-4455-b4f0-c1ca45992be4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011640Z:62e39581-2f49-4455-b4f0-c1ca45992be4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "73d15d2f-0190-42dd-ac34-bc51f4149c56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:73d15d2f-0190-42dd-ac34-bc51f4149c56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DF19DA1B08A4074A3E073C812367CFF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2815BCA553D42AEA7B8856BC42E30C7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7341" ], + "Content-Length": [ "8403" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandleresz8ym7unv\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-CustomHandleresz8ym7unv\",\"repositorySiteName\":\"Functions-CustomHandleresz8ym7unv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"functions-customhandleresz8ym7unv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandleresz8ym7unv.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:16:07.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandleresz8ym7unv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-CustomHandleresz8ym7unv\\\\$Functions-CustomHandleresz8ym7unv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-customhandleresz8ym7unv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "76688c1f-16d9-4329-988b-f4c330cf1402" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "59307494-66c7-4a95-a91d-acaa850d7754" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13772,40 +11778,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9c81784-0b84-4320-af87-108c40bf6ee8" ], + "x-ms-request-id": [ "0d4cb4cf-66a8-4680-9ea7-df4a727ac39f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "21e43c0b-df0b-41bc-af82-8a8f13dc2f1b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011641Z:21e43c0b-df0b-41bc-af82-8a8f13dc2f1b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3a4d695-3a05-4958-8893-19fa553a8614" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1eb758e2-693e-4e5f-a193-844dfd933785" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060409Z:1eb758e2-693e-4e5f-a193-844dfd933785" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C749D72B4A06467C9456F9B164CE4063 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD333B2F355549ABB8330537DA0DA6E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1183" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandleresz8ym7unv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "450" ], - "x-ms-client-request-id": [ "ee0b1e31-2aa9-4532-9220-a4f8a5a45ab1" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "0311286b-2af1-422a-9ac0-e4e6b6668335" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13817,40 +11823,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8cde8120-24e7-47a7-a8b5-38ff11ebe8f2" ], + "x-ms-request-id": [ "631534a4-35e2-467b-a76c-375b17055c68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "a3915b6e-e497-481d-88c9-1cee9d0b4e8a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011641Z:a3915b6e-e497-481d-88c9-1cee9d0b4e8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e4c018d-4047-43cf-9cef-93562fae54c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0eafdfd9-8161-4c14-aefd-96564fde259d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060409Z:0eafdfd9-8161-4c14-aefd-96564fde259d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CF8E92A688349BEAB4624CF953B4AA9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:41Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8285608269CC4558892E1DCC94EAB32A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv/config/web\",\"name\":\"Functions-CustomHandleresz8ym7unv\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites/config\",\"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.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-CustomHandleresz8ym7unv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "3a07ca33-a213-4186-b406-280bf51cafc8" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "b11ca712-aa46-4eed-905e-ab2ac0e706ce" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13861,19 +11868,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3789850AC8B\"" ], + "ETag": [ "\"1DC38E27325E560\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0716b13f-0c9f-4914-bae9-1bda36f22dd2" ], + "x-ms-request-id": [ "42d9be4e-809d-44a8-8a21-a72d8596f041" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "c8aa1bb3-c37f-4cdd-88d3-c2770d90fd03" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011653Z:c8aa1bb3-c37f-4cdd-88d3-c2770d90fd03" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a8b1a67-473c-4286-a7b1-6cd848e74aff" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "52bcb380-1a6d-4cbc-9a9a-3c37834cddd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060422Z:52bcb380-1a6d-4cbc-9a9a-3c37834cddd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07D84BA6A4E04897BDC0ED60DACD6710 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:41Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AF88DA639704B67A1A1912ED35EFA6D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13887,7 +11895,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13902,17 +11910,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f08301f1-87c8-4694-bbd3-f58f238a5d42" ], + "x-ms-request-id": [ "6015cab1-c58d-46d2-b5a8-ba15b890bb51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "57e1b8ab-8c8d-42cc-a37a-37f0d0bf17b8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011654Z:57e1b8ab-8c8d-42cc-a37a-37f0d0bf17b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/175623a3-bf4a-46e2-af23-b1cbd661d5fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "11903d7a-4fc1-4ec3-8462-367ad9b89e30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060423Z:11903d7a-4fc1-4ec3-8462-367ad9b89e30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D43494FE9280473C8347B68DD9AA126C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5693812AB4084E80A778C7490D76F309 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:23Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13927,7 +11936,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-o7atemdn6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13942,17 +11951,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ab2b803-806d-463c-9a7f-8add6d0a53ff" ], + "x-ms-request-id": [ "ef2e4189-760b-451f-8ba2-f5d53abeba25" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "7894c81a-79ea-456e-b0db-0452eeffb7e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011655Z:7894c81a-79ea-456e-b0db-0452eeffb7e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9e6d99a7-4404-4c2b-819c-64e781b5b5d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0d2740ea-6f35-4e2e-9119-47415a66055e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060424Z:0d2740ea-6f35-4e2e-9119-47415a66055e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10B2F31658954E6BB2453C9220D57CDD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:54Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C99D3A4D2AA457E9DD0FAFAB873816D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:23Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:23 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 75af2579b515..e3d50b2adffe 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": [ "454" ], - "x-ms-client-request-id": [ "92ecf3f8-9e54-4edf-9a4e-d4beef8a942e" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "d66d51d0-fd18-42ee-b492-13d88c7e5a9e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,31 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd6fad3f-be0c-49fa-b5f8-ee27f878d522" ], + "x-ms-request-id": [ "5f93c225-ee64-433b-9ecc-dd8546876593" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0fef507f-61f8-42bd-81ad-e05fd59bc9bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011656Z:0fef507f-61f8-42bd-81ad-e05fd59bc9bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e39d10a0-2d9f-4ba3-b449-be7eaa943b5c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "755edafa-7969-4fcc-8670-7859cc537786" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060425Z:755edafa-7969-4fcc-8670-7859cc537786" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C474CDA5247F4501A4F671763A0FA584 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:55Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE60719CA12E4886B2817C103B5DC56B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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": { @@ -62,43 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378B75454A0\"" ], + "ETag": [ "\"1DC38E2922EB090\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "442a5ee5-285b-4b54-b58b-c7258d60e64d" ], + "x-ms-request-id": [ "5556b0f3-4644-4da9-a52f-1783141782cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "9416d7d7-467d-49df-ae4f-9c643a989032" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011700Z:9416d7d7-467d-49df-ae4f-9c643a989032" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9e698e32-531f-425b-8560-72135ace2275" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "14b41c80-89d9-4a57-964c-4ed9bedc6e36" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060429Z:14b41c80-89d9-4a57-964c-4ed9bedc6e36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 872A841C8D0D4D1CAE6F4CEE726A9C34 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:16:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2115299D14134730AD0A27DBFA1140A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1801" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":41613,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41613\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:16:57.55\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "456" ], - "x-ms-client-request-id": [ "a7c0be57-e8e1-4964-b1a1-bdfc51fc002b" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "824fef4d-20e0-40ae-b2ad-5943ba1c8fd7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -109,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bec38d54-08f6-4aab-8ffc-a79d48eaeecc" ], + "x-ms-request-id": [ "7e0557f1-513e-4846-9a91-2245768b1f24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "c0213b45-a5e8-46a2-81c9-02c8b4b86f69" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011730Z:c0213b45-a5e8-46a2-81c9-02c8b4b86f69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5e39e513-2a42-42cf-b45c-7b689beaff34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060459Z:5e39e513-2a42-42cf-b45c-7b689beaff34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDBEF1977DAB40369734E5A0C56790EF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:30Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E97EF9FDA75472F9C398E7B812D196C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1712" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41613,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41613\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:16:57.55\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "457" ], - "x-ms-client-request-id": [ "a7c0be57-e8e1-4964-b1a1-bdfc51fc002b" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "824fef4d-20e0-40ae-b2ad-5943ba1c8fd7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -154,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbf4dd6d-b3b6-4f4a-8a08-818c1b677dce" ], + "x-ms-request-id": [ "3a5514ed-e8b6-427c-9d3b-eaf362467a2b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "a1738456-43a7-4c56-ae97-b712f069fc51" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011730Z:a1738456-43a7-4c56-ae97-b712f069fc51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0cae6667-6c7f-4d79-b385-7da2386fb074" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060500Z:0cae6667-6c7f-4d79-b385-7da2386fb074" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C65486928B8446D9856625528C87C5E3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:30Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3998ED0FC6A3487B86CD25D8647A58CB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], + "Date": [ "Thu, 09 Oct 2025 06:04:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1712" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41613,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41613\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:16:57.55\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "458" ], - "x-ms-client-request-id": [ "2a73af19-60ed-4a8f-baee-cae41e5b7826" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "1b505d25-c04e-4a01-93fa-3051db5b3d83" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -199,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b89c151c-b2de-4f99-b0af-831027894d4c" ], + "x-ms-request-id": [ "c87825ec-3c76-4f4f-bdaa-d305050d4c1f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "1378fdc5-fe88-4f3f-a7e2-2974d94bacc5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011731Z:1378fdc5-fe88-4f3f-a7e2-2974d94bacc5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aaca93a6-9424-4012-adf8-de9832b2e803" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060500Z:aaca93a6-9424-4012-adf8-de9832b2e803" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FA05A2438814BFFA8869B44ADE716A0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:30Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C52F69EEF6B4922AE68A5C4E6EE8109 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1712" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41613,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41613\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:16:57.55\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "4fbf4e79-349b-43a6-bbe4-30ee897d5bfd" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "073f2b9f-175a-4674-9ab2-8f324073d6fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -244,40 +246,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0538eaff-deb2-4c08-88da-bc1a05e49bac" ], + "x-ms-request-id": [ "4743abb2-b6b5-4d1e-b812-0d6b29c846f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "d64cb507-f7e7-496e-a36f-abcdc7b64386" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011731Z:d64cb507-f7e7-496e-a36f-abcdc7b64386" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d389fd47-b4ee-42ab-bed2-467e68997a3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060501Z:d389fd47-b4ee-42ab-bed2-467e68997a3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8059665BC57E45BA9483419BBE94FF7E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:31Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCE2AEF0F8814253BD0D11D32C4E5CB7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1712" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41613,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41613\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:16:57.55\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "99964907-273d-4890-9116-3b8893724a02" ], + "x-ms-unique-id": [ "415" ], + "x-ms-client-request-id": [ "1d99ac5c-dd94-4fb5-be71-8d50eeebfa10" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -289,17 +291,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12a46592-f14b-4d42-9c3e-60daac5ef45b" ], + "x-ms-request-id": [ "f8c472ef-31ba-453e-bd57-953523e46462" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "7783f872-ab4d-4bf5-9623-da1ddd9757d1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011741Z:7783f872-ab4d-4bf5-9623-da1ddd9757d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70afb00d-f2ba-43a6-9f48-6073df3eff0b" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "65269349-c216-434f-add5-1d52da913a4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060510Z:65269349-c216-434f-add5-1d52da913a4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F427FEEC5CF648B595BBB1B2C161BE21 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:31Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D7CA33CC7424639AA418EEF2A4381D0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:01Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:10 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 082f198fcb49..b1ca0bc9b13e 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 @@ -1,15 +1,15 @@ { - "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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/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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -18,17 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8569ba21-38d0-4849-9d23-990a506689df" ], + "x-ms-request-id": [ "fc35ec4f-1b52-4041-8fd4-b2fd8294a4bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "7e042622-18a2-48f5-aebd-44bba4633ef7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011742Z:7e042622-18a2-48f5-aebd-44bba4633ef7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddf3d61d-db09-4215-9125-bbb32116b168" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a9162740-cd9a-493a-affa-6be2a0f209cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060511Z:a9162740-cd9a-493a-affa-6be2a0f209cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5990451B2BA7496F8DF31E8077B69B67 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D696C67B247B4192A22007E85840443B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -39,19 +40,64 @@ "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+2": { + "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.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": [ "462" ], - "x-ms-client-request-id": [ "5ff74b6e-ae85-462f-9f0c-cc4849ba246e" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "8aa8a6aa-0a48-40b5-b79e-951d92be1603" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d1d0c89e-32e1-497e-acb8-ba539b757dce" ], + "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": [ "4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], + "x-ms-correlation-request-id": [ "4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060512Z:4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 419E5A076BC347CC91174D5499975122 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "11421" ], + "Content-Type": [ "application/json; charset=utf-8" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-pxiydk/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "053ea437-9a47-4312-9adb-df7f10bd8dd3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +109,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80e455f0-9a72-4346-a5f0-3e1bbe52de2c" ], + "x-ms-request-id": [ "2f79aacd-8c90-4093-b4bd-329311856d7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "6797be3d-d56e-4ac2-945f-3bf47083639b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011742Z:6797be3d-d56e-4ac2-945f-3bf47083639b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "608e6ff9-b4ae-4f3d-b848-cac77cad479b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060512Z:608e6ff9-b4ae-4f3d-b848-cac77cad479b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FCC2C39130445069E18A0D40DE26970 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC360238157B488ABAC18511D1F77A7C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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-Consumption-h8frn2/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-Windows-Consumption-m4501w/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-h8frn2/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "c5bcb402-830e-44f5-95ae-fdd23fc6cba3" ], + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "c67ade3f-27d9-435b-9fbf-aba5983bf778" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +154,124 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25cdd4fc-9463-476e-a187-e4996457adf5" ], + "x-ms-request-id": [ "acd62b20-47ac-4184-a77b-f20da75b6a51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "c528ffac-00c1-4fd4-af31-dfeb9983a79e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011742Z:c528ffac-00c1-4fd4-af31-dfeb9983a79e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3d60496c-1816-4e32-9a38-aed3711b8756" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:3d60496c-1816-4e32-9a38-aed3711b8756" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5BDBD0C15344E0CBE22514F2C63AA50 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4C4B2AF38FC40008CFC107C157DF741 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-kylbxe/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-kylbxe/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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "39c2b6ea-2199-4086-a208-fac66c972231" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "cc859341-5559-47d5-92c3-da0448ef0bea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "9b47fbc2-069b-434c-b605-c82b2f85a38c" ], + "x-ms-correlation-request-id": [ "9b47fbc2-069b-434c-b605-c82b2f85a38c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:9b47fbc2-069b-434c-b605-c82b2f85a38c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 08E3509E0B2546168A1B68974F25EC7E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "247" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "421" ], + "x-ms-client-request-id": [ "99920ba9-1b9b-4367-b750-11990960c0d7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], + "x-ms-correlation-request-id": [ "2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BA4C62EC8EA34E2396184707A3E34AF6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "243" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "d6ca5aab-a1fa-44d9-8b10-238912379a9e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +283,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66ca7fa9-84fb-4f89-8e52-ecc72b3dbe66" ], + "x-ms-request-id": [ "5f68215f-b666-4613-b826-a41d8d5d6a27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "529940e9-b40f-464c-bfa2-66cafc679404" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011742Z:529940e9-b40f-464c-bfa2-66cafc679404" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "92037b83-f280-4216-a522-237c5c46f509" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060513Z:92037b83-f280-4216-a522-237c5c46f509" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60D678BBE4CD422EBEAF96DB2FE75F9C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7FC2428314B4069B2174E467C469B99 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1647" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "6eb27169-75c3-49ef-a58d-ef41cf00bf3c" ], + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "99e371e2-1224-47e2-978f-a742fdf619ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +328,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da05ecc2-41c8-43ec-9165-451acf673ed4" ], + "x-ms-request-id": [ "d1276430-5e5a-4892-8d36-44892b4fc87b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "b7d57230-54bd-4cde-946f-a834de0571c1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011743Z:b7d57230-54bd-4cde-946f-a834de0571c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "44c999f1-0fbc-4139-914d-aed3e3069c50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060513Z:44c999f1-0fbc-4139-914d-aed3e3069c50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86FE292C3EE84295B2318CF746B94F9F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D09F5DA4E4D483AA14870A0DD1AE3F0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "466" ], - "x-ms-client-request-id": [ "4ad97eec-0388-4cf6-9754-7d1de56931cc" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "5887a8e4-c924-4ba2-8e16-6374945ceceb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +373,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dca1c4c0-fd04-4fe7-9dc1-09abdda568d4" ], + "x-ms-request-id": [ "5fa6ae9d-95fa-4d55-9f9b-c27ab2db078d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "9c30ac01-491e-4f6a-8065-0cbf84dd672c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011743Z:9c30ac01-491e-4f6a-8065-0cbf84dd672c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "01b849ad-65d4-42d3-adb3-743bdd8f7c23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060514Z:01b849ad-65d4-42d3-adb3-743bdd8f7c23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 863EB779136249C8BB47F5C474BAA954 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70B6889BDE9B4796B01499530A18155C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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.Storage/storageAccounts?api-version=2019-04-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/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": [ "467" ], - "x-ms-client-request-id": [ "719d3d09-a308-4b9e-9ff4-0dd719e8ce4b" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "96ca745a-65fa-4084-a273-544aa7f26546" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,39 +417,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2045a320-3e7d-4c9f-af7c-adc2e2def03a" ], + "x-ms-original-request-ids": [ "0348a736-46b1-4b09-bcc8-692c978c422b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "b3f12abd-126c-4d5b-9b4b-56cf2e407281" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011743Z:b3f12abd-126c-4d5b-9b4b-56cf2e407281" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ae7aa257-e616-42b7-b888-bd848053e7ea" ], + "x-ms-correlation-request-id": [ "ae7aa257-e616-42b7-b888-bd848053e7ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060514Z:ae7aa257-e616-42b7-b888-bd848053e7ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37530493C2124E488C08C21E93E70E82 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C5AD193E8224B5B8F69E030D94AD8B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "27d00f97-1b79-43f4-a641-4884c40ca446" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "f5b4fc21-627d-4c63-a4c7-a7a5e66043b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -330,30 +461,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "039316e1-e8f6-4115-9576-fc23f4994ee0" ], + "x-ms-request-id": [ "198836d1-bf73-4321-afb6-bfdfbdeafb74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "b97ecb82-a453-4ac6-8e44-ec6b5c508864" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011744Z:b97ecb82-a453-4ac6-8e44-ec6b5c508864" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fcd84cba-e0c4-4cb4-a67a-051d6380d74f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "dfef59ea-69f1-458d-9fe5-e020c4461582" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060514Z:dfef59ea-69f1-458d-9fe5-e020c4461582" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54A6AACA3982415F94B8B77314668681 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C5108ED4B854794A1EC662E142A7747 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1?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": { @@ -373,35 +504,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "9f056b6c-11fe-442c-bcc3-f754158688ef" ], - "x-ms-correlation-request-id": [ "9f056b6c-11fe-442c-bcc3-f754158688ef" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011746Z:9f056b6c-11fe-442c-bcc3-f754158688ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c7aac46-3297-48b3-8f11-981b0a98148d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], + "x-ms-correlation-request-id": [ "0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060522Z:0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C2043BCB331428D916F25B1742FC215 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:17:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4570E5358954FB78D56D528B139ED5D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:05:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e96a-0000-0300-0000-6674d4b80000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b417-0000-0300-0000-68e750a20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"name\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"AppId\": \"bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\",\r\n \"ConnectionString\": \"InstrumentationKey=0c0a27c4-e522-4085-afb0-22bef589eac2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\r\n \"Name\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"CreationDate\": \"2025-10-09T06:05:15.4782138+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-mj4vdfk5w1_bc4b7d5d-9334-4e3d-a76a-8254a44a5086_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-mj4vdfk5w1-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-mj4vdfk5w1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1919" ] + "Content-Length": [ "1790" ] } }, "Response": { @@ -409,43 +541,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378D4DA0240\"" ], + "ETag": [ "\"1DC38E2B4725B70\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "749a6275-556c-4445-a69c-77342b0823b6" ], + "x-ms-request-id": [ "28261ec7-4ad3-4fef-b78e-09d2e9803061" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "50d03bea-3959-4d84-9dc4-e0ae81bd7804" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011812Z:50d03bea-3959-4d84-9dc4-e0ae81bd7804" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/080e0e17-6c54-4dfe-89c5-2b601e166fc7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "aa41d7b5-4754-46ad-baba-f424f82b59f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060605Z:aa41d7b5-4754-46ad-baba-f424f82b59f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DACF23DB512438E9F1AF5D7E618862D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:17:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85096F2D7C0D4ABAACDE131987ACDEC6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:23Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7754" ], + "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:17:49.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:05:24.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\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "471" ], - "x-ms-client-request-id": [ "c09cd84c-6230-4e6e-aabf-d59af101858b" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "142f3149-bd2c-404d-afdf-65ab5614d8aa" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -455,42 +587,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "ETag": [ "\"1DC38E2CC4D88F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cf2c953-3643-464c-b8d8-d27dd67bca44" ], + "x-ms-request-id": [ "ac4b083b-6eff-4121-820d-a2c4c1001f66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "26f6a2d1-a634-4f27-b532-75682d68e644" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011842Z:26f6a2d1-a634-4f27-b532-75682d68e644" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ca82acd7-5d9e-49d4-b8f3-03b73c60da51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060636Z:ca82acd7-5d9e-49d4-b8f3-03b73c60da51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 307E008F92D947A0BED4E8852F550852 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7661311A83B24709ACB2DF2466AF4B81 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:18:11.7233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+12": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "034067c6-ee5b-4bd6-a287-337fa2bd32df" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "eb70b69e-410d-4aa9-b47b-f78decf159be" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -501,42 +633,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "ETag": [ "\"1DC38E2CC4D88F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2039b927-7343-4a60-ade0-fccb4801623a" ], + "x-ms-request-id": [ "75bfc770-9b0c-413f-87ee-33de8f800b67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "e128e68d-f914-43ca-a018-f379e36d6c19" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011842Z:e128e68d-f914-43ca-a018-f379e36d6c19" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1bacf7d2-52f2-442f-a874-71408a2ae919" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060638Z:1bacf7d2-52f2-442f-a874-71408a2ae919" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9196A5D452B4069B3546EEC4335FDA6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A213D489F9224EDA95CDE852378F88BE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:18:11.7233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "dc6d8b11-fdf9-4f55-ac8a-794c005add64" ], + "x-ms-unique-id": [ "431" ], + "x-ms-client-request-id": [ "86af737e-523a-4fd0-aa22-af61ce5d2201" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,40 +680,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62f91fd6-29df-4d10-863f-e51f88876c49" ], + "x-ms-request-id": [ "90d9a2d4-0f00-4f07-a1d2-b43db82940af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "82d5456c-d845-4389-bc31-ab7c9402eed7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011843Z:82d5456c-d845-4389-bc31-ab7c9402eed7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0429f8b1-5980-4722-a789-d6264567fe41" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8f57dc31-51d2-49d7-8da9-cf4836387d4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060638Z:8f57dc31-51d2-49d7-8da9-cf4836387d4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E0462F79FF0476D85AAD20CDD5BAAB4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74B95F72F61B43BE8B740E6EEA2701B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "c17ade09-d0d6-4576-92be-12245e4437f9" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "5a4c2d64-66e7-48ad-bd98-9ad2a20934f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,40 +725,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea5bd549-1dce-4395-a775-146a359b7198" ], + "x-ms-request-id": [ "61234961-5617-43f1-933d-535a0a790ade" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "3375ed64-b4a3-4f83-a90f-5ca6febfe74f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011843Z:3375ed64-b4a3-4f83-a90f-5ca6febfe74f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/594cc8bc-9c1a-4877-939c-fcd04e766cad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6d79c10-e0c8-47e0-8c7f-eacb65f51b57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060639Z:c6d79c10-e0c8-47e0-8c7f-eacb65f51b57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57CBA66602B34522A01E5EA1DDD7F65A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AF0212F907A46A6936672B01AC1C2C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26368,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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-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+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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01+18": { "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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "26fada59-c11d-47c6-bb5f-1fe2d7327f2b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "07d76285-5cd8-4c05-94f3-91e5a1a120b7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -637,39 +770,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E2CC4D88F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b3dab92-4038-4e20-a384-e83879b763c6" ], + "x-ms-request-id": [ "2e514994-49bd-42bf-a846-62d430aae7ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "4a8ffc58-28d9-4348-a37e-d841e3064750" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011844Z:4a8ffc58-28d9-4348-a37e-d841e3064750" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "76fc1ea4-fd64-49c7-ad28-665b01fa6368" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060639Z:76fc1ea4-fd64-49c7-ad28-665b01fa6368" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4F610B6F12F48E7BAED45E814D3B44D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC541FC8309B4980A0AA9DD02C9B0CF0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "8432" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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}", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "f4d4b559-7b30-4301-848b-b894d2f7b7b0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "205" ] } }, "Response": { @@ -677,43 +816,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378FA14A600\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4909619-33d8-4003-9946-72fd6b99ad82" ], + "x-ms-request-id": [ "21f8e309-597b-4da4-8aca-7307439b8feb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "889c6112-ddd9-4569-9c6e-81084bafeb8e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011852Z:889c6112-ddd9-4569-9c6e-81084bafeb8e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c37b1775-76e0-4a96-b14c-5ad22ac96f93" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ed693dbe-4f99-4c3e-aa6e-f8f249671b89" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:ed693dbe-4f99-4c3e-aa6e-f8f249671b89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E59250C966804ABC852BA0FAB7A42AB0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:18:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:18:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8855AF3DCE3E44D48A665C3CC8E8381F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", "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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "1e69405b-23d1-4c31-b6f9-947df8ac3672" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "c29fa8a6-4a0c-4d4b-ba45-426e46b3dc6b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -724,41 +862,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28290488-73b4-4280-9418-3bcd3e89f6af" ], + "x-ms-request-id": [ "8aa41826-2be2-4ef6-9e7c-067bf67c863a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "98c10c8a-ca95-4c7f-b4ab-683715674b0c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011922Z:98c10c8a-ca95-4c7f-b4ab-683715674b0c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/091c2d42-296f-4a72-b3cc-eba06c34b16e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7fdc3312-b378-4cd5-bc2e-6cade398020b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:7fdc3312-b378-4cd5-bc2e-6cade398020b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C02C9056D9674D47830FA4E250EE6B0B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59C0F4AE964A40978677ACB6A3A67F12 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "478" ], - "x-ms-client-request-id": [ "1e69405b-23d1-4c31-b6f9-947df8ac3672" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], - "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "1ade9ae5-02b2-49ca-9db9-c1919b1afa2d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -769,43 +908,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5ea9b8f-61ca-41a2-8beb-0c9f95be4dfc" ], + "x-ms-request-id": [ "a53e74d0-2a16-40f0-a8ec-4ee23cf6becf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f62d213f-ca1c-4009-b5ff-e37f20d6789c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011922Z:f62d213f-ca1c-4009-b5ff-e37f20d6789c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4be874a-d790-430e-b5d6-20fdeee53d34" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "be79be5c-fc83-408b-9698-13bdb402e4aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:be79be5c-fc83-408b-9698-13bdb402e4aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1A75E340165442FB4BE472330025D55 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 465973A7C27E4FCD917B5E7D75B5BACD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", "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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-mj4vdfk5w1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\"\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": { - "x-ms-unique-id": [ "479" ], - "x-ms-client-request-id": [ "3e0eead4-35cb-412d-904b-3fbd0e104930" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1872" ] } }, "Response": { @@ -813,42 +947,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E2CC4D88F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "659ae678-fe61-429c-80dd-312598703c85" ], + "x-ms-request-id": [ "ab9e6482-d0c2-4d8e-ac96-9d9efcd80aa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "6205d135-80f4-4f36-ae2e-8dd2a0ee1391" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011922Z:6205d135-80f4-4f36-ae2e-8dd2a0ee1391" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df6ea2b8-a9b8-48c8-ba6d-c413fa6f64da" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6ca2e51a-5d09-4bd0-81ff-8f2ec88e9a33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060644Z:6ca2e51a-5d09-4bd0-81ff-8f2ec88e9a33" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F4588089AEA445ABDF4ED54642352AD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 699912782B0C4B77A7925C3EC64817CE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:06:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "8706" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.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\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "53633868-38b8-488e-bee8-7bc7b10617aa" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "030895c5-80a7-44d0-b80f-fd2f0c58c828" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "ParameterSetName": [ "" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -858,42 +993,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "ETag": [ "\"1DC38E2E2C88A30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aecd48b7-bf54-4a04-b74f-8934834c2e5a" ], + "x-ms-request-id": [ "c23f8fcc-c451-4ced-ac5c-071fa68312cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "9d47f0bc-4db3-49b1-b037-a677941cc77a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011923Z:9d47f0bc-4db3-49b1-b037-a677941cc77a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62739ae3-e962-4705-b42b-0d59cf96f3be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060714Z:62739ae3-e962-4705-b42b-0d59cf96f3be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48236CCD9A1D49EBBCBB0B223BB19928 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9814B58DED54D8BA7C368F3903DC3B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7555" ], + "Content-Length": [ "8572" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:18:11.7233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "08dc0662-8e46-4d26-b6dc-61d1c3de1d6f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "6dfdb434-6468-40e2-951a-8e4576a7dd52" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -904,41 +1039,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E2E2C88A30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1822c44f-2ce9-4200-99ec-12fbbeea092c" ], + "x-ms-request-id": [ "f523c821-efbd-45ca-be7c-bffda5d62fcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "c8eccd29-8e51-4e08-bb5c-7e09727e4607" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011923Z:c8eccd29-8e51-4e08-bb5c-7e09727e4607" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9801ca0e-0f0c-43cb-811c-8da496a2fccd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:9801ca0e-0f0c-43cb-811c-8da496a2fccd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBB9CC44C2694FF8A8BB6E57395B6BCA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B31D3269F6AB4D1686ADCA0DF221A8E7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:16Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "8572" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "25a3b053-09c2-4770-85a4-d859393c2456" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "1122e01c-bcd5-4cec-b60e-140ba50a5718" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -950,40 +1086,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c75b381-692f-44fb-b748-d51f4edbe8bf" ], + "x-ms-request-id": [ "4f5527aa-2adc-459f-9552-d23a3afd0ea4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "45f8e32c-a7c1-484a-9824-e556a1d78178" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011923Z:45f8e32c-a7c1-484a-9824-e556a1d78178" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9e495b3-c7bc-4ee7-933b-442a81b337b3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "99f5895c-bd58-413f-83de-6e02d9901aff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:99f5895c-bd58-413f-83de-6e02d9901aff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A328846A68348488FF2107B639E7452 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33385D684A674681BAF262C92F0B1F98 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26368,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", "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+23": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01+26": { "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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "483" ], - "x-ms-client-request-id": [ "029c213d-d190-467c-8b7d-c1a48258ed9c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "1e2519a3-bab5-46ca-9810-c9c5af6f59f0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -995,40 +1131,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b7c3dc8-0fbe-4ec7-a293-9edc35d21864" ], + "x-ms-request-id": [ "0abbe1ae-205b-4431-9d90-c8cc60df6bbb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "5b50f5fb-d20e-4cf7-b551-084ea06acc97" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011924Z:5b50f5fb-d20e-4cf7-b551-084ea06acc97" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36548874-92bc-4cdf-90ad-3826ddd0070f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dcef4cda-49a2-4966-af31-ac6896669bb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:dcef4cda-49a2-4966-af31-ac6896669bb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC3EF0B2254846178D95C67AE14F4EC6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D203B8025A374C54AF589F1C4D9275A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7916" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554973,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29163,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+27": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "ef169e2e-4a2a-48ce-8646-f4e6b6011e51" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "4ef1c4cb-ede7-4f3e-9798-d05b2ef8fa71" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1039,134 +1176,124 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E2E2C88A30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c74b3994-53e5-4efb-971d-ebb950fb8978" ], + "x-ms-request-id": [ "f3625d88-a20d-41c8-a383-fdad0324dacf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "0994a992-2f4c-42b5-9f4c-8aa38287f202" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011924Z:0994a992-2f4c-42b5-9f4c-8aa38287f202" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9d6ed6f7-f606-4a84-9631-912551191469" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "861aa393-cf82-4f42-8d82-5ec976b5a465" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:861aa393-cf82-4f42-8d82-5ec976b5a465" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A24FC37A12564E0093DB1A3F17A014D9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75063C1A5D2849E3B15B7C7B8EBED1BA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": 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-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "56704342-3605-4e4d-b102-874d46626376" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "443" ], + "x-ms-client-request-id": [ "f6780163-b23e-4859-8e19-20b5653db35f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "7bb99476-df83-49ba-abf9-fc2d618f50e6" ], + "x-ms-correlation-request-id": [ "7bb99476-df83-49ba-abf9-fc2d618f50e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:7bb99476-df83-49ba-abf9-fc2d618f50e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db19e88f-e6d2-4034-9e2e-e71e55b99e16" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "b1686430-e531-4539-9ee3-c2e3044395e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011924Z:b1686430-e531-4539-9ee3-c2e3044395e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F617596A90094DFE907D5776AA21952E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7B9AC847A524D94A4EFE95704470B2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "a39a7d9a-97a7-42a7-9c9b-d3d5b78cb354" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "d7534a92-ccf0-4756-8734-877415d1dafe" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "e18e057a-152e-4c01-9af9-b2e7a92204d0" ], + "x-ms-correlation-request-id": [ "e18e057a-152e-4c01-9af9-b2e7a92204d0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:e18e057a-152e-4c01-9af9-b2e7a92204d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20f1b673-23f9-4123-b6ed-73793d3e6aa2" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "2acd4219-0b37-45ea-b48d-0b05683538c3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011924Z:2acd4219-0b37-45ea-b48d-0b05683538c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0062438594E4C60B3399A1751468FAB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F921DAEE487E491B9DDB5627FBB20296 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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/providers/Microsoft.Web/checknameavailability?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", - "Content": null, + "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-5f2nspxwh0\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "487" ], - "x-ms-client-request-id": [ "69a8f5e1-86cd-423e-8250-c63f64e77dfc" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] } }, "Response": { @@ -1175,40 +1302,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94d894ca-d34d-4e5d-896d-ecf43810dfd6" ], + "x-ms-request-id": [ "87b9ae06-5a41-48e6-b62b-190638e9e237" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "99394ee6-9c1f-4476-bcea-807036c07f08" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011924Z:99394ee6-9c1f-4476-bcea-807036c07f08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c744b1b-0a29-4865-87be-39f028e54f43" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "61d25495-ecf4-48e4-a3fd-e991aea04294" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060728Z:61d25495-ecf4-48e4-a3fd-e991aea04294" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F02D68DA5744011A630A75890FF6F89 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A642ED6F11BD4A58858FD646C3FD1197 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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/providers/Microsoft.Web/serverfarms?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "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": [ "488" ], - "x-ms-client-request-id": [ "3b29828d-1ea1-4cdf-95a1-d9412bfefe50" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "89849f27-25bc-425c-a61f-2b165cd67a8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1219,41 +1347,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "77937cc7-d1bc-4958-86f9-61e636c43848" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d3fe53c-5cf9-44ee-adb1-a041f37e38be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "bc60dbdb-5ffc-433a-81f4-15e6b41b232d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011925Z:bc60dbdb-5ffc-433a-81f4-15e6b41b232d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], + "x-ms-correlation-request-id": [ "cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060728Z:cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6D6EB07535E4E63BF002B842BB5F0DE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8B5CFB5878745ACA779EDF19D9AA75D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "11421" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-Linux-Consumption-pxiydk/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-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "8161c5df-f5eb-41fd-b074-532e45c9b953" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "71c4a563-3317-4ab8-b752-7174a29fea29" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1265,40 +1393,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "986a141d-b6cc-4a77-8662-e19058fedfaf" ], + "x-ms-request-id": [ "eed55611-3b54-40af-a4f3-6d713bf072a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a2f3d31d-7489-4611-8e28-09822448690d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011925Z:a2f3d31d-7489-4611-8e28-09822448690d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "70d9abca-6679-4b2a-b912-881250efd1b0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060728Z:70d9abca-6679-4b2a-b912-881250efd1b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 431BD50DD9DA4CE4B1D6E6B492D003BA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAA64F218C6B43E098670C15DBB134F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "490" ], - "x-ms-client-request-id": [ "354eb709-2c3c-4dbd-a459-56b8b29088c4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "3e9e8f55-2505-4506-aaf5-a1888be51d66" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1310,127 +1438,124 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14916f02-0aba-499b-92a8-e492ff3ffc10" ], + "x-ms-request-id": [ "b938a9e3-e6b9-4f4f-8bcf-65dd29671d53" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "5a5e4de4-3d75-4f55-8e7a-188fb116ae82" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011925Z:5a5e4de4-3d75-4f55-8e7a-188fb116ae82" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7f96af21-3645-48e2-ae78-74769337316a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060728Z:7f96af21-3645-48e2-ae78-74769337316a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 897C1AAF723C4EF09BD90A361EE89432 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB058BFB47A846C0A1C7DBA35F61A72A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+5": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.2\",\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_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "449" ], + "x-ms-client-request-id": [ "598de5e8-b9fa-4474-8f40-0621534dbc70" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1943" ] } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC378E212EAB5\"" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], + "x-ms-correlation-request-id": [ "aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad172ce0-e855-4f82-8638-c7a26e1f2e4e" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "9efb15a3-34b7-4fd6-86aa-f9f818499c77" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011927Z:9efb15a3-34b7-4fd6-86aa-f9f818499c77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D301F1647514B69A8A9785351FC3FBF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E001A73FA0474522A72155D3A6A8FB3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7754" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "247" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:19:27.1866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "d34ea95d-d655-4ce1-9d73-9bd3f8293435" ], - "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], - "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "cea09390-c011-450c-aca9-2be9606d142e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "27bd3571-11f5-4eb1-81af-25abca02f11a" ], + "x-ms-correlation-request-id": [ "27bd3571-11f5-4eb1-81af-25abca02f11a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:27bd3571-11f5-4eb1-81af-25abca02f11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f72e32e5-8950-4dfa-89df-1412a111648b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "e00ef775-7b67-4d5e-863c-db7b98b77e95" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011958Z:e00ef775-7b67-4d5e-863c-db7b98b77e95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A974C3860274CE8A12EE5D8B2D33CA7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:57Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E88FE0E70C334507A11341C480A0920A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "243" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:19:27.1866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "290866af-2882-478c-9bb1-9eb03ef7a04d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "c8507421-e3d9-488a-bfe8-da4b2001e398" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1441,42 +1566,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1886dc8d-b1f6-41a4-a0f6-bf15e8d4ae85" ], + "x-ms-request-id": [ "2c3a921f-a14c-4b0a-be23-7d653896984b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "70124be1-f773-466f-acbf-0f0e9fb37371" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011958Z:70124be1-f773-466f-acbf-0f0e9fb37371" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "854ce9a0-7598-4ad6-abbd-1d7ce78e2a6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:854ce9a0-7598-4ad6-abbd-1d7ce78e2a6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01AAFC8268144FBEB1BC50DF40CEEC74 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0CD675595E0429083D60356AD8A2BE5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], + "Content-Length": [ "1647" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:19:27.1866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+8": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "5529012b-6b42-44c6-b87a-abec8117418f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "97d945f7-10be-4e9e-8368-86ce078eefd6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1488,40 +1612,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9d7d5386-5ec1-4f46-ad04-b20f19235b1f" ], + "x-ms-request-id": [ "eb0305d2-1b25-4780-9c52-c5c58b030bbf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "77e3a1fd-5aca-4a85-8c29-fa49514d5eeb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011958Z:77e3a1fd-5aca-4a85-8c29-fa49514d5eeb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a5df9cf1-437e-423f-9b27-059ebf934a69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:a5df9cf1-437e-423f-9b27-059ebf934a69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAF99105A1134E9284BC92D134B79E9D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 520CC832F5224BAB984A9BA2C04EA4A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "f5b2fe29-e0d8-4d95-b4e7-a3cec6329155" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "c466a13d-0a07-41ac-bd40-a92c2ce1edd9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1533,40 +1657,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26ea637c-cc3b-4b97-9923-f81ec0f66287" ], + "x-ms-request-id": [ "e3f17bd2-5dd8-45a2-ae01-030fd78c9902" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "b1e10b10-ae0a-4f6c-b986-38e5c4c45464" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011958Z:b1e10b10-ae0a-4f6c-b986-38e5c4c45464" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5d7273bf-4b98-453a-a2b9-be270a60f778" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:5d7273bf-4b98-453a-a2b9-be270a60f778" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EED2BB54EA524C9282D3DE4F8B6F850C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3886D04D443146A38EA8BD6F0DA5DD77 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26368,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "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": [ "496" ], - "x-ms-client-request-id": [ "e5a5da2a-1ce0-4232-ad01-d2983b378feb" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "e536d11a-c839-422b-a656-e8d36d77714b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1577,42 +1701,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], + "x-ms-original-request-ids": [ "85806290-57ba-49d5-a91b-232ad1f09dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "97c844b0-ed26-4535-a3b0-d68a32340d5b" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "bce4bb6f-b1d0-4453-ae44-9bbec0a41883" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011959Z:bce4bb6f-b1d0-4453-ae44-9bbec0a41883" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], + "x-ms-correlation-request-id": [ "23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060730Z:23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E058582C02D74D7E8B32FF6EA4C11727 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E12F648E2C6D42A6BAAA10D8AC5ED2AA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7550" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:19:27.1866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a5c09a90-901c-4c03-acbc-daeec15fee64\"}}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+37": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "497" ], - "x-ms-client-request-id": [ "62913126-a707-4466-95c8-86f4e52a402f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "455" ], + "x-ms-client-request-id": [ "568055a2-36a9-4eab-b3c1-963a34afe486" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1623,89 +1745,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5b3aaf03-2300-4714-8b91-e9a0d9983a93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e45ee2be-a5df-44e1-8142-c2d2faf83f80" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "c440d776-2802-4606-a5ff-7e8b7cfcc7f2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011959Z:c440d776-2802-4606-a5ff-7e8b7cfcc7f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6c370ec8-00ac-49b8-80ef-a4c4d180d35c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6212c994-db9d-4c6c-9539-0fb4e09e7deb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T060730Z:6212c994-db9d-4c6c-9539-0fb4e09e7deb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BACBFA975E94EE9954D1EF3001EB834 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2615A7D4559A48B994C2D17A71273C84 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+38": { + "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2015-05-01+12": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-5f2nspxwh0?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": { - "x-ms-unique-id": [ "498" ], - "x-ms-client-request-id": [ "ce0fefb3-2634-4599-937f-9a6942e06d93" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "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": [ "3c3b315c-6c83-4824-bd4e-31356abbb187" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "bc3e0df7-9f08-427e-b035-0ac0e6e27016" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011959Z:bc3e0df7-9f08-427e-b035-0ac0e6e27016" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F273B85B1A2E491CBF929F7EC7D0EE8B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4130" ], "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26368,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+39": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "499" ], - "x-ms-client-request-id": [ "8c158e42-8965-4e7b-a73d-d15354d5b092" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { + "Content-Length": [ "116" ] } }, "Response": { @@ -1713,39 +1783,41 @@ "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-ms-request-id": [ "74514974-8b4e-456e-aacc-a6d2c08e22c6" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "5bf80c81-ba0c-452c-ac4a-9eb489584761" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T011959Z:5bf80c81-ba0c-452c-ac4a-9eb489584761" ], "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/8b380a11-2765-41c0-b811-55266240b5ac" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "d53d1e68-e560-4bc0-b421-97d1508b766d" ], + "x-ms-correlation-request-id": [ "d53d1e68-e560-4bc0-b421-97d1508b766d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060752Z:d53d1e68-e560-4bc0-b421-97d1508b766d" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C87026DB6EAC4E348828DCB49F5AAA67 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:19:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D92B12789B59479181AF18CD7C24E67F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:07:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "1684" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a009520-0000-0300-0000-68e751380000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"name\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"AppId\": \"485971cc-b36d-44d5-b806-e6b6577a78f5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\",\r\n \"ConnectionString\": \"InstrumentationKey=3b594e82-228a-41ab-bbc1-c8f7074fd084;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=485971cc-b36d-44d5-b806-e6b6577a78f5\",\r\n \"Name\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"CreationDate\": \"2025-10-09T06:07:31.0176348+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-5f2nspxwh0_485971cc-b36d-44d5-b806-e6b6577a78f5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-5f2nspxwh0-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+40": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.2\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-5f2nspxwh0\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1933" ] + "Content-Length": [ "1790" ] } }, "Response": { @@ -1753,43 +1825,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3790F0DB52B\"" ], + "ETag": [ "\"1DC38E30D65A890\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d73ed022-224f-482c-9a1c-54fa4003e3a2" ], + "x-ms-request-id": [ "16da02a0-71ba-4acb-b52f-e83357e5215c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "26484db6-2abc-40bb-a707-a09eeeed6612" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012002Z:26484db6-2abc-40bb-a707-a09eeeed6612" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d917cb73-57cd-43ed-9c1d-b49946e91c42" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a2d9e406-bb88-474b-8723-6728f5522b5f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060835Z:a2d9e406-bb88-474b-8723-6728f5522b5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6624E07E3BB1421A8FBC42C976B807A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:19:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 219D8F2A3F894BB8994B610DA3451E6E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:52Z" ], + "Date": [ "Thu, 09 Oct 2025 06:08:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7609" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:01.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:07:53.993\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+41": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "4d5678f1-42bf-4e6d-bc0c-edadf2dce427" ], - "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], - "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "7f1167e8-3184-4e0f-903d-aed41b30e8eb" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1799,42 +1871,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC38E32569E1E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53eb1d4e-a6fd-4e57-9e0d-2630705c8f00" ], + "x-ms-request-id": [ "4dcb2cff-a284-402f-95d5-1b3e1ed86979" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "7a7304b9-8b07-4ed4-a372-b0b696c634b9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012032Z:7a7304b9-8b07-4ed4-a372-b0b696c634b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "400a9d98-9ab9-41d9-90a1-785f96de7fcf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060906Z:400a9d98-9ab9-41d9-90a1-785f96de7fcf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8DDA4B7DCB64DF4A341693EE5817616 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:32Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8D22C46671E4171BB2AFCCB03B47A0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:05Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:01.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+42": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "502" ], - "x-ms-client-request-id": [ "bc96d7a4-973b-4f61-980d-04272189d9a7" ], + "x-ms-unique-id": [ "459" ], + "x-ms-client-request-id": [ "498b11ca-087d-4f03-aecc-adc406f65f03" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1845,42 +1917,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC38E32569E1E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd96df07-d8fa-4d82-adc4-4e20b45bde65" ], + "x-ms-request-id": [ "c19c1fcb-8e81-4a47-829a-86f38384aac6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "d9ffd690-a5e1-4f9d-acf9-5058b3d72ade" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012032Z:d9ffd690-a5e1-4f9d-acf9-5058b3d72ade" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c31c1987-2f16-4f8b-a654-9803c6f1d5b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060906Z:c31c1987-2f16-4f8b-a654-9803c6f1d5b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12AD73C75546447FB8C59EA048DD8ED6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:32Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70F7043460AF418B88CE46222408F779 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:01.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+43": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "3bb19f04-e274-4bc3-918b-56a2d408851a" ], + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "e67140da-a9ba-434f-8a69-eae7ed0e4b85" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1892,40 +1964,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14df7118-97e1-43b0-960e-8d221551bdcc" ], + "x-ms-request-id": [ "e21eab56-c86a-46c0-8450-c4567db6a153" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "14462bb8-ab84-42d4-ba2c-2a9eb583b6b1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012033Z:14462bb8-ab84-42d4-ba2c-2a9eb583b6b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d15fce92-040d-4977-b15d-96d7b6ff90c9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6cd53287-95b5-4f00-9dd3-838500f1b68f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:6cd53287-95b5-4f00-9dd3-838500f1b68f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E11EC4FC5974825BC4CDA5D2A266A63 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:32Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83A3119ABFD7404DB3B864F8FFCB5DB0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+44": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "504" ], - "x-ms-client-request-id": [ "bc3045dd-5cc2-4597-8148-4a2c34c883ee" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "f23da75d-6cf2-4e7c-8063-c98a362c6431" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1937,40 +2009,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62f98fa0-2515-4cfe-ba98-b38ddeaff93b" ], + "x-ms-request-id": [ "01213e6a-5a2c-414d-8616-66e06907aecd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "e8c389bf-a4bb-4485-9c73-fb2dca0f2120" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012033Z:e8c389bf-a4bb-4485-9c73-fb2dca0f2120" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/249782b1-b9bc-4738-88e5-66d637c49867" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5c9bc168-0355-47b6-bb2a-a11334096f25" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:5c9bc168-0355-47b6-bb2a-a11334096f25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 39A20BC78B3C4181B1943C5C3C59ACE4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFE2DA1268CD43AA8B1FA316E4509686 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+45": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "505" ], - "x-ms-client-request-id": [ "94e781d9-a73c-47e1-b76e-38e685ffa8d6" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "ce473e2c-261f-4608-a47d-42b5c41870b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1981,42 +2054,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC38E32569E1E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe32f954-f7d5-494c-99a0-24cb149fbe58" ], + "x-ms-request-id": [ "f2f992d3-81e7-4135-b41c-2b7615312047" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "67e1c36d-55fd-4ff0-abaf-25fa608e008d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012033Z:67e1c36d-55fd-4ff0-abaf-25fa608e008d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e884f704-7290-48a7-b059-746e408d3e28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:e884f704-7290-48a7-b059-746e408d3e28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55B14917FA4B4415892251790EAA069D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E14301641A0F4DC79BC7ADA4EB368C51 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7405" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:01.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+46": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "55c8366a-ae7a-4571-a548-254bcf63441e" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "822171da-96f9-4591-b736-320c7cd8fb69" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2028,40 +2101,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05bb15f4-62aa-444d-bfcc-2d0d879cc623" ], + "x-ms-request-id": [ "eb9bd677-b913-46af-b891-6b88db46df7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "50e32703-dc5a-467e-9c7c-62be79ce430a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012033Z:50e32703-dc5a-467e-9c7c-62be79ce430a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/404241b5-4387-482d-b806-314a14ab05e4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0d69d969-d142-4b05-9208-53e3c80991be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:0d69d969-d142-4b05-9208-53e3c80991be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C24C2ED3DEE4F08BF85C2915C1465CD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:33Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4121020E32664B089BD92CD41C8789E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+47": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "5968e2c2-85ee-4bb1-9e8c-e8f86faf51ed" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "c619a651-6947-4563-943f-4216388389c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2073,40 +2146,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c44c6ec9-a2a7-4ece-8603-19f2df7e3ac6" ], + "x-ms-request-id": [ "7e099cba-d76f-4817-8f9c-03cb2950b771" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "c2bed4bd-fafd-4e30-a136-7b78b5bd422f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012034Z:c2bed4bd-fafd-4e30-a136-7b78b5bd422f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24bbb51f-df2d-4805-95e2-fa6bc1ba8e1c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2dce2946-11e8-44d5-8d9b-bcab618a470a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:2dce2946-11e8-44d5-8d9b-bcab618a470a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45B3A472A2C142BFAD1A2D678F033A56 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA4EBCD427C842299D6F0C181D5F6C59 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+48": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "508" ], - "x-ms-client-request-id": [ "bc45b8b2-e6fd-4c19-b93c-b06aa3900a1b" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "193b08f5-1b09-4265-84c8-b08515c9dff2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2118,84 +2192,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe7ac803-bd76-4269-bc99-b370327ff011" ], + "x-ms-request-id": [ "b42451b6-c97a-45e8-8b3e-8d550caf687e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "c24e4d75-5084-43e6-a722-cac2b38f6c49" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012034Z:c24e4d75-5084-43e6-a722-cac2b38f6c49" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45616fce-c2e8-4566-9645-ed84c69641f9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "110a08a1-1d74-41e9-aa29-24c9540f0fb6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:110a08a1-1d74-41e9-aa29-24c9540f0fb6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DD4DC02979B4087AF8FE64FDE8F6057 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDFD1FB3047142D998E0CE9F8CFF2E8A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\"}}", - "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+49": { - "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": [ "509" ], - "x-ms-client-request-id": [ "ca8c4a34-f316-49f5-bf90-ec5cdd7fd2ce" ], - "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], - "FullCommandName": [ "Get-AzAppInsights_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "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-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ "248ebc27-3604-456d-88b2-688b3e85af5e" ], - "x-ms-correlation-request-id": [ "248ebc27-3604-456d-88b2-688b3e85af5e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012034Z:248ebc27-3604-456d-88b2-688b3e85af5e" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5356C4D5D8E34B77A6B387302016173D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "28591" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-72-n0c7kq\",\r\n \"name\": \"Functions-PowerShell-72-n0c7kq\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28006732-0000-0300-0000-6674ce5c0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-72-n0c7kq\",\r\n \"AppId\": \"a6a3f52c-ae9a-4cd6-93f1-7d5e311e64ea\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"fa6044a6-c259-4170-b89d-2f11a85f94e7\",\r\n \"ConnectionString\": \"InstrumentationKey=fa6044a6-c259-4170-b89d-2f11a85f94e7;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a6a3f52c-ae9a-4cd6-93f1-7d5e311e64ea\",\r\n \"Name\": \"Functions-PowerShell-72-n0c7kq\",\r\n \"CreationDate\": \"2024-06-21T00:50:11.9027877+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-Node-18-1u8q25\",\r\n \"name\": \"Functions-Node-18-1u8q25\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e735-0000-0300-0000-6674ce980000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-18-1u8q25\",\r\n \"AppId\": \"29858211-be59-4b14-b2ab-138d40f0de1c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"78b84753-614d-4b26-a471-25e26fecf1ee\",\r\n \"ConnectionString\": \"InstrumentationKey=78b84753-614d-4b26-a471-25e26fecf1ee;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=29858211-be59-4b14-b2ab-138d40f0de1c\",\r\n \"Name\": \"Functions-Node-18-1u8q25\",\r\n \"CreationDate\": \"2024-06-21T00:51:13.7055576+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/microsoft.insights/components/Functions-DotNet-6-9uj4si\",\r\n \"name\": \"Functions-DotNet-6-9uj4si\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800ac38-0000-0300-0000-6674ceba0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-6-9uj4si\",\r\n \"AppId\": \"8ce21137-5a86-4ed9-a3e5-8ee1cd2a0851\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a2f5facb-093f-44b6-9e00-911b1fbd70e9\",\r\n \"ConnectionString\": \"InstrumentationKey=a2f5facb-093f-44b6-9e00-911b1fbd70e9;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8ce21137-5a86-4ed9-a3e5-8ee1cd2a0851\",\r\n \"Name\": \"Functions-DotNet-6-9uj4si\",\r\n \"CreationDate\": \"2024-06-21T00:52:10.6718185+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Python-310-bj26n8\",\r\n \"name\": \"Functions-Python-310-bj26n8\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800b641-0000-0300-0000-6674cefb0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-310-bj26n8\",\r\n \"AppId\": \"6ecc8d1f-0a58-444c-b43b-0bb50175068d\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"2eaef2e0-6acb-4b79-b771-8312078be897\",\r\n \"ConnectionString\": \"InstrumentationKey=2eaef2e0-6acb-4b79-b771-8312078be897;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6ecc8d1f-0a58-444c-b43b-0bb50175068d\",\r\n \"Name\": \"Functions-Python-310-bj26n8\",\r\n \"CreationDate\": \"2024-06-21T00:53:15.5365035+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo-new\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo-new\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28000b49-0000-0300-0000-6674cf390000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo-new\",\r\n \"AppId\": \"32cb91e9-6c19-49c2-9e1a-5c74e8167aa1\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": null,\r\n \"InstrumentationKey\": \"e2b07092-a978-4d94-af24-5ea770e4263b\",\r\n \"ConnectionString\": \"InstrumentationKey=e2b07092-a978-4d94-af24-5ea770e4263b;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=32cb91e9-6c19-49c2-9e1a-5c74e8167aa1\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo-new\",\r\n \"CreationDate\": \"2024-06-21T00:54:17.3884484+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e96a-0000-0300-0000-6674d4b80000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-CustomImage-5y3dpkzqcb\",\r\n \"name\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28005958-0000-0300-0000-6674d0100000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"AppId\": \"c6be27ef-cc82-4ad8-aa75-298df5ab14ae\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cc8ac43e-b206-47a5-8058-3e2cd6a497f3\",\r\n \"ConnectionString\": \"InstrumentationKey=cc8ac43e-b206-47a5-8058-3e2cd6a497f3;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c6be27ef-cc82-4ad8-aa75-298df5ab14ae\",\r\n \"Name\": \"Functions-CustomImage-5y3dpkzqcb\",\r\n \"CreationDate\": \"2024-06-21T00:56:08.8071481+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28006357-0000-0300-0000-6674d0000000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ce387e87-a068-44f8-8a8b-464832ecb014\",\r\n \"ConnectionString\": \"InstrumentationKey=ce387e87-a068-44f8-8a8b-464832ecb014;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=91e29ec5-a395-4783-8b6e-223d27676d93\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:21.5387613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-TestAppName-o7atemdn6x\",\r\n \"name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28002f58-0000-0300-0000-6674d0040000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"AppId\": \"259c0804-390a-419f-9560-9b21cefcb580\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9db50430-8b46-4b2d-a641-377546ab3577\",\r\n \"ConnectionString\": \"InstrumentationKey=9db50430-8b46-4b2d-a641-377546ab3577;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=259c0804-390a-419f-9560-9b21cefcb580\",\r\n \"Name\": \"Functions-TestAppName-o7atemdn6x\",\r\n \"CreationDate\": \"2024-06-21T00:57:40.8885518+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/microsoft.insights/components/Functions-Python-iyf85pjd9l\",\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28001867-0000-0300-0000-6674d3960000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-iyf85pjd9l\",\r\n \"AppId\": \"f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3acd53fb-3572-4fa8-b91e-f48bfd5a6982\",\r\n \"ConnectionString\": \"InstrumentationKey=3acd53fb-3572-4fa8-b91e-f48bfd5a6982;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f84b56aa-fb47-4198-8d5e-93c737d87873\",\r\n \"Name\": \"Functions-Python-iyf85pjd9l\",\r\n \"CreationDate\": \"2024-06-21T00:57:47.3295727+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e55a-0000-0300-0000-6674d0600000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"f25825b3-5fde-4712-a9e7-ee859f6df902\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c024a4a7-73ab-44da-a551-c208b6d73ac8\",\r\n \"ConnectionString\": \"InstrumentationKey=c024a4a7-73ab-44da-a551-c208b6d73ac8;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f25825b3-5fde-4712-a9e7-ee859f6df902\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:59:12.5706273+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-DotNet-fzbnp5j12m\",\r\n \"name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800d15f-0000-0300-0000-6674d1e30000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"AppId\": \"f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"acfe5cbd-9c18-4a5c-8296-28f0544156cf\",\r\n \"ConnectionString\": \"InstrumentationKey=acfe5cbd-9c18-4a5c-8296-28f0544156cf;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f1dcf9c3-dc4a-4949-aea2-0dca866335da\",\r\n \"Name\": \"Functions-DotNet-fzbnp5j12m\",\r\n \"CreationDate\": \"2024-06-21T01:03:11.9534357+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Java-k0vbul5y8x\",\r\n \"name\": \"Functions-Java-k0vbul5y8x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e160-0000-0300-0000-6674d22c0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-k0vbul5y8x\",\r\n \"AppId\": \"e9ef6317-e5cc-459c-b68e-879c0e2d237c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8a6d9fd4-69c8-4cc5-ae81-f1490938a438\",\r\n \"ConnectionString\": \"InstrumentationKey=8a6d9fd4-69c8-4cc5-ae81-f1490938a438;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ef6317-e5cc-459c-b68e-879c0e2d237c\",\r\n \"Name\": \"Functions-Java-k0vbul5y8x\",\r\n \"CreationDate\": \"2024-06-21T01:06:52.3100553+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Node-4fqxib7usc\",\r\n \"name\": \"Functions-Node-4fqxib7usc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28002162-0000-0300-0000-6674d2730000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-4fqxib7usc\",\r\n \"AppId\": \"25041e42-7597-45f7-a834-ee831ea9537e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a\",\r\n \"ConnectionString\": \"InstrumentationKey=1ae1aeff-8fa2-4bf9-9004-3987a9b0eb8a;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=25041e42-7597-45f7-a834-ee831ea9537e\",\r\n \"Name\": \"Functions-Node-4fqxib7usc\",\r\n \"CreationDate\": \"2024-06-21T01:08:03.241404+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-Python-iyf85pjd9l\",\r\n \"name\": \"Functions-Python-iyf85pjd9l\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28006b63-0000-0300-0000-6674d2ba0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-iyf85pjd9l\",\r\n \"AppId\": \"2b2e1923-aceb-4b6a-acb6-45c3f5114756\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"28c9c284-01ef-4482-81ba-4b90e467d131\",\r\n \"ConnectionString\": \"InstrumentationKey=28c9c284-01ef-4482-81ba-4b90e467d131;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2b2e1923-aceb-4b6a-acb6-45c3f5114756\",\r\n \"Name\": \"Functions-Python-iyf85pjd9l\",\r\n \"CreationDate\": \"2024-06-21T01:09:14.3402753+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28004765-0000-0300-0000-6674d3070000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"dbadec04-f560-41d3-9e38-544954eee5aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"97d89d08-0973-44ed-9c86-411f097d7105\",\r\n \"ConnectionString\": \"InstrumentationKey=97d89d08-0973-44ed-9c86-411f097d7105;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=dbadec04-f560-41d3-9e38-544954eee5aa\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T01:10:31.0470776+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"name\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28007166-0000-0300-0000-6674d3590000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"AppId\": \"38ead3a8-b8b0-4dc6-9cb7-3068e409fc8c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c98dc022-0624-46dc-ba44-94ecb3c8c16a\",\r\n \"ConnectionString\": \"InstrumentationKey=c98dc022-0624-46dc-ba44-94ecb3c8c16a;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=38ead3a8-b8b0-4dc6-9cb7-3068e409fc8c\",\r\n \"Name\": \"Functions-DotNet-Isolated9mgi8jlqpw\",\r\n \"CreationDate\": \"2024-06-21T01:11:41.6201575+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-Java-k0vbul5y8x\",\r\n \"name\": \"Functions-Java-k0vbul5y8x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28001768-0000-0300-0000-6674d3f90000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-k0vbul5y8x\",\r\n \"AppId\": \"8278f501-f1ea-407a-92dd-a7828521d420\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5225ee3a-a446-43f5-b3df-c1fa272ecccf\",\r\n \"ConnectionString\": \"InstrumentationKey=5225ee3a-a446-43f5-b3df-c1fa272ecccf;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8278f501-f1ea-407a-92dd-a7828521d420\",\r\n \"Name\": \"Functions-Java-k0vbul5y8x\",\r\n \"CreationDate\": \"2024-06-21T01:14:09.7372619+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-CustomHandleresz8ym7unv\",\r\n \"name\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800e568-0000-0300-0000-6674d44f0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"AppId\": \"1c45451a-114b-4566-8dab-7f99116847c0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"225cfc17-b4a8-4f0d-bc50-ff3d02783c68\",\r\n \"ConnectionString\": \"InstrumentationKey=225cfc17-b4a8-4f0d-bc50-ff3d02783c68;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c45451a-114b-4566-8dab-7f99116847c0\",\r\n \"Name\": \"Functions-CustomHandleresz8ym7unv\",\r\n \"CreationDate\": \"2024-06-21T01:15:38.2030237+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+50": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01+22": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.2\",\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\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"e2b07092-a978-4d94-af24-5ea770e4263b\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-5f2nspxwh0\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\"\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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1890" ] + "Content-Length": [ "2100" ] } }, "Response": { @@ -2203,43 +2231,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37923A92E00\"" ], + "ETag": [ "\"1DC38E32569E1E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9eb5223-515e-440c-bd72-aa05942914c0" ], + "x-ms-request-id": [ "fb15bd8a-20f4-4be1-ad0a-443118431463" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "056601cc-a3c9-4772-8feb-70db456ab676" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012039Z:056601cc-a3c9-4772-8feb-70db456ab676" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3bba211-0be7-4c8b-b500-9973ae6e1541" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e8870e50-f368-460e-b6d3-9a18eb4eef3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060913Z:e8870e50-f368-460e-b6d3-9a18eb4eef3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 711E6D010DCC49DFACEBBAEC02E5423F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:20:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:20:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA9C1D137D4B4C41A89AFE14CE039D9F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7614" ], + "Content-Length": [ "8902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:36.0166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+51": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "1fe0e292-6480-4c13-9879-7d2dcdf45496" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "649b4f5d-5d56-44f3-8f79-fb8235fe1517" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2249,42 +2277,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "ETag": [ "\"1DC38E33BD1A940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "045901b6-05eb-474f-838f-2716132606dd" ], + "x-ms-request-id": [ "d1f2f556-7dc2-4898-9e10-e3ee715b366d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "ba34e103-974d-416c-a056-b07c51216073" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012109Z:ba34e103-974d-416c-a056-b07c51216073" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c455dee4-1ecf-4e97-84bc-3a64fb4795a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:c455dee4-1ecf-4e97-84bc-3a64fb4795a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 921C1CB5951C4E208DE7A122E77CB0AF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A127B5DF9FB84EEA8E632724D0B7A26A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], + "Content-Length": [ "8768" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:36.0166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+52": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "642d8a42-ee4b-498b-89ee-42e63bf0e5b1" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "c8434ee4-a076-4073-8f80-5d4a9cfe525a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2295,42 +2323,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "ETag": [ "\"1DC38E33BD1A940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93eb91e2-f0eb-4aa4-8e4e-939530ef20bb" ], + "x-ms-request-id": [ "ca108941-b37b-4c8e-a796-bda5a18e9afd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "9de7a679-a20b-4723-ba82-d3a29367048d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012110Z:9de7a679-a20b-4723-ba82-d3a29367048d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62a6ac20-9438-4303-b5c2-8841f21a4869" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:62a6ac20-9438-4303-b5c2-8841f21a4869" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0C76A1EC4A34CD3898A1B33B0574E7F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4ADE38A4652B41FF976E3F71CBD27EEA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], + "Content-Length": [ "8768" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:36.0166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+53": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "513" ], - "x-ms-client-request-id": [ "d32cf759-21cf-4bd7-8555-90b7fe627f5e" ], + "x-ms-unique-id": [ "469" ], + "x-ms-client-request-id": [ "e333d856-457d-44bd-a3c3-5965067e0c8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2342,40 +2370,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1547ef03-a1e0-44f3-ad3d-2c580d5a819b" ], + "x-ms-request-id": [ "556bad34-3eb2-43a5-a633-e39b0b68d574" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "0fc9242f-2948-480d-8b5a-9bd94350cced" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012110Z:0fc9242f-2948-480d-8b5a-9bd94350cced" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51d113ba-5615-482b-bf4f-3f2b26d1c14c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "319b7a1e-8d27-4c4d-ace9-38a05610523b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:319b7a1e-8d27-4c4d-ace9-38a05610523b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93A4C5C28A38420A89313F72A73CD721 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CCA0D6500C1147D387A84933F0D46BCD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"e2b07092-a978-4d94-af24-5ea770e4263b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+54": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "514" ], - "x-ms-client-request-id": [ "e2cebad7-cdd2-45fe-b215-4a9f25618e4b" ], + "x-ms-unique-id": [ "470" ], + "x-ms-client-request-id": [ "3c9acc6a-dec7-4241-83ae-7243f28fc96b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2387,40 +2415,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60693a9e-9b3d-4487-80dc-99b677278f68" ], + "x-ms-request-id": [ "867d8f58-5217-402b-aa33-77dfd5aef808" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a5e3f1cb-dac8-4f4c-bba7-0ed74d1e63ff" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012110Z:a5e3f1cb-dac8-4f4c-bba7-0ed74d1e63ff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1b42649-335a-4d5c-a61b-0570d74bde3d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6c34345a-0f91-43a4-9e86-6e142e03e332" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060945Z:6c34345a-0f91-43a4-9e86-6e142e03e332" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB11A0F8673144F88DDE1A231FF2661C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 978C14540C1343D8A5AF19AA9CF0A836 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29164,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+55": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+27": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "515" ], - "x-ms-client-request-id": [ "a62cbedd-ebf9-4e55-a570-1837a8660424" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "61940043-c59a-4ef0-b28b-a641bdf80324" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2431,132 +2460,126 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E33BD1A940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbfeba82-50bc-409a-9708-ea2490ddb32d" ], + "x-ms-request-id": [ "23b2b513-87e0-4f99-bdb7-77359d3a66e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "65b816ec-0157-4b0e-aadd-9289c69c3755" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012111Z:65b816ec-0157-4b0e-aadd-9289c69c3755" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae8e195a-ef2a-4d8b-bdc1-06cf21fa3bca" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "fd8ed84b-993f-4837-9af1-d24c84809632" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:fd8ed84b-993f-4837-9af1-d24c84809632" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B7A1560749E45D0B4FA5A907E722313 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E752A27BBE244292B137B7EF16C5EC2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"e2b07092-a978-4d94-af24-5ea770e4263b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": 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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+56": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "516" ], - "x-ms-client-request-id": [ "9013e464-c2c3-43c8-b79e-5cd656d5e224" ], + "x-ms-unique-id": [ "472" ], + "x-ms-client-request-id": [ "26c0c4cc-e013-4bb9-a22e-cbcfbd821bd9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], + "x-ms-correlation-request-id": [ "55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91836a19-ee9e-4b5b-9b98-f08745274d14" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a9c74ea5-9c88-4cd4-b8b1-87ccaa8c1095" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012111Z:a9c74ea5-9c88-4cd4-b8b1-87ccaa8c1095" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55B6E3489CD14D08B399BC63BFB37551 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18C317D2058D4898B60338B5B1BCCCA6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7410" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:20:36.0166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+57": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "c6a50850-5845-409c-a18d-7882cfbc1c3c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "6a4cc067-8f23-4261-bf75-f56bac0727fd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], + "x-ms-correlation-request-id": [ "fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50913261-0d1d-458c-bd10-ea87ffecc96c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "e072cca8-38f9-4326-a020-fe337fa76875" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012111Z:e072cca8-38f9-4326-a020-fe337fa76875" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF0F2BBD307F49218274C38B57A97C7A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB0EE91D8750427DAF1C8C08FE0BF8E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"e2b07092-a978-4d94-af24-5ea770e4263b\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "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": [ "518" ], - "x-ms-client-request-id": [ "8bb15cc9-96a8-4c7b-8b21-c310681338ad" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "ec8ce009-0104-4b89-9d11-0181f31a4bf0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2568,43 +2591,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ccb0dfb1-9ac2-4544-8a46-008338ebd3dd" ], + "x-ms-request-id": [ "85c748e8-0f02-46a9-9aa6-ce47ce11a048" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "5c2c3505-1847-4a40-aeb6-43108d11e691" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012112Z:5c2c3505-1847-4a40-aeb6-43108d11e691" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd62c0d9-dd3d-42b9-80d2-16bf61bc2861" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a047b45-3d6a-4c1e-831e-22aef0e05142" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:3a047b45-3d6a-4c1e-831e-22aef0e05142" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FADDB119E664A8E8246E5F531F561CC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF185537504E456E890C94B1173E0165 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:09:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4129" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"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\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+59": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01+2": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "be82977a-9e2c-4575-880e-2e64b7ad5d7e" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "205" ] } }, "Response": { @@ -2612,42 +2631,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3793814550B\"" ], + "ETag": [ "\"1DC38E357C174A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "daf34192-26af-4fd0-82d5-36b4e60f16b1" ], + "x-ms-request-id": [ "c97095a6-23d5-42a8-88f1-cbf631447772" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "a5216c10-5add-481b-8abb-7220eeac39a6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012126Z:a5216c10-5add-481b-8abb-7220eeac39a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/15182bdf-1c66-4d27-bf78-bcd29bfc375d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-correlation-request-id": [ "19183195-52d8-4a8a-87dc-70d1c04fa127" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061002Z:19183195-52d8-4a8a-87dc-70d1c04fa127" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F88E1161786442488872DCD34F8D27F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E26484E5EAE541F78ED11BA96BA3800E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:01 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "aff53d94-d065-4166-ad59-a8e12d902826" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "476" ], + "x-ms-client-request-id": [ "52cd1e18-08b1-4b12-859f-dcacea878e2e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2658,41 +2679,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1227d254-8260-4b6c-bc3a-d70a269a6393" ], + "x-ms-request-id": [ "76f966e6-e025-44b8-898f-73497ca3fd56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "5683bc10-61ff-48b7-ac52-9a942c12b4da" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012126Z:5683bc10-61ff-48b7-ac52-9a942c12b4da" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a3760bf-fcc3-4f93-b8b6-e143b0ad0c4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061033Z:3a3760bf-fcc3-4f93-b8b6-e143b0ad0c4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EFCA38D2E0D247F489D7A4A25E27D677 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E7A52F8127148C99600E8038BE3FE1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41614,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41614\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:18:45.61\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01+4": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "a0befca0-8ded-4e81-ada1-502175f0f4cd" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], - "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "52cd1e18-08b1-4b12-859f-dcacea878e2e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2703,37 +2724,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6fac21ad-193c-43c7-b15c-3009f7c8669f" ], + "x-ms-request-id": [ "e161131c-d769-4b7c-90b3-99c86ec01a41" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "5175015c-affe-4b0c-9400-278559c7406d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012138Z:5175015c-affe-4b0c-9400-278559c7406d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2182ab56-e73f-4f31-bd93-1931bf323223" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061033Z:2182ab56-e73f-4f31-bd93-1931bf323223" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6089A64B3BB4DE0B189DA0CE33A90EB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 94FD71E7144D4D4BA452F79F904F1F33 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:32 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "1727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+5": { "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -2742,17 +2764,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5860d3c4-3bbc-4c49-8bdc-6ab335bd94ec" ], + "x-ms-request-id": [ "bdcda8b5-8ed0-409f-b1a0-bbee223d82c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "e54eb6ce-5b29-4d11-8561-8dad64b6f198" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012138Z:e54eb6ce-5b29-4d11-8561-8dad64b6f198" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fec99caf-c84f-49ce-9adb-30e8b4ad7a80" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dde43077-2719-4748-8ad1-a327930812b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061034Z:dde43077-2719-4748-8ad1-a327930812b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F8BB9C2FD61401980881EF79E05C791 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 39459F78323F4BE784FE85F57E6D5CFB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2763,19 +2786,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/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "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+6": { "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": [ "523" ], - "x-ms-client-request-id": [ "118e1cd1-7676-44e6-a4f2-f6e24897b3aa" ], + "x-ms-unique-id": [ "479" ], + "x-ms-client-request-id": [ "818fa5a3-b138-4824-ad7f-711ca64e0dbd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2786,41 +2809,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ad429154-27d3-437e-a261-bd584370da3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "357ac7f8-c971-4f62-83e4-42854e43b1c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "20cd7f33-8e71-4b3a-9dd3-22ca9819828f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012138Z:20cd7f33-8e71-4b3a-9dd3-22ca9819828f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], + "x-ms-correlation-request-id": [ "2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061035Z:2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D9614B9746D499DB99BBBB12B2237D3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D042D76267B41169738433472144F39 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "13096" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435798,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-Linux-Consumption-pxiydk/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-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "524" ], - "x-ms-client-request-id": [ "cb690637-b6a7-46c2-9fdb-997654b033d0" ], + "x-ms-unique-id": [ "480" ], + "x-ms-client-request-id": [ "d6b31399-69fa-4846-af71-8f452b1067c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2832,40 +2855,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b75cd748-5020-41aa-827a-9502833f36a9" ], + "x-ms-request-id": [ "63f4b402-43b9-49f0-b220-00661ae30479" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "774ae2bc-5896-4f3a-a2fe-94c8df00e96e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012138Z:774ae2bc-5896-4f3a-a2fe-94c8df00e96e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fa3696f2-6381-4766-9814-3d973aae43a3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061035Z:fa3696f2-6381-4766-9814-3d973aae43a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0264FD6F11164244A9FD5CC55B24F5BF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A3329A22F5E469AB7E57FF98DEC62B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-Consumption-m4501w/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-kylbxe/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "525" ], - "x-ms-client-request-id": [ "4eb4a75a-7ba4-4470-b841-32cabb661a4b" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "4d060f46-295c-4238-b9d6-e6bf2f8d0f56" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2877,85 +2900,82 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19507799-fdbb-4c62-8760-e0b0416df34d" ], + "x-ms-request-id": [ "24f47e8a-21d1-4a8c-b756-d82a2fb6ec03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "ed9f35b4-bfab-46ef-aaf3-85ca4e76feb4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012138Z:ed9f35b4-bfab-46ef-aaf3-85ca4e76feb4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "be893609-34fd-4a7d-8b5a-cc3478a59161" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:be893609-34fd-4a7d-8b5a-cc3478a59161" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35A501CDE662419094ACA3710C043BD0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:38Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B00FA89706E426388EEF8BF3E3FE9AA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "526" ], - "x-ms-client-request-id": [ "13812691-1dfd-4f94-8591-60d0016038fd" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "9258c8a2-55e0-46ec-94d7-9f758a90a7cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 200, + "StatusCode": 404, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], + "x-ms-correlation-request-id": [ "ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aacb616c-697c-43e6-8432-8bc097a7fd76" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "be6462a4-8ec8-45b7-877d-6e340a7f0bdf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012139Z:be6462a4-8ec8-45b7-877d-6e340a7f0bdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55C91B901A4748E1AD0438D1DDD530F3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC952B5A276840EF98787DEE6DC6CC87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "247" ], + "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+6": { + "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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "527" ], - "x-ms-client-request-id": [ "58895f32-771c-49ff-a047-698f9481dbfc" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "cc5e8ae9-0539-4ba3-bbfb-3ba4821ba0ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2967,41 +2987,176 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ae5c933-d0ac-45e5-8183-c17469481b69" ], + "x-ms-request-id": [ "510de881-7c4d-4216-a204-11a288c7775a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "81461ad0-fb28-483c-9d06-76392582c899" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012139Z:81461ad0-fb28-483c-9d06-76392582c899" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5b944a6f-d889-4523-b84c-d5d56c19ba6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:5b944a6f-d889-4523-b84c-d5d56c19ba6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFD581F6E6DD4030AE930A79FBFCB97D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55DB3F3C97CA4EAE80726A182923FF0A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1641" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"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+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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-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", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "d7e8d46d-6694-4368-9c0c-d36e769a0ffd" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "6de75b27-11ec-4982-9e42-18fae02749c6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "4155eab7-6cb7-49fe-af35-3168c2b31456" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9e1fae8d-4551-400e-843c-5fd56dc953d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061036Z:9e1fae8d-4551-400e-843c-5fd56dc953d3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BD638A0C4BD440A6A4D4F12E8EA68AFA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1647" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "b09f9b8f-40b7-4fb3-8e57-443cf049be7b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "d27a330a-9684-4964-a6f6-114e81b51b90" ], + "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": [ "1f703c3f-e036-4793-a7ba-2212625f4f8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061036Z:1f703c3f-e036-4793-a7ba-2212625f4f8b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 37A0D99DE8324E3A9400B7024DBF05D2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1721" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "f8dd07ac-599a-4830-aa4e-b0e7edb9778c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "f495bba3-8abf-441d-aff1-7f48f1c93e96" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b8030a35-6099-4df3-b80c-8c64a7a0fbaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:b8030a35-6099-4df3-b80c-8c64a7a0fbaf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 499463B6B3E54125A8FD95E410515F47 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1728" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "84c819d0-4e8f-4109-a3a9-7989e9d00589" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3011,39 +3166,85 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4b8fdd1c-8b24-4925-a0e8-1b94f34a5f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "21526908-2eb7-4c69-9924-2a8048b1f401" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012139Z:21526908-2eb7-4c69-9924-2a8048b1f401" ], + "x-ms-request-id": [ "de217fa6-cb85-44fb-b431-0aae4fb4353a" ], + "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": [ "279901bc-5a73-4a23-a1ee-a0af0571401d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:279901bc-5a73-4a23-a1ee-a0af0571401d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB786A21E6F64252BB52004F50A1B7D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06CF61F9E39846F9BFD08AB936A4AE3A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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.Storage/storageAccounts?api-version=2019-04-01+15": { + "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": [ "488" ], + "x-ms-client-request-id": [ "7a805d05-2684-49bf-87b1-1f720f20ffdf" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "5ab0aae6-3b82-4e70-9782-bcb63ffe7588" ], + "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": [ "717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], + "x-ms-correlation-request-id": [ "717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3521027B6C4F408BA610CAE809135FF3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+8": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "3640cdd8-8bb2-47f0-9371-9a2db75292f7" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "034efeef-bbeb-468d-b3b2-180955790610" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3054,30 +3255,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b3cd909d-5c3c-41ff-84fd-f43fd6e16539" ], + "x-ms-request-id": [ "e3b6fc24-0148-4e07-acc7-3160830281cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "bdbb0115-38a1-4747-83fd-ff2f2e09a68d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012139Z:bdbb0115-38a1-4747-83fd-ff2f2e09a68d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7dbfd241-4b7f-4f41-bc88-58ded586eecb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8449a9ae-0039-49fe-b85a-2c71c920f0cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061038Z:8449a9ae-0039-49fe-b85a-2c71c920f0cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABAB7855365F4B0088DF49AF4B4C0C44 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C093F47184741FBACF00694303F5B47 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+9": { + "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2015-05-01+17": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-jndk42cwv8?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": { @@ -3097,35 +3298,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "d298d18c-c97f-4870-b592-d6f35badd3b5" ], - "x-ms-correlation-request-id": [ "d298d18c-c97f-4870-b592-d6f35badd3b5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012142Z:d298d18c-c97f-4870-b592-d6f35badd3b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a10d384f-fa74-4af9-8130-39b0e1566407" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "1876591f-d366-4113-bdd6-b9abc08d7417" ], + "x-ms-correlation-request-id": [ "1876591f-d366-4113-bdd6-b9abc08d7417" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061046Z:1876591f-d366-4113-bdd6-b9abc08d7417" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4504123C594B44B5B2F8890C52AFA701 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:21:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C307FA7BDFB456494927F6D85421C9D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:10:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28009e6d-0000-0300-0000-6674d5a40000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00e929-0000-0300-0000-68e751e60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"name\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"AppId\": \"e0c61f15-820d-4d0b-9839-a86a2748c341\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\",\r\n \"ConnectionString\": \"InstrumentationKey=54d8cd57-d8fa-474c-bd1f-fed4dad17e1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0c61f15-820d-4d0b-9839-a86a2748c341\",\r\n \"Name\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"CreationDate\": \"2025-10-09T06:10:38.6324793+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-jndk42cwv8_e0c61f15-820d-4d0b-9839-a86a2748c341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-jndk42cwv8-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+10": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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": [ "1786" ] + "Content-Length": [ "1923" ] } }, "Response": { @@ -3133,43 +3335,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796110468B\"" ], + "ETag": [ "\"1DC38E377DC4C10\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbad5aae-17e7-4729-97d0-5eaff5692eb0" ], + "x-ms-request-id": [ "7cc33e94-d834-499f-816d-22b817757d52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "64d59376-843c-4287-97e1-b4fbdd5fb9cc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012209Z:64d59376-843c-4287-97e1-b4fbdd5fb9cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/585ba43e-96cf-41e6-93a5-fb83c094c1ad" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a2037e0a-3f70-414a-9a3e-b6f13e757bb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061132Z:a2037e0a-3f70-414a-9a3e-b6f13e757bb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C66BFA938BD498D89877E1FCCD6C9A1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:21:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF5AF6D9E3BE45EE82F7F104DE95EADE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:46Z" ], + "Date": [ "Thu, 09 Oct 2025 06:11:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8807" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:21:44.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:10:52.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "532" ], - "x-ms-client-request-id": [ "65e1c0b9-4132-443f-9ccc-3b72fe25d336" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "735753aa-dd20-4401-99fe-1e75180eba98" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3179,42 +3381,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], + "ETag": [ "\"1DC38E38ECAF6B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21dbbe2c-8d43-4ad4-8276-daf626e01d93" ], + "x-ms-request-id": [ "ee8483fe-5323-4835-8da9-5b59dfc4c7f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "3ed57ee5-a8e0-4588-86b5-d109b7fb007b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012240Z:3ed57ee5-a8e0-4588-86b5-d109b7fb007b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b6b129e9-f9cb-4793-acba-53b965e05756" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061202Z:b6b129e9-f9cb-4793-acba-53b965e05756" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC3C7DC74F1D45658CAA9ED94BD1EE75 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 869E8693E4EC4050B9DD3D1CDA96A755 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:02Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:09.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "8aac4806-f1dc-4452-9ed6-7af84b5fc610" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "f515d44b-6232-4911-8478-946c32ecad06" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3225,42 +3427,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], + "ETag": [ "\"1DC38E38ECAF6B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6a49311-617c-41a4-b2ff-6090287e9b0b" ], + "x-ms-request-id": [ "ab9799ff-fa4e-4d76-a465-926fbcbdde17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "eb06d626-5748-4834-9ec3-407eee375d15" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012242Z:eb06d626-5748-4834-9ec3-407eee375d15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fca69608-22dd-4109-8b0f-dc31be38dbf0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061203Z:fca69608-22dd-4109-8b0f-dc31be38dbf0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C647B95D1448498DA172AFD347CDF45C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2EF942D00E5E4C8C85D0CE73BD2EE720 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:09.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "534" ], - "x-ms-client-request-id": [ "4d1eb3cd-df08-4a1f-8d4b-4577bf561812" ], + "x-ms-unique-id": [ "494" ], + "x-ms-client-request-id": [ "bd048e0a-e0a7-4b1c-b53b-4e0f889e812b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3272,40 +3474,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6370f0c8-08be-479d-81b7-26c8ac95fbd2" ], + "x-ms-request-id": [ "37a6b046-8d90-45ab-9079-a7a63e56253c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "af88c114-813b-4c24-ba95-6a470d32630d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012243Z:af88c114-813b-4c24-ba95-6a470d32630d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/822cd522-64d8-4f69-b8fc-b65b7e08f29c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5692b0c9-e674-40a0-a544-9bd515f1be40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061203Z:5692b0c9-e674-40a0-a544-9bd515f1be40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 533CAB10D9274B93B11922F3ACDB625E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA401FA5746949EDA05EDA9EECE4F709 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "801da17e-49a0-4f4f-9aa3-55c0f7baef1f" ], + "x-ms-unique-id": [ "495" ], + "x-ms-client-request-id": [ "a360f11e-92c9-49f0-a075-7f4eb6f1d8e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3317,40 +3519,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16096638-5e8d-4dab-b612-12486d42e1fb" ], + "x-ms-request-id": [ "82d5c522-814f-4470-bb4d-ba63719656fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a9b32967-2146-4b20-b196-6c81db633d3b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012243Z:a9b32967-2146-4b20-b196-6c81db633d3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/886f8f1a-d5bc-40fb-b6a0-225d534b5239" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d084463e-1886-4b49-8fb1-a23d3fdd3a6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061204Z:d084463e-1886-4b49-8fb1-a23d3fdd3a6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06F79C3A171E44C1B00FE3E832E0EC8C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC59938A3A454361AC372506F64A5C3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "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": [ "536" ], - "x-ms-client-request-id": [ "ed133a72-71b5-4f53-aa98-babf5cceee7a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "496" ], + "x-ms-client-request-id": [ "d30e4866-5cb2-4d34-85f1-7b914bc5c28d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3361,43 +3564,85 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6b49701-9c3c-4166-95a7-fc031422af84" ], + "x-ms-request-id": [ "4d2d47a2-3ccc-4ef7-9534-62644ddb3e93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "1b6af1b4-b4ca-422f-a776-dd97d9dde4bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012243Z:1b6af1b4-b4ca-422f-a776-dd97d9dde4bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a824678-9f99-4fe3-bbf5-f5664e049aea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "11f3e7dd-9f6a-43ab-bd62-77d909c89c01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061204Z:11f3e7dd-9f6a-43ab-bd62-77d909c89c01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 146A6F9FC2634882AADBF7EDF309EC77 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1AB60D6CEDC2498E842A7A4D76B7B841 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:04Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:09.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+16": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "206" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E3A3EB9810\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b4a7d1cd-9471-4bbd-8dff-19113ec376ff" ], + "X-AspNet-Version": [ "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/ed7c810c-b843-4e4c-85fc-7d214a875580" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "0d223890-831f-40df-8c75-ab482add45c2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061209Z:0d223890-831f-40df-8c75-ab482add45c2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CAF04D591B80478EA345451986827BB3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:04Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1814" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "537" ], - "x-ms-client-request-id": [ "2a812587-c321-4072-ba41-098d97d74e7b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "41c7f3f1-d459-4233-9100-c5288be26487" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3408,41 +3653,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "549f19ce-6df4-4d75-8467-5530b3937c58" ], + "x-ms-request-id": [ "1e050ba0-6977-4bfb-9d68-3a304dab4d7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "afe080ee-20a7-48af-a291-f1466b7fcd8f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012244Z:afe080ee-20a7-48af-a291-f1466b7fcd8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2844ba90-97af-4392-8b84-35a9857a683f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:2844ba90-97af-4392-8b84-35a9857a683f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 262E0C1D76F24D8C9826CAFC80C3CCBF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:43Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D19DCA0D15F484EA253D898853893CB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "538" ], - "x-ms-client-request-id": [ "d2b4a94a-5d51-4194-8a1a-0e6ce6a6eb6e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "41c7f3f1-d459-4233-9100-c5288be26487" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3453,40 +3698,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f2dc722-f410-4f9f-a3eb-05cec572997b" ], + "x-ms-request-id": [ "43828b29-dc98-4e7e-bad7-9f05d9d47f45" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "1b1bea2a-53ba-415a-a77a-f272e96ce9be" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012244Z:1b1bea2a-53ba-415a-a77a-f272e96ce9be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bf58ed89-ac27-4ad2-90ad-528174f621b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:bf58ed89-ac27-4ad2-90ad-528174f621b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E20883122D84555B75D7733E267439C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0294BC1F6CB247B790E7979528264CC1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+18": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "539" ], - "x-ms-client-request-id": [ "cf0ffc60-f9ce-4b4d-aaf6-94a403ca8f32" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "12c5368b-0364-4b65-86ac-dcdbfe2bca35" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3498,38 +3743,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c61ceb97-fa8f-4104-84dd-5ac18da8278c" ], + "x-ms-request-id": [ "6db5b6e4-f58a-4618-8acb-9bafb37e0c11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "0ac7a13b-b88a-4673-b3de-f670e41c2220" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012244Z:0ac7a13b-b88a-4673-b3de-f670e41c2220" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "293f41c1-83b2-4460-8674-5c209c8cf04a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:293f41c1-83b2-4460-8674-5c209c8cf04a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68E18CC408C043CEBCBC392514323EBD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF48C243CEDA454EBA363895081CADD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.2\",\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_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "6e361aa9-0c4c-4708-82ec-a645f4fe7cfd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1868" ] } }, "Response": { @@ -3537,43 +3787,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3796FBE83EB\"" ], + "ETag": [ "\"1DC38E38ECAF6B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b83a35b-8199-41d6-887e-7021db087f41" ], + "x-ms-request-id": [ "638e65dd-2ea1-4a41-9b3d-e9c09d9b2d02" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "3f09a9cc-0de7-4607-a747-a49fbff6d246" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012247Z:3f09a9cc-0de7-4607-a747-a49fbff6d246" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "63caaf88-e117-4835-a822-72981e2eabbc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:63caaf88-e117-4835-a822-72981e2eabbc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE11E87A2656496E8CABEC344EE5534E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:22:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:22:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FF2CA9276B14ABDA8E6329219782A48 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7657" ], + "Content-Length": [ "8674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"96d521f7-3053-4a20-a5ab-6b70a3e38b4e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+20": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "3f45da98-bf6c-4c6f-80d8-2b5e4e08594b" ], - "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], - "FullCommandName": [ "Set-AzFunctionApp_Update" ], - "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "x-ms-unique-id": [ "502" ], + "x-ms-client-request-id": [ "4c142666-4327-442f-8f30-d23587145a00" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -3583,42 +3833,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37986106C55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f317909a-09fa-43af-9edc-00faac1db833" ], + "x-ms-request-id": [ "60206232-4235-4392-8f60-1f702ada884f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "6fafe060-c339-41fe-a1b2-3ea79692612d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012318Z:6fafe060-c339-41fe-a1b2-3ea79692612d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dac0e253-939f-42bf-ba2d-dc4d65e291ef" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6d776531-9bcf-4999-b60d-82969a7612b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:6d776531-9bcf-4999-b60d-82969a7612b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5AC724077EF445A4B9F45873211E3610 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F3143F0E4D04CDAB63DC214834DB716 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"96d521f7-3053-4a20-a5ab-6b70a3e38b4e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "be1c4acf-f5f3-43fa-9775-487e92059862" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "3e28837f-a913-4c8d-8339-e34feb94bfa8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3629,42 +3878,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37986106C55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acf27e0c-3df1-4727-8d29-3cd5bf337080" ], + "x-ms-request-id": [ "dfb4f509-d99c-4261-b55b-a8a6e3c61ad3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b2ebb814-1c9c-4791-b445-a3a588579da2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012321Z:b2ebb814-1c9c-4791-b445-a3a588579da2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b371760-ba76-4d25-8212-d540b0c2c7b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c029cfd2-a98a-4e0f-b625-d0855f16fd95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:c029cfd2-a98a-4e0f-b625-d0855f16fd95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB62AA2ED2AF4FF58D740689228C5C4C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EA757D3C972406CA07BF3946C3B13A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7453" ], + "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:22:46.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"96d521f7-3053-4a20-a5ab-6b70a3e38b4e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?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/providers/Microsoft.Web/serverfarms?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "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": [ "543" ], - "x-ms-client-request-id": [ "96fe8b2a-0a8f-45bf-b9b2-a6a5f4c37341" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "76bf1645-c22d-4144-9369-ecad86c0c09e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3675,41 +3924,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c7d78ff0-6cb0-49a0-80d8-b50a3ecf0805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b188baf-e0f4-4f04-aa86-0491f1aa2c5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "5cc822ea-34bb-4ae0-8c3b-192d1982e9b0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012321Z:5cc822ea-34bb-4ae0-8c3b-192d1982e9b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "982f9409-198e-4bba-a2b2-77b242effe0c" ], + "x-ms-correlation-request-id": [ "982f9409-198e-4bba-a2b2-77b242effe0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:982f9409-198e-4bba-a2b2-77b242effe0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3509F7B6905142F980FD97F3328206A6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 687BF89B58044346928CC6DA9AA72253 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "14768" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435798,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435799,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+23": { + "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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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": [ "e5315351-a9af-46c5-b6fe-612f0fd2cf0c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "efa1f441-2b17-4bc6-90bd-cd7845053894" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3721,43 +3970,485 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "680b862f-98de-46ab-b73a-441540b5efee" ], + "x-ms-request-id": [ "f4e0e7c0-8afe-45bf-b17f-d0e6277cac01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "dacf786b-c930-4d33-b56e-bae059a8abcd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012322Z:dacf786b-c930-4d33-b56e-bae059a8abcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "45afc352-db01-425f-a2ae-e7ec205b9565" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061242Z:45afc352-db01-425f-a2ae-e7ec205b9565" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59FFC65C36FA49F99DF0E726EC508CE9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EC1306B679A45D7B050F16FB5506F55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "1720" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":26369,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-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-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "2723355c-a39a-4159-be4e-0a7cf7148236" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "b313882f-5063-4c59-a40c-1854c14d594e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "77b4e87b-2ee9-42cb-b517-6795951b4193" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "731e5b48-4fdc-4e90-b129-2a8d22789417" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:731e5b48-4fdc-4e90-b129-2a8d22789417" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D3D256B9A2AA48B09C270E9CCFEED634 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1688" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+34": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "1e763cc0-7113-401a-939d-3b41f4822a68" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "d5238c70-7c70-4825-a2ef-60756016ae63" ], + "x-ms-correlation-request-id": [ "d5238c70-7c70-4825-a2ef-60756016ae63" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:d5238c70-7c70-4825-a2ef-60756016ae63" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D262A79B8FD84BBBA67B5DDAAF0E368C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "247" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\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-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "508" ], + "x-ms-client-request-id": [ "aa27b0c1-1171-4553-9c5d-f752e43f4694" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "72e29892-aa0c-4bfb-a173-ba2a5ae64e5d" ], + "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": [ "e4eb8aa3-b80a-4a8a-bac2-c24ddbd6d2c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:e4eb8aa3-b80a-4a8a-bac2-c24ddbd6d2c6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F64A1D7A048A498C94F3B793287CDE1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1641" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "509" ], + "x-ms-client-request-id": [ "dcf5579e-b4ee-45c1-b319-c327118d0ec2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "b2bd0b9b-fcd1-44ba-b248-89f847c24feb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e2d67559-958b-4fde-88a0-9fa2f1ea8397" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:e2d67559-958b-4fde-88a0-9fa2f1ea8397" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 10B1A49A1DB84FCB81007546D0D006AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1647" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+37": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "0235fc94-6724-425f-a598-33a424e88526" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "bfabd03c-0f88-46b0-bf58-b6a47815fa7e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d66fc53-1ec8-40c6-ab7f-89393fc2739c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:2d66fc53-1ec8-40c6-ab7f-89393fc2739c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 660477A095CC47FA85C695BC044E0A41 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1721" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "8f89cef3-2adc-453d-bb27-f42b0dada552" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "75cb0ac6-6468-410d-9d2d-4a343dec8867" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9364bb88-6949-4f8b-b2cf-620fb0694d93" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:9364bb88-6949-4f8b-b2cf-620fb0694d93" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C80C869FF0BA40D397874B0ABC2477A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1728" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "9a8ff996-d47f-4db0-b823-669ff7aa82d4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "d519f7a7-9f32-4d44-a053-f7c7f414e34e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a611e5b-4173-4913-97b1-f8850356b598" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:3a611e5b-4173-4913-97b1-f8850356b598" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D064909769F54493B01D53DE6A074B45 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "c0b5d2e8-88c1-4b94-82a1-b6c222103843" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "6736f9ac-0555-4733-9a68-1a330b4b0f20" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d3f043cf-a7ef-489a-8215-dd1a50ad62fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:d3f043cf-a7ef-489a-8215-dd1a50ad62fa" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 911C0DBBE4CB4DD4B651237DC9C90F63 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "5f297022-102c-42bf-852d-5dc39aa195d7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "b49b9af6-7521-48f3-8b82-0f6264f347db" ], + "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": [ "44a8d596-6827-4b92-b21d-b767ff885684" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:44a8d596-6827-4b92-b21d-b767ff885684" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8FA4BC68A5AF48FAA3F21C3002B31E05 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+42": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "515" ], + "x-ms-client-request-id": [ "48a648bc-5737-4026-bbbd-d0eb67cfa7e8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "b0f41d7d-273d-4d3a-b2d8-145325c29375" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d765a814-3378-4565-9990-d98453e2943f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "dc8eeec2-00d6-4c49-85ef-530180334fe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061245Z:dc8eeec2-00d6-4c49-85ef-530180334fe1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 742C75E907E043DC931B9ACD83810625 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1248" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+43": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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": { }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1951" ] } }, "Response": { @@ -3765,123 +4456,137 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37986106C55\"" ], + "ETag": [ "\"1DC38E38ECAF6B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4c98c19-e77d-4eaf-ac48-6f0abe82485a" ], + "x-ms-request-id": [ "4f4fa534-4c3c-420c-99df-230cfc424f21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "46c8fd75-ce13-45bf-8b39-7cd2e18f9d60" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012334Z:46c8fd75-ce13-45bf-8b39-7cd2e18f9d60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d05b014a-3660-46a5-95e9-7075078f94f8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "71f72791-6262-4f79-af75-09f238f6ad60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061247Z:71f72791-6262-4f79-af75-09f238f6ad60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EB3424B8357435FA3CF4DBA169441D0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35C69A33C2F345158C963980304EC8A0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:12:47 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "8807" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "9a3a4a43-de50-49ff-b885-b15ca7a04b29" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "22359e24-54d1-4f83-b8e6-629530319ada" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "6da7bcf5-5dac-487c-ad1b-88b2e1156916" ], - "x-ms-correlation-request-id": [ "6da7bcf5-5dac-487c-ad1b-88b2e1156916" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012334Z:6da7bcf5-5dac-487c-ad1b-88b2e1156916" ], + "ETag": [ "\"1DC38E3BB8799B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b55485ee-703f-47c1-bb7f-ceccfae9572e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "66513b65-245a-4c31-8e7c-f70bf7147427" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061318Z:66513b65-245a-4c31-8e7c-f70bf7147427" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBD51AE0B4284DD996A85563A920A748 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C1B674D3D8C4AA2B1629F3A269F9836 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8673" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+26": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "547" ], - "x-ms-client-request-id": [ "68b0411f-6d2d-4f13-9ea2-ecad1c8b4891" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "4c158b25-4077-4068-a2e2-521c00ae7ca1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "0a284fbf-f413-4195-91c1-834e50b95e34" ], - "x-ms-correlation-request-id": [ "0a284fbf-f413-4195-91c1-834e50b95e34" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012334Z:0a284fbf-f413-4195-91c1-834e50b95e34" ], + "ETag": [ "\"1DC38E3BB8799B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7dc1962a-e007-451c-bee5-8da2369121c3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "11274441-0c43-4271-bc0d-c13dcd69e2e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:11274441-0c43-4271-bc0d-c13dcd69e2e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26643BA19F8F4FD3B95BD4E9311B1CDA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90AD6719BB9F4557AF037766E4BA1168 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8673" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+46": { "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "5dcf1a65-29c1-4a55-89b8-81417dfed935" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] } }, "Response": { @@ -3890,40 +4595,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "306837c7-d53c-4935-920b-c338676898ba" ], + "x-ms-request-id": [ "5efdae97-2ddc-4a2d-8c96-4fe2e0f74073" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "57086ce1-02ea-4f27-80db-6c06922904fc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012334Z:57086ce1-02ea-4f27-80db-6c06922904fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06469c2c-1bcd-4fb2-9b03-055ba80e57cf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "15b2231f-4617-4d18-8476-79a98101413c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:15b2231f-4617-4d18-8476-79a98101413c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1FE8A13DAF84F3E968BE3C9A1F6E74B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B32E9C48BA034F5ABABED7208F504F1A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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.Web/serverfarms?api-version=2023-12-01+2": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01+47": { "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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "8e6932a9-acd1-4d88-8d77-b3a9d4380a1f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "6204659e-ddc7-4361-b84e-dba27803f27f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3935,40 +4640,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f8929ec-fff3-458e-b331-154ce29c6792" ], + "x-ms-request-id": [ "2fd6c72f-b096-47cd-a31b-85ad112571e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "f67f6785-be82-4d9b-a8eb-6e69e67afcdb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012335Z:f67f6785-be82-4d9b-a8eb-6e69e67afcdb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a47989c3-7a01-42db-be45-b973a12ea8bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c04f1afd-3ca0-4c92-b7aa-21e1578b54cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:c04f1afd-3ca0-4c92-b7aa-21e1578b54cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AECAA79D7A2D45DB980F57337B2853F8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB42F7BCEA0C4526807B150DDC3BFA1C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6341" ], + "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "550" ], - "x-ms-client-request-id": [ "6d2b63fc-0865-419c-93ce-c6cbfe9bd95a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "00f4f281-f7f5-442f-9321-547fc8488f5f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3979,41 +4685,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E3BB8799B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de252183-8e8c-4e98-a228-e4e2e0368e56" ], + "x-ms-request-id": [ "a0f3aab4-bd7e-4225-9af4-56abcd6f94c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "489163b2-4351-4091-a620-2d7ef858aefe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012335Z:489163b2-4351-4091-a620-2d7ef858aefe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4c71f391-6d74-4590-9992-5fd7e9238f21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:4c71f391-6d74-4590-9992-5fd7e9238f21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F65012BE2D054F4EABB3CC83FD69D94D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4B913DB48824CE8AF1EB83DDEBE1BCD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "8673" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", "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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+49": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "551" ], - "x-ms-client-request-id": [ "036cfd10-0327-4e0e-ae30-735a450e0b7e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "e0072d20-7bcd-465e-8a50-4ceff9f45926" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4025,40 +4732,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e21cdcfe-1c60-4154-8fa6-49d97488f267" ], + "x-ms-request-id": [ "4cd769f2-038c-4f20-9b0d-7475129d6dee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "a823e88d-7000-4ee1-b3fb-7668c70b8856" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012335Z:a823e88d-7000-4ee1-b3fb-7668c70b8856" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9a70157-c833-4d5d-8e41-83a1db2b6cb5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6db7579d-cee1-45e5-a475-7d5b652a426f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:6db7579d-cee1-45e5-a475-7d5b652a426f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AAF03F2F34C44E6A5685BEAE987A474 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99BFA20A09A7480EBADB3C24CEAAE9D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01+5": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01+50": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "e16dfc76-12b5-498b-9a5f-8cc1ec7ecbc4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "da35e143-ce07-48c1-9167-92e4112e535e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4070,40 +4777,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c7436d2-e05a-41dc-82c4-f888ca05b76b" ], + "x-ms-request-id": [ "99e84e27-dd4c-4e8b-bb85-991e2c385c9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ae615fd9-54e3-42ff-a4a0-3c7ad421e670" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012335Z:ae615fd9-54e3-42ff-a4a0-3c7ad421e670" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71030888-57dd-4b00-b148-8a018fc2cdfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4c7f0931-9add-4c90-b8d6-b00db200379d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:4c7f0931-9add-4c90-b8d6-b00db200379d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17D9446A5C9640C484F96C3EA416495E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8EB8B7DF79946D1851FFEC1F1B53724 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01+6": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "844165c6-0ea6-4371-b9e0-4133ee220850" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "1947df93-5a0d-48cf-8c0c-ccb9c20499ff" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4115,43 +4823,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "76e72d15-962f-4dd7-9ece-e7be98b150e6" ], + "x-ms-request-id": [ "38fa9cb6-0ef0-4201-ba25-de46761c84ab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "0ed06285-6739-45c9-ae7c-b1887c28c36b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012336Z:0ed06285-6739-45c9-ae7c-b1887c28c36b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3632d12-8ec0-41c5-95ce-ded7852b989c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0b7ec085-63bd-4c93-98f8-3da2e96e755d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061321Z:0b7ec085-63bd-4c93-98f8-3da2e96e755d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 716EA06EB750421CAE867D4304666C79 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 875B760C203C4D3C8126E19A5FE9724B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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+7": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+52": { "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, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "20b2b955-1d01-48c9-804b-6e3bc44176a5" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1941" ] } }, "Response": { @@ -4159,40 +4862,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1753989e-528a-4c2f-a02e-d45e858b6014" ], + "ETag": [ "\"1DC38E3BB8799B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "acb24b5d-8338-48ea-a134-08867af74ded" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012336Z:acb24b5d-8338-48ea-a134-08867af74ded" ], + "x-ms-request-id": [ "7bb3d190-447b-4d43-97da-36a2ece578ec" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d2b31e0-3edb-4d8d-8653-a1181ede0697" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "16c1fbf4-3a12-4173-81ce-7cb88d9fc429" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061324Z:16c1fbf4-3a12-4173-81ce-7cb88d9fc429" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 014BA5C42C5E4723A4C895CBA16881BE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1075E93ADD8747F993661F74CA5369BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:21Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], + "Content-Length": [ "8666" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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}}", "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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "fb50ac8f-1f99-4df8-b611-8e6d705e9faf" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "526" ], + "x-ms-client-request-id": [ "bb701206-52fd-41d9-b2fa-5c68dea61b33" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4202,37 +4908,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "52a605ed-e261-4799-86ef-5c1a1919e225" ], + "ETag": [ "\"1DC38E3D0FF5BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "cab62e92-3fce-4c32-a1b7-d3c940affd26" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012336Z:cab62e92-3fce-4c32-a1b7-d3c940affd26" ], + "x-ms-request-id": [ "2b2015b7-f932-4a32-bea2-5cc3085ee0b4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bb582133-d05f-463c-beb7-1e8f6a09af9a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061354Z:bb582133-d05f-463c-beb7-1e8f6a09af9a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62FB7DD0905E44D29F6311BB83232A09 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53D57566A3CC41B18CFD639C79909918 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:54Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "288" ], + "Content-Length": [ "8532" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+54": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?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}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "98ea2ea7-b771-4f3f-9f81-f3f7a3e03b5e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "116" ] } }, "Response": { @@ -4240,40 +4954,45 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Request-Context": [ "appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331" ], - "Access-Control-Expose-Headers": [ "Request-Context" ], + "ETag": [ "\"1DC38E3D0FF5BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ "2ea2e4cb-ad05-42a6-a24a-2f32d30b61d1" ], + "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "51bf6ab0-12d7-4ec2-8985-d24fc12b57d7" ], - "x-ms-correlation-request-id": [ "51bf6ab0-12d7-4ec2-8985-d24fc12b57d7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012339Z:51bf6ab0-12d7-4ec2-8985-d24fc12b57d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e492d2fc-f90c-4f98-8f42-f78e0a1f32bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:e492d2fc-f90c-4f98-8f42-f78e0a1f32bd" ], + "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 110A919FBD9C4530A347961EC8EC07DE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:23:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7970974162F4403393159CB51E66C410 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:54Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "8532" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"2800716f-0000-0300-0000-6674d6190000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+10": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+55": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "0de251b1-4b89-499e-bf0c-f1da99bce51c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1786" ] } }, "Response": { @@ -4281,43 +5000,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379ADDD39AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14fe8b08-58aa-4d89-b695-4608118ca50a" ], + "x-ms-request-id": [ "023bbca2-1c46-4273-ba6b-686fcadd8c79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "c27717af-a5ed-4cd4-8b02-309f9575385c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012407Z:c27717af-a5ed-4cd4-8b02-309f9575385c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2fe00af-c52f-47a7-95f8-cc2e2ce47b9a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a0013c29-8008-46cf-a610-dd529d2c20c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:a0013c29-8008-46cf-a610-dd529d2c20c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67F81D110F894605B53C7D4E1AE7490A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:23:39Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 277782B79E964409AE6BB58EB14BF576 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7512" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:23:41.39\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "6f538f47-5584-4cdf-94d7-bcba8367a17f" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "8a53b6ef-9ff7-4bfe-ab1e-688339d36171" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4327,42 +5045,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "effb9d11-96da-4442-afd5-e85a8f56d21c" ], + "x-ms-request-id": [ "fe277dcb-957d-485f-95d4-b9ef9d317e79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "11e96383-3ee4-4ef3-86fd-79b2b41d272c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012437Z:11e96383-3ee4-4ef3-86fd-79b2b41d272c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/588e2856-3ceb-4434-a202-829770eafb2b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e0386025-6005-44fa-a042-4bbcdd168e60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:e0386025-6005-44fa-a042-4bbcdd168e60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 218E853A94864A629FDF72FEB686E11A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78A36D3208554C52A7494CD5F213A429 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:06.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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]+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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "4f688200-9ccd-4f87-872d-f929c3ce9055" ], + "x-ms-unique-id": [ "530" ], + "x-ms-client-request-id": [ "9c97fe2f-34f8-4cad-b67d-083f9bd9c397" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4373,42 +5091,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], + "ETag": [ "\"1DC38E3D0FF5BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b44a2c4-df2f-4d02-a3c5-a38c3ae95ac6" ], + "x-ms-request-id": [ "f9a0e79d-c2c2-4acb-9cd6-f5ad3144fef2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "01bb2e74-b675-49d9-ac54-7ec769c3a6ed" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012440Z:01bb2e74-b675-49d9-ac54-7ec769c3a6ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "54d1a0cd-13f4-4b32-9811-03395870a031" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:54d1a0cd-13f4-4b32-9811-03395870a031" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52B82818D3D94C02AFAC325C7FB3BB44 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 064F25DD8B174943BDB190CEA9FE189B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "8532" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:06.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+13": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+58": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "560" ], - "x-ms-client-request-id": [ "29eb571a-230b-4bb0-ac22-975cf373d768" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "3cda85ab-5a57-4e5e-b864-acc86dc1658a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4420,40 +5138,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "92facf37-b262-4f22-9725-9a235b75157e" ], + "x-ms-request-id": [ "6b2aa792-3962-4441-a18e-b271e146b2d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "ad93e787-ec6e-44fa-89dd-b9cee1fbc3ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012440Z:ad93e787-ec6e-44fa-89dd-b9cee1fbc3ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7506d7ea-e57f-4bf0-829d-744b873eecf2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3c7aee00-f6c1-4027-a17d-7022b1455948" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:3c7aee00-f6c1-4027-a17d-7022b1455948" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35F6CB6FD9B64E5FB6603088C2AFB0E9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89FD676956E142D6AA006DC8E5495E0D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "561" ], - "x-ms-client-request-id": [ "3ca99303-d5d3-461c-9086-9e1031ab5bf2" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "8828bb73-1c73-422a-ad49-fba01bc72833" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4465,40 +5183,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6649193a-0eba-48f2-b0ea-706c58d1414e" ], + "x-ms-request-id": [ "02e960ba-cb11-43a6-bc6c-04b4c842ea7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "4ff11b81-458c-42cb-a809-ede867a19dd1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012440Z:4ff11b81-458c-42cb-a809-ede867a19dd1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec14647d-f756-438e-ace8-8beb280d4741" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "139c314c-343b-4ac9-897f-76a1481ffa88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:139c314c-343b-4ac9-897f-76a1481ffa88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96823604992B47149FA0D7BAD1F715D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC03B9CAFEBB438E91CDC2FC52907D82 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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]+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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+15": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "b7db7270-4568-4ac8-ae2c-f8b20e476990" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "25df1435-007c-41fd-b5bc-ecfbbb9109f3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4509,42 +5228,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44d3b32e-00dc-4088-ba4e-d2dd9089bf95" ], + "x-ms-request-id": [ "a1f19bba-9d31-49e1-b891-983a5998bbe7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "5192fc7b-5466-46d8-8bf4-9d249f4a3da7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012441Z:5192fc7b-5466-46d8-8bf4-9d249f4a3da7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae7ad031-c8b1-45ef-ba18-1b4436df4155" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4a1137ca-e40f-47d7-9b6a-d272d2a64969" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:4a1137ca-e40f-47d7-9b6a-d272d2a64969" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF5280EE6D6E4C3FA5B2B74AB7764558 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:40Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65D8ABD52EEF4402AB79B48073D6AC65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7308" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:06.85\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?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/providers/Microsoft.Insights/components?api-version=2015-05-01+61": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "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": [ "563" ], - "x-ms-client-request-id": [ "8e6f9033-61fc-4204-b6db-0e2a83bc16d1" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "e4395888-67a8-433e-8645-7d6bc71730e4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], + "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4555,42 +5273,84 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "" ], + "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-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "cf946405-3c84-40e9-8435-2a85254df4ca" ], + "x-ms-correlation-request-id": [ "cf946405-3c84-40e9-8435-2a85254df4ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061357Z:cf946405-3c84-40e9-8435-2a85254df4ca" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F8424D0AFB69459EB3C87EF7F0B27B29 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:57Z" ], + "Date": [ "Thu, 09 Oct 2025 06:13:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "31277" ], + "Content-Type": [ "application/json; charset=utf-8" ] + }, + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"690042c7-0000-0300-0000-68e7499f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-6qf9o2\",\"AppId\":\"c2c5def4-4d23-4f10-8de9-89754de976d1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"644a5932-6487-4d49-b880-b826e253576e\",\"ConnectionString\":\"InstrumentationKey=644a5932-6487-4d49-b880-b826e253576e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c2c5def4-4d23-4f10-8de9-89754de976d1\",\"Name\":\"Functions-PowerShell-74-6qf9o2\",\"CreationDate\":\"2025-10-09T05:34:54.7889147+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-6qf9o2_c2c5def4-4d23-4f10-8de9-89754de976d1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-6qf9o2-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690005cd-0000-0300-0000-68e74a340000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-h8c4uv\",\"AppId\":\"70ed37cc-52fa-45f8-8792-01a35a484081\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\",\"ConnectionString\":\"InstrumentationKey=034bd992-a14d-4b81-aa94-26c8ed7eadd3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=70ed37cc-52fa-45f8-8792-01a35a484081\",\"Name\":\"Functions-Node-22-h8c4uv\",\"CreationDate\":\"2025-10-09T05:36:17.9855486+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-h8c4uv_70ed37cc-52fa-45f8-8792-01a35a484081_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-h8c4uv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690099cc-0000-0300-0000-68e74a260000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-6-dnrk0q\",\"AppId\":\"cc65cb4f-354f-41a4-b129-015e7f672fe0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\",\"ConnectionString\":\"InstrumentationKey=3ba2b0b5-510e-4c9e-8c35-4491650a1687;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cc65cb4f-354f-41a4-b129-015e7f672fe0\",\"Name\":\"Functions-DotNet-6-dnrk0q\",\"CreationDate\":\"2025-10-09T05:37:34.3207914+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-6-dnrk0q_cc65cb4f-354f-41a4-b129-015e7f672fe0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-6-dnrk0q-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690029d1-0000-0300-0000-68e74a8a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-310-edsbh6\",\"AppId\":\"07d70b1d-7c00-43df-8df8-0dec12f4bf9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\",\"ConnectionString\":\"InstrumentationKey=0e98373f-3747-4ad7-bc01-ccc21cd6dfa6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=07d70b1d-7c00-43df-8df8-0dec12f4bf9f\",\"Name\":\"Functions-Python-310-edsbh6\",\"CreationDate\":\"2025-10-09T05:39:01.9601948+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-310-edsbh6_07d70b1d-7c00-43df-8df8-0dec12f4bf9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-310-edsbh6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69009bd4-0000-0300-0000-68e74ad30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf-new\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"AppId\":\"603deece-4203-4054-8737-3eb13240769c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"0b0b7d15-e1d4-4048-9377-05b413368051\",\"ConnectionString\":\"InstrumentationKey=0b0b7d15-e1d4-4048-9377-05b413368051;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=603deece-4203-4054-8737-3eb13240769c\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"CreationDate\":\"2025-10-09T05:40:28.0183363+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-8l0a19iyrf-new_603deece-4203-4054-8737-3eb13240769c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69007ed7-0000-0300-0000-68e74b1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"AppId\":\"3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"ConnectionString\":\"InstrumentationKey=46eeb7c3-c3c7-4b38-98e1-f66f69cec21f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\"Name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"CreationDate\":\"2025-10-09T05:40:55.3683639+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-w41plh08gr_3b8cb7a9-1a39-46a8-859c-586e03f7ac71_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-w41plh08gr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69004cdb-0000-0300-0000-68e74b840000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-6qbcpwifmx\",\"AppId\":\"e9ddb7e5-075f-48e7-a604-ff4b22284179\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\",\"ConnectionString\":\"InstrumentationKey=bbad4093-7a68-46df-81ac-6b597ad7b16b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ddb7e5-075f-48e7-a604-ff4b22284179\",\"Name\":\"Functions-CustomImage-6qbcpwifmx\",\"CreationDate\":\"2025-10-09T05:43:09.447569+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-6qbcpwifmx_e9ddb7e5-075f-48e7-a604-ff4b22284179_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-6qbcpwifmx-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900fade-0000-0300-0000-68e74be40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\"name\":\"Functions-TestAppName-4xrbthc6ij\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-TestAppName-4xrbthc6ij\",\"AppId\":\"bc6f60a0-1f23-49f7-8218-14e04735648a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\"ConnectionString\":\"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\"Name\":\"Functions-TestAppName-4xrbthc6ij\",\"CreationDate\":\"2025-10-09T05:44:37.7380797+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900f0e0-0000-0300-0000-68e74c110000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-jcai4tloxm\",\"AppId\":\"edc06622-67e1-40ea-b636-abe100011ad9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\",\"ConnectionString\":\"InstrumentationKey=5b9248eb-d543-4c30-b6a2-cbee25bfc09f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edc06622-67e1-40ea-b636-abe100011ad9\",\"Name\":\"Functions-Python-jcai4tloxm\",\"CreationDate\":\"2025-10-09T05:45:19.1816838+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-jcai4tloxm_edc06622-67e1-40ea-b636-abe100011ad9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-jcai4tloxm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69006de4-0000-0300-0000-68e74c680000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"ConnectionString\":\"InstrumentationKey=c60160b5-1df3-403a-ae09-477312b2167d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:46:59.3886076+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-8l0a19iyrf_4410ee6b-fa30-4aa6-80c2-d8bed8c860be_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69000ff0-0000-0300-0000-68e74d7f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"cea16b4b-c7ca-422e-b868-46ce02d96294\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"ConnectionString\":\"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900f7f0-0000-0300-0000-68e74d970000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8ae9thv0pn\",\"AppId\":\"882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\",\"ConnectionString\":\"InstrumentationKey=f3ec4fb2-d80b-4510-aa34-7b544e9d4361;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\"Name\":\"Functions-DotNet-8ae9thv0pn\",\"CreationDate\":\"2025-10-09T05:52:02.2302285+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-8ae9thv0pn_882b5dc6-655a-4f8b-9cff-8bb93f098cb9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8ae9thv0pn-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69005ff7-0000-0300-0000-68e74e390000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-n63k2zl8s1\",\"AppId\":\"edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\",\"ConnectionString\":\"InstrumentationKey=be43f23c-478e-4712-ad8c-52104fbcde0f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\"Name\":\"Functions-Java-n63k2zl8s1\",\"CreationDate\":\"2025-10-09T05:54:58.184581+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-n63k2zl8s1_edaec8cc-9f4d-4da8-9bac-b10c8d42651f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690056fa-0000-0300-0000-68e74e830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-5ys83coe4k\",\"AppId\":\"1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\",\"ConnectionString\":\"InstrumentationKey=8779f78e-5d73-455c-85c7-7e48c434f08c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\"Name\":\"Functions-Node-5ys83coe4k\",\"CreationDate\":\"2025-10-09T05:56:11.3214483+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-5ys83coe4k_1b7ffc5b-2de3-4ad1-b715-c59b306935a6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-5ys83coe4k-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690090fd-0000-0300-0000-68e74ed00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"a2e23061-6e60-4732-9a62-d9506b484be6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\",\"ConnectionString\":\"InstrumentationKey=81f30117-f079-4303-9ab4-cc64b23fdc04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a2e23061-6e60-4732-9a62-d9506b484be6\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:57:25.9307232+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-8l0a19iyrf_a2e23061-6e60-4732-9a62-d9506b484be6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a001405-0000-0300-0000-68e74f6b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated279k80n3oe\",\"AppId\":\"18182e7d-7fa9-4a35-b63a-8203c339e208\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"32a3312d-4213-42d7-ae86-1012107e72a2\",\"ConnectionString\":\"InstrumentationKey=32a3312d-4213-42d7-ae86-1012107e72a2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=18182e7d-7fa9-4a35-b63a-8203c339e208\",\"Name\":\"Functions-DotNet-Isolated279k80n3oe\",\"CreationDate\":\"2025-10-09T05:58:56.8819319+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-isolated279k80n3oe_18182e7d-7fa9-4a35-b63a-8203c339e208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated279k80n3oe-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a002f09-0000-0300-0000-68e74fb00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-n63k2zl8s1\",\"AppId\":\"8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\",\"ConnectionString\":\"InstrumentationKey=bc1cea38-cd52-446d-a51c-1f370f52fa5b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\"Name\":\"Functions-Java-n63k2zl8s1\",\"CreationDate\":\"2025-10-09T06:00:38.0476754+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-n63k2zl8s1_8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a008d10-0000-0300-0000-68e7501f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlerlk9q0p4fot\",\"AppId\":\"2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\",\"ConnectionString\":\"InstrumentationKey=a531e3e0-7484-48ea-8dfd-ef86644583c4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\"Name\":\"Functions-CustomHandlerlk9q0p4fot\",\"CreationDate\":\"2025-10-09T06:02:30.7826567+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlerlk9q0p4fot_2365ecb6-a03a-4d03-9da0-f7f040fed90c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerlk9q0p4fot-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a00ea18-0000-0300-0000-68e750b90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"AppId\":\"bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\",\"ConnectionString\":\"InstrumentationKey=0c0a27c4-e522-4085-afb0-22bef589eac2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\"Name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"CreationDate\":\"2025-10-09T06:05:15.4782138+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-mj4vdfk5w1_bc4b7d5d-9334-4e3d-a76a-8254a44a5086_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-mj4vdfk5w1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a00a721-0000-0300-0000-68e7514a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"AppId\":\"485971cc-b36d-44d5-b806-e6b6577a78f5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\",\"ConnectionString\":\"InstrumentationKey=3b594e82-228a-41ab-bbc1-c8f7074fd084;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=485971cc-b36d-44d5-b806-e6b6577a78f5\",\"Name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"CreationDate\":\"2025-10-09T06:07:31.0176348+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-5f2nspxwh0_485971cc-b36d-44d5-b806-e6b6577a78f5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-5f2nspxwh0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a000c2b-0000-0300-0000-68e751fe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"AppId\":\"e0c61f15-820d-4d0b-9839-a86a2748c341\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\",\"ConnectionString\":\"InstrumentationKey=54d8cd57-d8fa-474c-bd1f-fed4dad17e1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0c61f15-820d-4d0b-9839-a86a2748c341\",\"Name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"CreationDate\":\"2025-10-09T06:10:38.6324793+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-jndk42cwv8_e0c61f15-820d-4d0b-9839-a86a2748c341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-jndk42cwv8-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+62": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0b0b7d15-e1d4-4048-9377-05b413368051\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1898" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E3D0FF5BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d32eabb5-9ed2-48db-b11b-40d0a967fe3b" ], + "x-ms-request-id": [ "3e6e9aa3-f833-4179-8501-44efdd43c83a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "8b897513-38a0-4795-abc9-4b7fe98c10b2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012441Z:8b897513-38a0-4795-abc9-4b7fe98c10b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1626f9df-201f-4863-b9bf-273058c79a04" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9b0bd68c-7c98-4b29-93ef-0125bd607089" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061400Z:9b0bd68c-7c98-4b29-93ef-0125bd607089" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDE4C478E6494F99855709A4EBBB235A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:41Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C73030E8B174DBFA7BA1D90FC1377B1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:57Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "8666" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "87f36fe3-10ee-4664-9d7f-8c116b7db639" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "cb6d2685-f490-4cc5-9503-c28d4679f2dd" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4600,41 +5360,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E3E6930A40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80a34757-e1a3-48e4-9baa-b1d30cd46ee3" ], + "x-ms-request-id": [ "a3f58080-198f-44e6-a624-9b23ba2a5f6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "26183adb-d27c-49ab-986a-db0741b858bf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012441Z:26183adb-d27c-49ab-986a-db0741b858bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f250fce8-e26a-4309-a5ae-d5fecfb46852" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061431Z:f250fce8-e26a-4309-a5ae-d5fecfb46852" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0146F23600741C089D35C5D0D7EBF91 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:41Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 752CA8179408443DBD194ED270FF3E28 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "8532" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "565" ], - "x-ms-client-request-id": [ "e8409af6-3ed2-4cee-9552-1c308a0b8532" ], + "x-ms-unique-id": [ "537" ], + "x-ms-client-request-id": [ "05af80cb-588b-4d15-98b8-50bf2744a605" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4646,38 +5407,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da295315-f7eb-4150-b7df-9f1317941940" ], + "x-ms-request-id": [ "c92fd646-d829-40e5-896f-cfcbac232aa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "5f3fe3fc-cb73-4a9f-aa50-19f2e6e41d7b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012441Z:5f3fe3fc-cb73-4a9f-aa50-19f2e6e41d7b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7312b8bd-9761-4f80-99ff-3e1977d9bcd3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3a2d7d5a-fc03-40b3-b20f-d04d6d628340" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:3a2d7d5a-fc03-40b3-b20f-d04d6d628340" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A48B8267DBE6409390E77C69F7DA6CA1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:41Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBC10A34FBF441AD911C90F8AED96E48 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0b0b7d15-e1d4-4048-9377-05b413368051\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+65": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.2\",\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_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "2a9c57df-2d0f-47af-9701-af49800fde41" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "2096" ] } }, "Response": { @@ -4685,43 +5451,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379B5BEF220\"" ], + "ETag": [ "\"1DC38E3E6930A40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5c38df8-76ee-4007-aeb6-0f025bb3c0e2" ], + "x-ms-request-id": [ "47ca107b-a943-4bb6-a74f-45f28ef9b595" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "227c6e0a-f471-4fd5-bcad-aeafb322b772" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012444Z:227c6e0a-f471-4fd5-bcad-aeafb322b772" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3da1d6ec-4c02-4203-b258-2616ef5a2875" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:3da1d6ec-4c02-4203-b258-2616ef5a2875" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3574C265C7E4081AA693083E511028E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:24:42Z" ], - "Date": [ "Fri, 21 Jun 2024 01:24:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF697083B8664E91945ADEDDB2735A61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7854" ], + "Content-Length": [ "8532" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:43.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+20": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+66": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "6ee473a4-5f37-4bb4-8c7f-0cfcffdaedb4" ], - "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], - "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "f6851d14-a3bc-4fce-8d65-c2229cc78e29" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -4731,42 +5497,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379CBCD34D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29a49e8b-caa3-4fc7-b594-dd63e97b9018" ], + "x-ms-request-id": [ "205e5bc9-e711-4bf8-ba39-317d46f8b872" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "716fef57-64bf-4657-93b4-c3a9ac6e291c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012514Z:716fef57-64bf-4657-93b4-c3a9ac6e291c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67f7464c-9b97-4f58-9e86-10f94cab6c93" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "27b8bd3b-a571-4bac-8de8-419858889739" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:27b8bd3b-a571-4bac-8de8-419858889739" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B82845848152469ABAA91F8C75A5C624 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC1848199A654C349966B3D96AC94AC9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "1248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:43.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0b0b7d15-e1d4-4048-9377-05b413368051\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "a49a5193-174b-454c-82de-2628728d9ab0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "27305ca8-c944-4595-950e-8f01bf31e084" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4777,42 +5542,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379CBCD34D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc2bdee1-fe64-4d9a-9dfc-5d38dc5989fc" ], + "x-ms-request-id": [ "089199f8-6824-4c51-83b0-7961f8396365" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "32eba0be-cea5-4e27-9c39-23ae54c875e3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012515Z:32eba0be-cea5-4e27-9c39-23ae54c875e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d92c8f4-4088-4578-af71-72a042e7e9cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "738e5e79-1ad4-46b4-b133-6f0c364856b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:738e5e79-1ad4-46b4-b133-6f0c364856b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 349F74BFED0A43609F611A58F5319C5F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAFB5A3760C54A0ABCEBED2E7674E8C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7650" ], + "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:24:43.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"d715fdf3-1893-4720-bfd0-54b67d03e7a1\",\"clientId\":\"0c0f53ce-dd98-46db-bcc2-1faf02b2af8e\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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]+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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01+22": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+68": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "7967bdf8-d755-4b2f-85c9-a5375ff8cd47" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "57252e80-4600-4315-ba81-d9600b1b1c49" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4823,41 +5588,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC38E3E6930A40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0cce0749-ff0d-44c7-a4e0-0d54bafe7aa8" ], + "x-ms-request-id": [ "6a602a84-c0b8-4011-9e55-d1907876b848" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "4576ee4e-da67-4a8c-97fa-54ad2a85128c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012515Z:4576ee4e-da67-4a8c-97fa-54ad2a85128c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/39b468ed-032a-46ac-b5a2-6f5605c36a99" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "9a7831ca-4380-4fc8-a039-03211298d828" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061444Z:9a7831ca-4380-4fc8-a039-03211298d828" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8CE0786325B4C4B9524C3D97FEAB04B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9872FFEA1D4E469895C2238F683DEE80 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"}}", + "Content": 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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+23": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01+69": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "e47afaca-6422-4b54-9317-0ddc0d0486c9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "40505cd2-f4e5-4eb3-9de6-d289234416d5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4869,40 +5635,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af6cb1d2-9368-4b2b-af2e-25f6e93ef6a9" ], + "x-ms-request-id": [ "0f27829e-7771-4f12-a9e9-b1da73e550e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "3c2352e4-072f-4547-9321-ff673d9cdc4c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012515Z:3c2352e4-072f-4547-9321-ff673d9cdc4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "86eb526d-d5f9-4b2f-badf-1220b7a95816" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061445Z:86eb526d-d5f9-4b2f-badf-1220b7a95816" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F9BDA40CCB9404A8300AFFF7FBEF973 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E78A243BD9524B9F86C883B90A22805A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4073" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":26370,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01+70": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "571" ], - "x-ms-client-request-id": [ "8d742f2d-744a-4945-938a-45ee62d7fc9b" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "8e6d2667-1d46-4f4d-b9cd-3552407ba9a4" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], + "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4913,19 +5679,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379CBCD34D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81271f61-ee81-4432-8d97-daf00f78d1f4" ], + "x-ms-request-id": [ "b5019e70-edfd-488b-b51e-1859ea9c71fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "9d109cd5-b138-4859-844e-4f6a62a7d5da" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012526Z:9d109cd5-b138-4859-844e-4f6a62a7d5da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72db17e2-8f0d-4053-807e-5a41e52529ec" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "39de8e2c-def3-4ccf-a557-0a9b2f2ed95e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061452Z:39de8e2c-def3-4ccf-a557-0a9b2f2ed95e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A314C1D51AB24D428C221AA306EE49C3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C0DDA98AA814E9B9290CE3A49A9D14C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4935,87 +5701,93 @@ "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01+71": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "c6be1be1-2d67-4992-a929-cfd1c5790bc7" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "b484c1dd-496f-4d68-91cb-d45ea06e7be6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "5f8f10d0-65f0-47da-b403-c73ae40d5545" ], - "x-ms-correlation-request-id": [ "5f8f10d0-65f0-47da-b403-c73ae40d5545" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012527Z:5f8f10d0-65f0-47da-b403-c73ae40d5545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d594f0ef-7bef-4bd6-adcf-3c20d79750d8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4cdfebfd-fece-4d0c-a113-beea26140625" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061452Z:4cdfebfd-fece-4d0c-a113-beea26140625" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52FFAD030CB64349AF21B52188CA67E1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4309BFA4BE848D3825563BE923E6600 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:52Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1724" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01+26": { + "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "3a47e8ef-5281-4e5f-b146-c53908712905" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "6a03bc28-b074-482d-bdcd-daed6bf4989b" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], + "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "fcf3a315-8e55-4caa-be4b-9314f67c2669" ], - "x-ms-correlation-request-id": [ "fcf3a315-8e55-4caa-be4b-9314f67c2669" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012527Z:fcf3a315-8e55-4caa-be4b-9314f67c2669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8a389909-eacb-4347-b4e6-ed821c4346e9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d12f584-5f3b-4ae0-a42a-7fe0302420e0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "d50b6769-c821-405c-8863-54f8576dd2ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061459Z:d50b6769-c821-405c-8863-54f8576dd2ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA67D786A884B74A35F570625B1FF10 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0991DAA5D8634668BC270A2E9E9CD0A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:52Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": null, "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 062df8012b4f..623f4054400c 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": [ "574" ], - "x-ms-client-request-id": [ "4d7b89a4-8089-4f6a-86e7-5ce5dff6fd4d" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "8e2b1b93-afbd-4bc9-b653-693ae78e05dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,31 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "881c5004-3084-4406-a543-6171246bf849" ], + "x-ms-request-id": [ "c48567cf-e94e-4f2e-872d-151540ddc28c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "a45e714c-fb1b-494b-b5ba-e7f531d798d9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012528Z:a45e714c-fb1b-494b-b5ba-e7f531d798d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0909c24-965a-4449-8f4d-cce36c63d454" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b052faa9-363b-43e9-9728-50fa95d1f3ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061459Z:b052faa9-363b-43e9-9728-50fa95d1f3ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DB940138E77461B834BE1D8A0283966 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0E9A14E95294165A35A64ABF3D88834 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -62,43 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC379E8FBE8D5\"" ], + "ETag": [ "\"1DC38E40E4B7F40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5463a83f-4804-44dd-9b61-84927d3d0adb" ], + "x-ms-request-id": [ "62c2638a-1751-4b81-99d9-2d6e13a40d2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "c6dc52b6-9d84-4820-8ec0-ee2f39303e86" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012533Z:c6dc52b6-9d84-4820-8ec0-ee2f39303e86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/67a76c9a-d002-44d2-94f1-62a0f3763d3e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-correlation-request-id": [ "36e8dd11-bc1a-4831-8b37-432475080683" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061507Z:36e8dd11-bc1a-4831-8b37-432475080683" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7EE4813F6CCB4B40A83B30DA36779079 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:25:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:25:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5ADDAB66C204EEB897350F2D8005E21 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1714" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "576" ], - "x-ms-client-request-id": [ "0fe5b00d-7e3a-436a-94f8-979dced67ac2" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "905c3f5f-3b91-4d99-8c75-ef9b5edf1ded" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -109,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "577646bb-05f0-4429-aefa-b5e4039489ac" ], + "x-ms-request-id": [ "2f06d768-66aa-4814-8f82-51a49bbb258d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "662102d8-2632-47d8-836d-94fcf84ae296" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012603Z:662102d8-2632-47d8-836d-94fcf84ae296" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ed7643ef-68be-481e-9eaf-e20e4b216abe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061537Z:ed7643ef-68be-481e-9eaf-e20e4b216abe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB1EB97CBFA74703A63FF6AF91A7B226 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 822C6AD19C6C49C188427949250A55A2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "0fe5b00d-7e3a-436a-94f8-979dced67ac2" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "905c3f5f-3b91-4d99-8c75-ef9b5edf1ded" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -154,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01043848-1e4e-4e59-8bde-94bb9fba8447" ], + "x-ms-request-id": [ "cfe599c5-3a8f-4af0-8586-323563559aa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "766ff094-99ae-4625-af5c-8fcb25b8eae7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012603Z:766ff094-99ae-4625-af5c-8fcb25b8eae7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "21677599-fa37-49ec-961e-1fcd871ca187" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061538Z:21677599-fa37-49ec-961e-1fcd871ca187" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD3E6F5EF5E449FCA0037CE0DE173B0B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91661A9E3C734B90B1A430D42D818F90 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "578" ], - "x-ms-client-request-id": [ "72623b0c-83c3-4e06-b35c-30cd95d19a89" ], + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "76ef8e84-ba6c-49fc-b8c1-96a2980a4b58" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -199,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d65efdb7-46c1-4525-bcd4-40caf12b723f" ], + "x-ms-request-id": [ "13126b2c-c38d-493b-bfad-a3ad00c8801c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f93c26db-af93-4fd6-8525-1084c4abc7a7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012604Z:f93c26db-af93-4fd6-8525-1084c4abc7a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9966d259-87bb-43d9-9998-6957cf3b5715" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061538Z:9966d259-87bb-43d9-9998-6957cf3b5715" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 800CEF0763954ED68AAEE3D0DED20DB0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 50D5D6AE836542A4924342642F636C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "579" ], - "x-ms-client-request-id": [ "53ea14f1-69b8-41c7-80a3-f5bee10b6508" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "fee53f93-09f4-4aa8-afc0-e9aff86e28b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -244,31 +246,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8717f087-fcc0-4cc5-a15d-b9e2405bf877" ], + "x-ms-request-id": [ "b2cf9331-b215-4895-a6c1-a0d5ec3dd4c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "b485d374-63bb-4365-9940-74c72457ae54" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012604Z:b485d374-63bb-4365-9940-74c72457ae54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e6b10695-51cb-4e0d-8fa0-dfce4352fdfd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061539Z:e6b10695-51cb-4e0d-8fa0-dfce4352fdfd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BD4E0EB274B4316A6F0DCCA78BF8950 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:04Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F207DC4A6BF94F6B958085086F45D07B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -284,41 +286,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33439254-118e-497a-89c4-e65577b35b9c" ], + "x-ms-request-id": [ "e84cd02e-e2e5-4597-b948-a6c297503e91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "b8c63674-891b-4c61-95e9-f40d8cd6acae" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012606Z:b8c63674-891b-4c61-95e9-f40d8cd6acae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/102f66c7-fb03-48bf-a720-2253291c73bc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "1d1aafcd-8115-45d6-8654-2f05db552ba1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061541Z:1d1aafcd-8115-45d6-8654-2f05db552ba1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AEE2A8F4FD3C423FA53A93D3C475D166 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:04Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4E81BB92E9B4933B3ACAAA495804C2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:15:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1710" ], + "Content-Length": [ "1808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "ba61025d-0022-4dd0-ba41-eaba589fd6df" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "5a4f8904-a9d7-42ba-a0c0-d465dd857e0f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -329,41 +332,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11694dff-e380-4489-b5f6-fc909e7de9db" ], + "x-ms-request-id": [ "fdb02fb2-bded-4c8c-a79e-98cf6caba669" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "e207e1af-eef1-4843-9fc6-16065740fbb3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012636Z:e207e1af-eef1-4843-9fc6-16065740fbb3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "edab7faa-5f08-4818-81bb-ca440bfd6846" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:edab7faa-5f08-4818-81bb-ca440bfd6846" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E6B8979F6E946DFA259B9026D0DDBC9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C2BAEB758224467A9FC20A334D7EDC5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "582" ], - "x-ms-client-request-id": [ "ba61025d-0022-4dd0-ba41-eaba589fd6df" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "5a4f8904-a9d7-42ba-a0c0-d465dd857e0f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -374,40 +377,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c92b5bde-3986-40c8-9854-71f79895f73a" ], + "x-ms-request-id": [ "0e489188-ef74-484c-83e8-d2786a0a586f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "f4325ff9-91db-4f8c-8a73-cb4bc8068db3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012636Z:f4325ff9-91db-4f8c-8a73-cb4bc8068db3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d4ad4c82-adff-4aa5-9dda-5d8f84dfaf51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:d4ad4c82-adff-4aa5-9dda-5d8f84dfaf51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DA6C0E2FA334786A95D1211B8C1543D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEE70FC96C574B1285403FF0CBBEBFFB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "583" ], - "x-ms-client-request-id": [ "34afa580-2c4d-4579-9fc9-b5e806e4fac5" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "9b8fe76f-3f59-43ed-a6ef-80e7061804ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -419,40 +422,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d92e9d8b-7e7a-4b96-879a-d1928f2d8a94" ], + "x-ms-request-id": [ "5ec91b95-19be-4dd5-97cd-8b04a397e345" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "dd5bf9a1-d665-45c6-8dec-6f4eb03686bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012637Z:dd5bf9a1-d665-45c6-8dec-6f4eb03686bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "05e2254e-5602-4d43-9ef0-cb9bc4a5cb68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:05e2254e-5602-4d43-9ef0-cb9bc4a5cb68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDC6211F45E34FFAA1ACFB6BF178FE89 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D48496A20F5A452F8343571D88145188 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "584" ], - "x-ms-client-request-id": [ "0598c891-4448-4ecc-bc6d-a933ebe6f5d1" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "7a151d1f-bee8-48ac-adbf-3f068dbab269" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -464,40 +467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f868967-90e2-485e-816d-48def41fe941" ], + "x-ms-request-id": [ "476e86be-f7f0-4937-a441-18ab755ac02c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "a818cb1f-bb99-45a6-89a9-dc6383e0156f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012637Z:a818cb1f-bb99-45a6-89a9-dc6383e0156f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "15dea366-7b3c-4250-869c-4618905013ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061613Z:15dea366-7b3c-4250-869c-4618905013ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58E04167923649DEADBC99F9A58AF29E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43081566292D4546AA5CA980C84F1A93 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1723" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41615,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41615\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:25:30.01\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "585" ], - "x-ms-client-request-id": [ "c5f073cf-d190-4b6e-bcff-57d0f4cd421e" ], + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "ca79945f-7512-4f59-a9ae-2d3cedaa330a" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], - "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], + "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -509,17 +512,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e212da30-1884-44c5-a9bb-6f55ee99005e" ], + "x-ms-request-id": [ "f8293004-11ea-432c-9870-9ce1d579295e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "cfddc27e-997f-4e38-a719-2f1525b0157f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012653Z:cfddc27e-997f-4e38-a719-2f1525b0157f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dae0a86d-0c1d-4492-8cf7-39ff7687d6dc" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "0a76258f-ba74-4ee7-b7c5-dc0085571f34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061620Z:0a76258f-ba74-4ee7-b7c5-dc0085571f34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 785758667CC54228B38B85A06DBBAC59 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:37Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AE1D72B311842F4A6E42EDE2F0B24DB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -536,12 +540,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "586" ], - "x-ms-client-request-id": [ "42e73c11-1aca-409c-9bdb-d53e456ce888" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "a63fb7f0-cb71-4a20-a39d-0508334291ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -553,31 +557,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59a3658d-f570-48aa-9628-2e53862ce705" ], + "x-ms-request-id": [ "52955ebb-1766-4746-9422-dc512ab48a66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "0d50b514-e3e1-4e2c-ae3c-871ff2146b8d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012654Z:0d50b514-e3e1-4e2c-ae3c-871ff2146b8d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d2ee869-d106-4db9-80a4-0d40f3e16a08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "094a39fc-f2a9-41fe-ad89-8bbcf08caeda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061621Z:094a39fc-f2a9-41fe-ad89-8bbcf08caeda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5551F3A7B3534627BF9DA1F5D0197F12 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85CEAB3AAE1D4DE2B2F73006E408E2AD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:21Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -592,43 +597,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A1BCF966B\"" ], + "ETag": [ "\"1DC38E43D20C910\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88a82fb9-5931-490c-bcf2-e6b8a8faf2d6" ], + "x-ms-request-id": [ "9e20f784-fe80-4ed5-9f33-bd0e3555b7e0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "d9a49978-3194-4280-b56c-af6ac0496d1e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012658Z:d9a49978-3194-4280-b56c-af6ac0496d1e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8706ac1b-6f6e-40bc-8405-0dc3a6087b34" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "85c4ec0b-c632-4180-b1bb-eb841f5b9e3c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061625Z:85c4ec0b-c632-4180-b1bb-eb841f5b9e3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A55DB6097F0040E3886C28FB9137D492 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:26:54Z" ], - "Date": [ "Fri, 21 Jun 2024 01:26:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 036ABC0CCBA54BA6B1008E1514EE7C64 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:21Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1719" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "588" ], - "x-ms-client-request-id": [ "8a94b0f6-5287-4043-9c56-750f14e0440a" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "b4bcb74e-f3a0-4752-9d18-5931ffbe5508" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -639,41 +645,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "565214f8-e011-4d69-b180-7fc996cbd8fb" ], + "x-ms-request-id": [ "77e7c183-e788-43c5-9085-8d674b1ee5c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "03fdaff0-de0e-4ebf-aef9-99754115402e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012728Z:03fdaff0-de0e-4ebf-aef9-99754115402e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "822a3733-f4b2-4752-8c35-741366473213" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061656Z:822a3733-f4b2-4752-8c35-741366473213" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8935F8485CC04BC9B56F7E07F1EED132 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:27:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:27:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE44ED40FEE14A01A37845D9A83D25FA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:56Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "8a94b0f6-5287-4043-9c56-750f14e0440a" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "b4bcb74e-f3a0-4752-9d18-5931ffbe5508" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -684,40 +690,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3c13da9-fa40-4a2d-84fa-a3c3c3528599" ], + "x-ms-request-id": [ "81645267-e4a5-4e88-96b9-672b9972c4f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "4ada12f7-f9fd-43ce-b31c-14c0b83716ff" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012728Z:4ada12f7-f9fd-43ce-b31c-14c0b83716ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "47a77bd8-218f-473c-849f-47e253d5c488" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061656Z:47a77bd8-218f-473c-849f-47e253d5c488" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 595E1F9888DD4172B478C7D0FBF08871 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:27:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:27:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1DAF658806E243EBB53E937C6654C447 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:56Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "590" ], - "x-ms-client-request-id": [ "ab03e1cb-a7a5-4448-b49c-c94060b11776" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "a5223dde-22de-489d-b891-8dcf541ad99b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -729,31 +735,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06db5a9e-0cc6-4e79-820c-b78def5c6272" ], + "x-ms-request-id": [ "2219dd03-e357-4895-9a30-0022623d2d72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "29ed5419-a4cb-48a6-bd5f-ef72d32f3148" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012729Z:29ed5419-a4cb-48a6-bd5f-ef72d32f3148" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "44bf4c3c-ddb3-4455-a93d-6dff9bf2fb9e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061657Z:44bf4c3c-ddb3-4455-a93d-6dff9bf2fb9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 045571CA07024C0CA737E9207212825D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:27:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:27:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1EDD4D3488942B28D6C47566291A006 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:57Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -769,41 +775,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50af3ba1-170c-4108-a82b-f202ab39b73c" ], + "x-ms-request-id": [ "06f8edc7-e83f-400b-ab23-7d14c18462a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "bf7f63b2-24a1-4abc-ac5c-40d0266d6f09" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012731Z:bf7f63b2-24a1-4abc-ac5c-40d0266d6f09" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c2e7f7a-e619-4368-8b95-208b8a02d798" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a8a148fa-262d-4583-a4ac-be300bb845a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061659Z:a8a148fa-262d-4583-a4ac-be300bb845a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 588CAC778FA646D9AC8BCBB483F7ECA2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:27:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:27:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4A55C56B19B42728CE53F77E2EEA60A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:57Z" ], + "Date": [ "Thu, 09 Oct 2025 06:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1809" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "2665568e-42a5-46b3-b5e7-d72e1a8c1669" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "323ca8d4-e5c0-4275-9649-49d3c06a8879" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -814,41 +821,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d530d41-c758-4c02-9ef8-0b5d66bf860e" ], + "x-ms-request-id": [ "6311c732-acc6-476b-be63-49b3fe450c0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "753e7661-0b0d-43ae-bc88-8b92039fcd8e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012801Z:753e7661-0b0d-43ae-bc88-8b92039fcd8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62cca4b0-bcb9-49e5-a2b9-cd1f83125d72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:62cca4b0-bcb9-49e5-a2b9-cd1f83125d72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5237548AE3EA4E868F7BF8AA651F37E0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:01Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64FE72AD1037427DA1D2BA261D9848A2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "2665568e-42a5-46b3-b5e7-d72e1a8c1669" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "323ca8d4-e5c0-4275-9649-49d3c06a8879" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -859,40 +866,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0588c178-1e8a-43d7-afc2-a7414f9525b6" ], + "x-ms-request-id": [ "6c2b9a7c-403e-458f-9b51-dbacd0ed8119" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "eedd3af0-8e67-412b-9565-be8e9ca039af" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012802Z:eedd3af0-8e67-412b-9565-be8e9ca039af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "79556331-69b1-4a00-a89b-7e0e949535fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:79556331-69b1-4a00-a89b-7e0e949535fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78CB04C62A1744FCA40DF0D2D331FC05 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:01Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EBB112CEEA541FCAD2B7135134F4BA1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "594" ], - "x-ms-client-request-id": [ "355195f1-0ebe-47f8-9061-7508249d383b" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "68d04c58-ff5a-4800-a628-a8012266ebca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -904,40 +911,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4477fa6-43bc-405d-a242-a33f1a25ebe3" ], + "x-ms-request-id": [ "84fc3b7d-6cd1-4614-a8a1-99f27266b3b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "4b85cae1-dce1-46b9-84cc-d6b67870a814" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012802Z:4b85cae1-dce1-46b9-84cc-d6b67870a814" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f71e6040-ce82-4a81-8929-302d10b17fea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:f71e6040-ce82-4a81-8929-302d10b17fea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F79040E3CDC64CEAA42D58B3937FC4AD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D9E26141A6E48DBB95235E463B4C53C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1630" ], + "Content-Length": [ "1724" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41616,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41616\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:26:55.5366667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "595" ], - "x-ms-client-request-id": [ "5d3c2647-ccf1-4ef5-8319-6a74344dcfa0" ], + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "c97b5919-81c5-45aa-879c-a8bcc960d984" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -949,17 +956,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5dafe2a4-15ba-4919-b844-4bd71f38a3ed" ], + "x-ms-request-id": [ "325f1f9f-d460-4587-8d1f-2351185ec6e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "cecf2d6c-473c-4de8-b722-f9c249b5a9ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012812Z:cecf2d6c-473c-4de8-b722-f9c249b5a9ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a36134f4-e2e7-47dd-b99a-b6b221f49849" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "0c489f3b-faa0-4d3f-8ce2-4ec1a4e449b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:0c489f3b-faa0-4d3f-8ce2-4ec1a4e449b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B05E4C3A3D44C539D7720249FE5844A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52C0FCC11C5248538733C76F42B0B737 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -969,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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "596" ], - "x-ms-client-request-id": [ "fbf58045-c6f6-4a99-89e8-bc47dfd08182" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "8e808905-95a2-4e6e-bdba-7a97871e8b6f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -993,37 +1001,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "5c9d91ab-71a4-4e90-b8f1-20011bd9b793" ], - "x-ms-correlation-request-id": [ "5c9d91ab-71a4-4e90-b8f1-20011bd9b793" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012812Z:5c9d91ab-71a4-4e90-b8f1-20011bd9b793" ], + "x-ms-request-id": [ "1aea06bb-d546-4420-a0d7-0d09bf54546f" ], + "x-ms-correlation-request-id": [ "1aea06bb-d546-4420-a0d7-0d09bf54546f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:1aea06bb-d546-4420-a0d7-0d09bf54546f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC763C3CB2B24CEE98B30A671932DFEF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9772273B9B7B4B2D93FCC882F405090C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], + "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Functions-MyPlan-1suocjtin7\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "597" ], - "x-ms-client-request-id": [ "4a046f77-8bf7-455c-a803-e8cb86bf2109" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "e15cbb61-96fd-404f-bcaf-a045fa82e306" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1035,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "2b1f63aa-d496-4116-a058-c20ebf50646c" ], - "x-ms-correlation-request-id": [ "2b1f63aa-d496-4116-a058-c20ebf50646c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012812Z:2b1f63aa-d496-4116-a058-c20ebf50646c" ], + "x-ms-request-id": [ "28317eed-2b76-4765-85c7-641b0ea4dd7c" ], + "x-ms-correlation-request-id": [ "28317eed-2b76-4765-85c7-641b0ea4dd7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:28317eed-2b76-4765-85c7-641b0ea4dd7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1631398AA47844A6AFB4977587138E86 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBEFCE84E0224D7A90542902436E3FD6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], + "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Functions-MyPlan-1suocjtin7\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1060,12 +1068,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "598" ], - "x-ms-client-request-id": [ "57006043-2d07-43e5-9ee7-815f2ef30841" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "5e1374c9-5c11-4b54-8a8d-3f55b98cf923" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1077,31 +1085,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e8d1685-69f7-4346-b1ef-b9240b07dfda" ], + "x-ms-request-id": [ "1607221b-879e-4330-b76f-c768087dce21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "eccf03bd-4b6d-4975-a07b-64dadcc8f35b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012813Z:eccf03bd-4b6d-4975-a07b-64dadcc8f35b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/553ec2d3-a396-4705-8869-041fdef683b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7084a0fe-ff94-44c0-89b4-e60f5e3d3f49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061738Z:7084a0fe-ff94-44c0-89b4-e60f5e3d3f49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3571E7424F546D583B947995C65A943 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB2774ADD0374857AC324A9FBD83AA19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -1116,43 +1125,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A4B58FB00\"" ], + "ETag": [ "\"1DC38E46A7D5590\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a5a89dd-6f92-4c10-8588-03b1a9ab561d" ], + "x-ms-request-id": [ "556baba2-2b97-4b79-a817-700e81693366" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "f335d64e-85fa-4475-b341-52a61e518145" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012818Z:f335d64e-85fa-4475-b341-52a61e518145" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3b427cbf-7919-4c82-8e7d-a1b33cae47cd" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "797c3e95-ef46-415f-9c4b-4de85912a570" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061742Z:797c3e95-ef46-415f-9c4b-4de85912a570" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3081C6FC1FA43D8932A9C80CB973BD7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:13Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4A1D0B8924648A3B41B00C2D3E96E1E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:17:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1915" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "600" ], - "x-ms-client-request-id": [ "dc9ed3cb-5a4f-486e-adce-0395720c4642" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "a8f6eecb-cfdf-4ebd-bc63-fc71e1df37c1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1163,41 +1173,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e61fc2ef-9abf-42df-9b0b-8778682f1ee0" ], + "x-ms-request-id": [ "7ec6a26a-c5e5-4e93-b5c0-53e7a89e4f37" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "38ce38af-95f6-4750-b742-df0a88f7665a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012848Z:38ce38af-95f6-4750-b742-df0a88f7665a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ce4bf2ac-5e08-43ae-b794-3f8a98aee0e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061812Z:ce4bf2ac-5e08-43ae-b794-3f8a98aee0e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4ABDE3B0EFA412193DA8D3C5A1D441A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 036C4C1E093E447B8C25092D9D78D78D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "dc9ed3cb-5a4f-486e-adce-0395720c4642" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "a8f6eecb-cfdf-4ebd-bc63-fc71e1df37c1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1208,40 +1218,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96a32ff6-d13c-4ec6-9515-72a05370c05b" ], + "x-ms-request-id": [ "a7525037-49ef-4248-9116-1ca9faac5704" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "e8d53485-0999-4baa-96bb-3d09a3878e62" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012848Z:e8d53485-0999-4baa-96bb-3d09a3878e62" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "32deb52e-93cc-4b8a-8ae8-30e9b32e4d3e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061813Z:32deb52e-93cc-4b8a-8ae8-30e9b32e4d3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A570B7E76E7844098E3D8DC459658332 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC22200491FB4D1388DE50F9D2CBF656 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "602" ], - "x-ms-client-request-id": [ "239f076b-c999-47ad-96c8-84504dd688fe" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "ab6c1da1-f359-4728-b5f1-40eeca55ac07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1253,40 +1263,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6f69c693-bf83-46b6-a0a1-c49183ea3213" ], + "x-ms-request-id": [ "33364c28-5704-41e4-88fa-3365f872f210" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "5acadb17-1189-4ce2-a783-52ab913240c8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012850Z:5acadb17-1189-4ce2-a783-52ab913240c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a8d8bacd-71a5-466a-8f5b-7a476427478b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061814Z:a8d8bacd-71a5-466a-8f5b-7a476427478b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1F905C49248457593F0F8AD8EFA1080 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA1118A4D9814A94979B65B5C8E4844C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "6245c345-cf1c-469e-9ce5-376d7055752c" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "83d2fa28-e6bc-4584-af32-b2860fb753f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1298,31 +1308,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f38bda4-9591-483f-b5c0-dae184ecfbb4" ], + "x-ms-request-id": [ "7e9e5976-ad5f-4e75-835e-062b48c51b3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "21e85d76-b0c3-43fe-adfd-a7d56fd6763c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012850Z:21e85d76-b0c3-43fe-adfd-a7d56fd6763c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "067b6c01-8370-4ad5-9a56-a424078fd351" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061814Z:067b6c01-8370-4ad5-9a56-a424078fd351" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54F401E2F5864087B7943EDE7AECEB19 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AEA792C435747CA807D995F34573C8E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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": { @@ -1338,41 +1348,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61c2084e-a261-4763-8460-e6ccdf10b20c" ], + "x-ms-request-id": [ "85e74481-c744-48e1-b74f-78a59192153d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "ad125d9d-6a8d-4b8b-a4ff-6151cafc618e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012852Z:ad125d9d-6a8d-4b8b-a4ff-6151cafc618e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d485597e-6804-4214-9654-41fa867d5fb4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f9d38e2b-45bb-458c-9772-e914939a2bf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061817Z:f9d38e2b-45bb-458c-9772-e914939a2bf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC51DEE31B1C4A8EA2361756EFA33968 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:28:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:28:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A7DA312E5674B968637178BE75F52D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1911" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"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-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "1f3482b6-54a2-4e61-a6ac-3d9f83ca938e" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "0c4d40e4-e153-4713-968a-1cc96c3a119e" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1383,41 +1394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9c03c3f-02a2-4544-a636-303baa1a295a" ], + "x-ms-request-id": [ "687d85b7-9daf-46a9-b07c-2d47c7100ee9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "2ff5e7f5-5b65-4961-b53b-19cfae8e0b8f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012923Z:2ff5e7f5-5b65-4961-b53b-19cfae8e0b8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dd52a075-67fc-46ef-9b4c-abf237420629" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061848Z:dd52a075-67fc-46ef-9b4c-abf237420629" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4A463E398744F1CB9F1E5520A5EE233 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 823857681C9E42048C4BCAA0B57A6D64 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:48Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "606" ], - "x-ms-client-request-id": [ "1f3482b6-54a2-4e61-a6ac-3d9f83ca938e" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "0c4d40e4-e153-4713-968a-1cc96c3a119e" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1428,40 +1439,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab3bfad7-4555-4e40-baec-36de0a63b170" ], + "x-ms-request-id": [ "b5a3e934-85f8-493f-aea5-dc6663e459b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "8bd8e8d8-4d09-4be2-8a9d-838214bdc140" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012923Z:8bd8e8d8-4d09-4be2-8a9d-838214bdc140" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "46365f04-d0b7-42ae-8fcc-7b99e23ce6cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061848Z:46365f04-d0b7-42ae-8fcc-7b99e23ce6cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5762E16DC8D247CB88F06BF9A967D0F3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D632A0A69ADF451F99E49FD236834184 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:48Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "607" ], - "x-ms-client-request-id": [ "8f52bbe1-2ddd-482a-8f35-6fd44995aaeb" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "1237c51d-ca50-499c-b67c-85b38ef0e80d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1473,40 +1484,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4adcdff2-3471-40d8-82c6-3dbf2ae94650" ], + "x-ms-request-id": [ "cb859cb4-f3cd-404c-a126-bd0eb4594952" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "5dd37be7-8dac-4e8c-8de8-937f3831be97" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012924Z:5dd37be7-8dac-4e8c-8de8-937f3831be97" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5a6c5977-d3c4-4bde-994d-4e6dc012abc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061851Z:5a6c5977-d3c4-4bde-994d-4e6dc012abc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F0709DF070F4F8DA334AA5332E9ACCD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66E2B3D15EB44D3B8C8C9C499454103F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:51Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1732" ], + "Content-Length": [ "1826" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7\",\"name\":\"Functions-MyPlan-1suocjtin7\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":41617,\"name\":\"Functions-MyPlan-1suocjtin7\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41617\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:28:15.1266667\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "608" ], - "x-ms-client-request-id": [ "64f61edd-4f1f-4d1c-a34f-f61a7d6ef28f" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "bd68a7fb-bbb1-4f84-9e93-60372a203ff2" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1518,17 +1529,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8267d1c3-28ef-4831-818c-8c8324f598ba" ], + "x-ms-request-id": [ "016b992c-859e-4013-8b88-c96636bf759a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "a2576714-7a15-40a1-9151-c52e5abb2ec9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012934Z:a2576714-7a15-40a1-9151-c52e5abb2ec9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/376ef05f-0cef-4881-b6ae-6450ff146ab7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "74ad9090-50a0-491e-875e-fbfee35451b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:74ad9090-50a0-491e-875e-fbfee35451b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18ABCD49A32A4B1CB525863B3197B68A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F152E65027141498B984193DD75C7A0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:51Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1538,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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "609" ], - "x-ms-client-request-id": [ "f8fb6311-78df-409e-a839-1b5afe095257" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "7715379d-3bf2-4d89-95ab-b732db46a6ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1562,37 +1574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "1b04ed22-6385-4264-9c33-ed5a4695c126" ], - "x-ms-correlation-request-id": [ "1b04ed22-6385-4264-9c33-ed5a4695c126" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012934Z:1b04ed22-6385-4264-9c33-ed5a4695c126" ], + "x-ms-request-id": [ "1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], + "x-ms-correlation-request-id": [ "1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A394EC3D07D2424883C938C733DBE9E3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9AB7023F2AB647F89DCEB9714DB5D8D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:58Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], + "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Functions-MyPlan-1suocjtin7\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyPlan-1suocjtin7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "d2016f75-2bbb-4d5a-b5cc-8a36ce7b3f6e" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "ac83127f-672e-4f31-a988-ce88a5a5ac3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1604,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "6331ce56-1591-4509-91df-b9e621adecf2" ], - "x-ms-correlation-request-id": [ "6331ce56-1591-4509-91df-b9e621adecf2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012934Z:6331ce56-1591-4509-91df-b9e621adecf2" ], + "x-ms-request-id": [ "8a5f2423-1443-4058-877d-3e5065f57090" ], + "x-ms-correlation-request-id": [ "8a5f2423-1443-4058-877d-3e5065f57090" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:8a5f2423-1443-4058-877d-3e5065f57090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89BA2156C5CD4E378A9EE9C864D257B3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:34Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A2371CA3E684F258A1644244292A26C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:58Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], + "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Functions-MyPlan-1suocjtin7\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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 fbe6ff5f7477..3ecfe2a0030e 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": [ "611" ], - "x-ms-client-request-id": [ "4428f1c5-09e0-4815-8a6a-b62102727062" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "9d8dbfe3-85d1-4dc8-b2d4-ae2e3d7b29e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,31 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e31a977-f61c-4a20-8a70-3d04aabe9baa" ], + "x-ms-request-id": [ "254f735e-e2b5-4d22-adf0-15e5b4afcdf9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "2add3a65-6129-4171-9d32-2a730f13c7e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012936Z:2add3a65-6129-4171-9d32-2a730f13c7e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/942a2f31-1608-4552-b502-7fa2a9e0fe46" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7a4db422-8d49-4d8f-9174-95c5485a693f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061859Z:7a4db422-8d49-4d8f-9174-95c5485a693f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BF16C60B70D43D18354438C2FF21AD9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:35Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF9BE9E20F08477E994D81CC75DF669E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "30672" ], + "Content-Length": [ "36288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"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\":\"East US\",\"sortOrder\":0,\"displayName\":\"East US\",\"orgDomain\":\"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\",\"subDomains\":\"eastus-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\":\"North Europe\",\"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\",\"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\",\"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\":\"Southeast Asia\",\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"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\",\"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\":\"East Asia\",\"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\",\"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\":\"West US\",\"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\",\"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\",\"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\":\"Japan East\",\"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\",\"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\":\"East US 2\",\"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\",\"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\":\"North Central US\",\"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\",\"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\":null,\"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;XENONMV3\",\"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\":\"Australia East\",\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\",\"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\":\"Central US\",\"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\",\"subDomains\":\"centralus-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\",\"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\",\"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;XENONMV3;WINDOWSMV3;LINUXMV3;LINUXP0V3\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"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\":2147483647,\"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\",\"subDomains\":\"canadacentral-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;XENONMV3\",\"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;XENONMV3;LINUXFREE;MANAGEDAPP\",\"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\",\"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\",\"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\":\"UK South\",\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"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\":\"ZONEREDUNDANCY;EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;FLEXCONSUMPTION;MANAGEDAPP\",\"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;ELASTICLINUX;WINDOWSP0V3;MANAGEDAPP\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\":\"France Central\",\"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\",\"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;LINUXFREE;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX\",\"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\":\"South Africa North\",\"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\",\"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\",\"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\":\"Germany West Central\",\"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;XENONMV3;MANAGEDAPP\",\"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\",\"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\",\"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;XENONMV3\",\"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\":\"Norway East\",\"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\",\"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\",\"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\",\"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;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3\",\"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;XENONMV3\",\"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;XENONMV3\",\"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\":\"Italy North\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"subDomains\":\"taiwannorthwest-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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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": { @@ -62,43 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A7EBD9DF5\"" ], + "ETag": [ "\"1DC38E49AD017A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43ee158b-5ecc-4bb7-ae53-72ec73b16d70" ], + "x-ms-request-id": [ "decd4575-4b9a-4ac8-9c93-10a074cdad96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "fa99b9d6-fd32-49e2-ac42-3d0d9820ce0f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T012944Z:fa99b9d6-fd32-49e2-ac42-3d0d9820ce0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0bd8a1ff-7f6a-43c0-9611-360e45b40213" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "45d71cf8-2467-402b-bc85-c57ee3dbb2f2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061902Z:45d71cf8-2467-402b-bc85-c57ee3dbb2f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 439B3BCF62BE4E5187B2A3EBD0C4A939 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:29:36Z" ], - "Date": [ "Fri, 21 Jun 2024 01:29:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB803FDD53C64740AD86725BA56D060C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1734" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"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-x7qylg-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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "f0cc6774-5f04-4e51-81d1-f2e605c73a26" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "04f240c1-be32-4d7d-b01b-519f79a90f19" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -109,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c6c2118e-e5e4-4c2d-9b6f-bac04b030792" ], + "x-ms-request-id": [ "957620e4-4184-47dd-ac5b-5af75aa54689" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "0c77e3ff-e9d1-4b09-b120-109dadf3d9b3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013014Z:0c77e3ff-e9d1-4b09-b120-109dadf3d9b3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "74243245-5b1a-4166-9142-21505a21535e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061933Z:74243245-5b1a-4166-9142-21505a21535e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C099B83B56D243CD94DA203E39B72351 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEEA2367252B4F21BB83FFA804EACBF4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "f0cc6774-5f04-4e51-81d1-f2e605c73a26" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "04f240c1-be32-4d7d-b01b-519f79a90f19" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -154,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2acce69e-a2af-4208-ae01-0f898795aa93" ], + "x-ms-request-id": [ "ea704f28-3052-43d4-854c-788eb59b990d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ab01e11e-3fb5-4b5b-bc0f-2b09a27dc95d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013015Z:ab01e11e-3fb5-4b5b-bc0f-2b09a27dc95d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c8933603-2295-4a44-b2ca-fcbff9e39252" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061934Z:c8933603-2295-4a44-b2ca-fcbff9e39252" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21D12B53011A4085B25F6EDA7176977F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9975814844A342F998D8CBBD7DCB3E22 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -179,13 +181,13 @@ "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-PowerShell-0sp8e17wjo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "68" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -194,17 +196,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "409f758c-3e36-433e-af9d-263607136a63" ], + "x-ms-request-id": [ "cc9fd278-0b59-4bd0-8ca7-22a7369d95d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "1d09245d-fa6e-487e-9c7e-25a290bc581c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013016Z:1d09245d-fa6e-487e-9c7e-25a290bc581c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4407c281-8230-47d5-86d2-3ea95afb73b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "706c7a1d-9df1-45e8-bcb5-ad97a569ff7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061934Z:706c7a1d-9df1-45e8-bcb5-ad97a569ff7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96E7668A1E24407B88643A3AB1B9335B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D88FBC0675744D4CB0C18E7E48574F3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -222,12 +225,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "17859622-c528-4d00-935d-b452265bbdde" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "0d102085-b711-47ac-a8aa-809ac26bfbeb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -238,41 +241,131 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "d084f197-8920-4109-bf8a-7ef870087f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a0f1846-74b8-4c86-a301-fc47dda6177c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "dcf2d286-2ca1-491b-87a1-42864306f9a8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013016Z:dcf2d286-2ca1-491b-87a1-42864306f9a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "9787af9f-0dfc-448c-baec-9863f18e2ee4" ], + "x-ms-correlation-request-id": [ "9787af9f-0dfc-448c-baec-9863f18e2ee4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061934Z:9787af9f-0dfc-448c-baec-9863f18e2ee4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67C3BB7F3EF04867B91F303F0F4CD0F8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B8614FB2FDB4309B74DF8F86A4E7AC3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7931" ], + "Content-Length": [ "13096" ], + "Content-Type": [ "application/json; charset=utf-8" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435821,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-Linux-Consumption-pxiydk/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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "f3de7ec9-f864-422e-8a2a-695b46d2e775" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "03b58c3d-a950-4eb5-9346-7429574e84d4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "15706842-bd7f-414a-9213-6347b2168c34" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061935Z:15706842-bd7f-414a-9213-6347b2168c34" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A120D92B9EF04364B15841957BBB4ADC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1720" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"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-m4501w/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "17705313-f1a7-4758-9ff1-e4bc3bdba253" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "512acc9f-3c2e-435d-b540-050080d43b31" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "25811d60-4302-4a79-ad0f-cadbcf097849" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061935Z:25811d60-4302-4a79-ad0f-cadbcf097849" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9BAA27265BED477F9A1571A04E2F5985 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1688" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554962,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554960,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554956,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554978,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":5554954,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-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-x7qylg\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-Consumption-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "fae5b013-075a-4f36-8a7a-3f702016bd06" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "76d05576-ecdb-43aa-8988-1a61d6b0be7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -284,40 +377,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0a7e7170-8fe7-49f6-b8fe-557a72c46ea1" ], + "x-ms-request-id": [ "834580b3-437d-411d-bd3c-1a1bcf7229c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "9aa7d4cb-75ae-475d-8e02-cda361fa5712" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013017Z:9aa7d4cb-75ae-475d-8e02-cda361fa5712" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4cb4d81e-aad9-4210-970e-1119bfd5efb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061935Z:4cb4d81e-aad9-4210-970e-1119bfd5efb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C23E7250F024BB3BC1E6F3FD22881BC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F904BF0A6DDE47C685F693CFCF32F6F1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1660" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":102964,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-205_102964\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:02:55.9066667\",\"asyncScalingEnabled\":false},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "70d284e4-4e92-46e3-873e-0cc661f36098" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "fede63b0-b3da-4b34-8641-d993fa1f6eb3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8d3cd0f6-a88c-47c8-be12-6dd5a8f83a2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:8d3cd0f6-a88c-47c8-be12-6dd5a8f83a2f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 47AC113E9DE0484E94FE5A831A525EE7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1641" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":97715,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-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-h8frn2\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_97715\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:53:21.7533333\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"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-kylbxe/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-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "b289589a-d1c9-4926-b695-b0d402fc6e45" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "7d5c9cbc-6757-4912-b064-2476b369c72c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -329,40 +467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e7f4d66-e35f-490c-94b0-1fa51a8f9364" ], + "x-ms-request-id": [ "43e76f9f-be01-4b6a-b4f6-d67d284bee6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "152ea582-3083-4ee5-b029-72f02ff0d372" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013017Z:152ea582-3083-4ee5-b029-72f02ff0d372" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5d182e9e-58aa-40fc-9b82-1e92e333a444" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:5d182e9e-58aa-40fc-9b82-1e92e333a444" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57E98583ED024C8D9B524752A718484F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85B397E851C24F45ADA4D84935D872A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1606" ], + "Content-Length": [ "1647" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":35681,\"name\":\"CentralUSPlan\",\"workerSize\":\"Default\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Default\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-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-kylbxe\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_35681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:52:15.4166667\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "1c65b6b6-86b2-48f1-84bb-6454c6445c31" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "440a04e1-796b-4690-b9a1-33260c556819" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -374,40 +512,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffa024d1-bbd8-4be1-bef2-25f4ce9cbd74" ], + "x-ms-request-id": [ "dbc4d513-c194-4734-9c98-c94be7746ff8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "5fa5a0ec-617e-4be0-9da0-ad3b93a57231" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013017Z:5fa5a0ec-617e-4be0-9da0-ad3b93a57231" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "398a7176-2d07-4272-9800-9780cd2a2616" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:398a7176-2d07-4272-9800-9780cd2a2616" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17557308698E4ED5B78AF5FE2256C7E0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 097F1CF416234707A20995FF1B9A5FF0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1634" ], + "Content-Length": [ "1721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"name\":\"Functions-Linux-Premium-wdx4cl\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":13029,\"name\":\"Functions-Linux-Premium-wdx4cl\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-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-23kylb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-349_13029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:49:35.23\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "d7adec4b-5192-4d1e-bba5-9cec861ef8d2" ], + "x-ms-unique-id": [ "595" ], + "x-ms-client-request-id": [ "9921a19c-bb4b-4d74-88f6-2d1b710f5b4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -419,40 +557,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40b2bac0-a540-44f9-948c-cd8de178fbe2" ], + "x-ms-request-id": [ "7099ac2e-b72b-4e22-9e5d-bef33741d62a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b10bc1f0-c8e9-492f-81a8-31430dd10216" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013018Z:b10bc1f0-c8e9-492f-81a8-31430dd10216" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "679b65d6-40ce-4d4a-89b9-6b9e9c07ddaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:679b65d6-40ce-4d4a-89b9-6b9e9c07ddaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95C11D87D06C49588EA32F66E0728484 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E713BCDE9D664646849D806C943E97A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "621" ], - "x-ms-client-request-id": [ "7d623aa9-3190-4c54-b00a-d98e5a1662a4" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "882315d4-1fd1-4b89-815b-bd8b8cc41b28" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -464,40 +602,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c49e2477-afc1-472c-9ad6-ec03a6c40255" ], + "x-ms-request-id": [ "534aa692-7e69-4d04-914f-ed5c6f7af317" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "39b6389e-c765-42c9-99d2-e9a132a5baad" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013018Z:39b6389e-c765-42c9-99d2-e9a132a5baad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "794d8a17-751c-4aaf-918c-7f627909f651" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061937Z:794d8a17-751c-4aaf-918c-7f627909f651" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A01BD00846C4BF5A98DD1981FAF2452 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90F249659B0E4117AFD115C2FA88832B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1728" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"name\":\"Functions-Windows-Premium-vesazn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41611,\"name\":\"Functions-Windows-Premium-vesazn\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41611\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T00:48:56.34\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+15": { "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": [ "622" ], - "x-ms-client-request-id": [ "99b5d6cd-a914-48c8-ab73-91d40b55027d" ], + "x-ms-unique-id": [ "597" ], + "x-ms-client-request-id": [ "948b01e9-bf34-4087-be90-0b5afdc9b6fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -508,39 +646,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7375dd3f-4306-4e6d-b084-3a6f1ec1559e" ], + "x-ms-original-request-ids": [ "7d9acb34-a99e-427c-9c52-ef6736cd075b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "e23569db-1eb7-4f72-8003-01f8ebdb38bc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013018Z:e23569db-1eb7-4f72-8003-01f8ebdb38bc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], + "x-ms-correlation-request-id": [ "5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061937Z:5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63C9E6BA5C1B468184B7D41A2519E947 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA8D2F1084874FB28E4A13452B610293 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2753" ], - "Content-Type": [ "application/json" ], + "Content-Length": [ "2811" ], + "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-Test-Linux-Premium-23kylb/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageums\",\"name\":\"functionslinuxstorageums\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:31.3581402Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:31.0768892Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageums.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageums.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageums.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageums.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageums.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageums.file.core.windows.net/\"},\"primaryLocation\":\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn\",\"name\":\"functionswinstorage2mn\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2024-06-21T00:48:10.0766244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2024-06-21T00:48:09.7641181Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage2mn.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage2mn.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage2mn.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage2mn.queue.core.windows.net/\",\"table\":\"https://functionswinstorage2mn.table.core.windows.net/\",\"file\":\"https://functionswinstorage2mn.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01+13": { + "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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Storage/storageAccounts/functionswinstorage2mn/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "623" ], - "x-ms-client-request-id": [ "27920f05-cac5-41e6-a952-0110c85bca08" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "349ac6ea-1b84-42eb-9e5c-f9e7c53fdca9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -551,30 +690,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "62b93030-68c0-42aa-ad2d-9dbc662f6b05" ], + "x-ms-request-id": [ "edde601d-f02b-47d7-9ad9-2fae162e4f2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "e7fd571c-d2d4-4494-9e71-0bbe71b06d05" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013019Z:e7fd571c-d2d4-4494-9e71-0bbe71b06d05" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e7438953-e3cc-4446-b7f0-9892d21f688b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bfa0b839-ada1-4743-9c12-758a716e0c75" ], + "x-ms-routing-request-id": [ "WESTUS2:20251009T061937Z:bfa0b839-ada1-4743-9c12-758a716e0c75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 067FA17DB8C74B49A230DA35BEF26843 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA994089CDEA426099E11ECACE4A40C3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"AlQ8zqtbHCKJusHwVjEVlq2TYX8dbrdQuo/P3/JTMsQgaIjo6Xna3/N4H9zPibixhSfbBDJNqTX8+ASt2XsDAg==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", "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-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01+14": { + "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-traz67wuyp?api-version=2015-05-01+17": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Insights/components/Functions-PowerShell-0sp8e17wjo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-traz67wuyp?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": { @@ -594,35 +733,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "380c8aef-ca6b-44c2-8c04-543502cbd42f" ], - "x-ms-correlation-request-id": [ "380c8aef-ca6b-44c2-8c04-543502cbd42f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013021Z:380c8aef-ca6b-44c2-8c04-543502cbd42f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2eb9895d-e297-46e3-8c99-c791d1ff6fc9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "ff4c4b46-3cc5-442e-9559-1aac69392083" ], + "x-ms-correlation-request-id": [ "ff4c4b46-3cc5-442e-9559-1aac69392083" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T061945Z:ff4c4b46-3cc5-442e-9559-1aac69392083" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EC93826873B42A98F893D1C2AFA9605 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A784A843C634487A7791C717BAA497B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:19:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1395" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo\",\r\n \"name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"28003573-0000-0300-0000-6674d7ab0000\\\"\",\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"AppId\": \"e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\",\r\n \"ConnectionString\": \"InstrumentationKey=850de14d-ed7d-475e-b02d-7b6b93a13987;IngestionEndpoint=https://centralus-3.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0ec5ee5-5027-4742-b2f8-7b817a454b73\",\r\n \"Name\": \"Functions-PowerShell-0sp8e17wjo\",\r\n \"CreationDate\": \"2024-06-21T00:54:43.4480227+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b844-0000-0300-0000-68e754010000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"name\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"AppId\": \"4455609c-3039-48e5-84de-5559f42ce951\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\",\r\n \"ConnectionString\": \"InstrumentationKey=a0a40184-8a84-4c75-8a8e-2e0cafbf10b8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4455609c-3039-48e5-84de-5559f42ce951\",\r\n \"Name\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"CreationDate\": \"2025-10-09T06:19:38.3336341+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-traz67wuyp_4455609c-3039-48e5-84de-5559f42ce951_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-traz67wuyp-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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"powerShellVersion\": \"7.2\",\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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;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=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershell-0sp8e17wjo\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"850de14d-ed7d-475e-b02d-7b6b93a13987\"\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-traz67wuyp\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1786" ] + "Content-Length": [ "1790" ] } }, "Response": { @@ -630,43 +770,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37A96D32F60\"" ], + "ETag": [ "\"1DC38E4B7029150\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ad81cef-81b2-41e6-9c54-a2cf51944003" ], + "x-ms-request-id": [ "9c466385-35ce-464f-af41-3f51285bf811" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "499" ], - "x-ms-correlation-request-id": [ "5212b66e-91e7-4404-831f-386ac31bd0d2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013048Z:5212b66e-91e7-4404-831f-386ac31bd0d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8cf52e9-b218-478f-aef5-15caf56f98cc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "81ed8d15-597e-45ef-a08a-3773caa2c768" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062028Z:81ed8d15-597e-45ef-a08a-3773caa2c768" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 376D7D7B516E4CA9BB2543DBC58C33AF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:30:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:30:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 256A1D8BEF664690BA5CB8298C7D47AB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:20:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7517" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:30:23.6666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.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,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:19:48.117\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.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}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "626" ], - "x-ms-client-request-id": [ "6fb13ea0-785e-4215-91a6-c9548fe7b945" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "e4bf7db5-47b0-40e7-ae7a-5dcab010b0ec" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -676,42 +816,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC38E4CE75D540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e627449-e599-4487-943f-907aab2455bc" ], + "x-ms-request-id": [ "bfdeb81e-138a-48f8-b6d8-0b8ab3a6547a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "73be1349-d76d-43b8-a604-0896cfa241c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013118Z:73be1349-d76d-43b8-a604-0896cfa241c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ad3eefc4-c016-4e6b-a5d4-698aef2611c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062059Z:ad3eefc4-c016-4e6b-a5d4-698aef2611c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 872F5BBDE9EF40B7B064A659E5FCE548 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 298FFA9B00B04E0C919DFD0F74199C4D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:20:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:30:47.7866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:20:28.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-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/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "627" ], - "x-ms-client-request-id": [ "30037bb1-5c7c-4c0a-b290-35e22a1d6c91" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "72dffd30-85ac-4df2-b206-60b1c4763e87" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -722,42 +862,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC38E4CE75D540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c58321c5-3d83-40ba-aee7-1329a9bb5d5d" ], + "x-ms-request-id": [ "90890384-4682-40a2-92d6-d24ca74ebfaf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "1aa89f26-52d0-4b32-a9b4-ce7c663cfbb7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013118Z:1aa89f26-52d0-4b32-a9b4-ce7c663cfbb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c00bcd9e-9010-4aea-abaa-b0b80c8209b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062059Z:c00bcd9e-9010-4aea-abaa-b0b80c8209b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4FC68B216614676B05A223244315A6D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E726B2C22D4F4E518F7ED6F1F0579A4E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:20:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7313" ], + "Content-Length": [ "8431" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-0sp8e17wjo\",\"repositorySiteName\":\"Functions-PowerShell-0sp8e17wjo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"functions-powershell-0sp8e17wjo.scm.azurewebsites.net\"],\"siteProperties\":{\"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-0sp8e17wjo.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-0sp8e17wjo.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:30:47.7866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-0sp8e17wjo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-0sp8e17wjo\\\\$Functions-PowerShell-0sp8e17wjo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-0sp8e17wjo.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:20:28.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "628" ], - "x-ms-client-request-id": [ "929f0551-e611-4569-b345-a7f97bd27c8a" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "e014fdef-6cba-4971-b7af-61b066368e98" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -769,40 +909,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b6e077e-ce1b-4981-93d4-47f7e6d93ad9" ], + "x-ms-request-id": [ "6a4e9ce7-ccc0-4e9e-8a57-2ee791824f61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "508806a8-73cc-4878-bbb0-ba2ec82fcd04" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013119Z:508806a8-73cc-4878-bbb0-ba2ec82fcd04" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2dd97d72-47da-4fdd-8562-7a8b070aa3ec" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7791843e-8f9e-48a7-8c28-ca80d8c58887" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062101Z:7791843e-8f9e-48a7-8c28-ca80d8c58887" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C54313F2294740C29B5734D58AD20F6E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B94030C422D646CA80DD268EC38A9ACC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-0sp8e17wjo\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"850de14d-ed7d-475e-b02d-7b6b93a13987\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-traz67wuyp\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\"}}", "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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01+19": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "49cf64f3-711d-453c-b0c9-c065c7c10cee" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "7c8bb403-64b6-4940-a75f-4ad72c24bddb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -814,40 +954,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8478a7fd-60fe-4934-b4b6-f998bff46936" ], + "x-ms-request-id": [ "9cba072d-bd9e-4719-b60a-3106cb416f18" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "0c3923d0-be0f-4f83-9c12-93373ffa85ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013119Z:0c3923d0-be0f-4f83-9c12-93373ffa85ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f1a3459-4663-4821-bcf5-acca35ee5cb2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cc3d4a01-d2fd-4d92-a760-d2696ecc3881" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062101Z:cc3d4a01-d2fd-4d92-a760-d2696ecc3881" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FC9930737D84CF3A6613A321E3227AB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB7CB3468201487C933B1983B0A5F0BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:01Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4072" ], + "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo/config/web\",\"name\":\"Functions-PowerShell-0sp8e17wjo\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/web\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+20": { + "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "125e62c7-e6e4-45fc-9fb9-1f3e866fc53a" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "c8ebe554-91a3-4b50-9caf-7a1a2a401cc1" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -858,19 +999,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AA4B906AB\"" ], + "ETag": [ "\"1DC38E4CE75D540\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "127fd397-4806-4495-9cab-3cb44a311c33" ], + "x-ms-request-id": [ "d1ca34f3-61fb-483e-83fb-1af56993e024" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "e0ffb020-a7ca-4d96-bfee-12ca612a36c5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013131Z:e0ffb020-a7ca-4d96-bfee-12ca612a36c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b5869a1-84ee-4681-a53a-464edfe1dd9a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "ee28f75a-1ca2-4aa9-8336-fda783931b22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062153Z:ee28f75a-1ca2-4aa9-8336-fda783931b22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F07339BD7B62445385A9ECAD1CE9E1C1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11AEE0968FEC4595866EF17FE85380D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:02Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -880,19 +1022,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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "e54ed212-3f83-40f5-9abd-00df54ba964a" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "7c956c0b-5b7c-42b5-8e77-84c83cabd7a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -904,40 +1046,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "260d5e0d-cd35-4fa7-b5a2-0fd57164ad30" ], + "x-ms-request-id": [ "021894d5-df99-44dc-927d-f5a02e5b77ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "5bfc2ab1-a3a6-48c1-97d4-4db497c5c7bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013131Z:5bfc2ab1-a3a6-48c1-97d4-4db497c5c7bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a25d805a-5b52-45bb-b8ee-9d076e8e50d0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:a25d805a-5b52-45bb-b8ee-9d076e8e50d0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B98B57191C8843DAA53FDAED577A9102 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:31Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2ADA4597724480D9356088F685DB73D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:53Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "32275668-b615-4e7f-8189-7c4aadfd1bbb" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "d2c330ed-016e-4419-aded-3229fdeff433" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -949,37 +1091,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "1011842c-1d18-4272-88fc-4cef0f75f6e3" ], - "x-ms-correlation-request-id": [ "1011842c-1d18-4272-88fc-4cef0f75f6e3" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013132Z:1011842c-1d18-4272-88fc-4cef0f75f6e3" ], + "x-ms-request-id": [ "39a09994-e054-4a06-8b24-dfe5055bed81" ], + "x-ms-correlation-request-id": [ "39a09994-e054-4a06-8b24-dfe5055bed81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:39a09994-e054-4a06-8b24-dfe5055bed81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3DF7D27E3C24831990ADFF9B0ABA6D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:31Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 719A9910AE844D8F9E402CA597060E3E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "260" ], + "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-PowerShell-0sp8e17wjo\u0027 under resource group \u0027Functions-Test-Windows-Premium-x7qylg\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-traz67wuyp\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "633" ], - "x-ms-client-request-id": [ "4a6ce69f-b177-489a-9f80-9216dee84f3d" ], + "x-ms-unique-id": [ "608" ], + "x-ms-client-request-id": [ "d5a71def-6319-4ff5-8844-3da71781590d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -991,40 +1133,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "707a7111-9003-4d78-88c0-db3486e99d44" ], + "x-ms-request-id": [ "3ee69a6d-c9af-41b3-9d8a-107a1c7ed532" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "fd471e8b-7eac-47d5-8623-c20dc39c9705" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013132Z:fd471e8b-7eac-47d5-8623-c20dc39c9705" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "10d84247-6f90-43d5-afa2-e83ba5474bd9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:10d84247-6f90-43d5-afa2-e83ba5474bd9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A40798FDEF5472EB9CF41012B32CA7E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:32Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68B8C534BEC047B5B38867BFE177CCAE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], + "Date": [ "Thu, 09 Oct 2025 06:21:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1645" ], + "Content-Length": [ "1727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil\",\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":41618,\"name\":\"Functions-MyTestPlan1-jxe6kb3vil\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-x7qylg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_41618\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2024-06-21T01:29:41.5566667\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan1-jxe6kb3vil?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "634" ], - "x-ms-client-request-id": [ "fb1853a1-ab64-4c17-ab32-6251e8dade53" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "0f8ec9b5-7753-4fe6-998c-67305d408911" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1036,17 +1178,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06dd962e-75ed-4929-987c-b2472d81b72c" ], + "x-ms-request-id": [ "c762193b-f8c7-40a4-b40d-f854b633372c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "1d963e2c-ccab-436c-b831-6f7c45f541bf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013142Z:1d963e2c-ccab-436c-b831-6f7c45f541bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0a93cec-74a0-4b30-a1a7-8f68503e2df8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "316908ac-eb2e-4c3f-a720-c2103d53aa97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062200Z:316908ac-eb2e-4c3f-a720-c2103d53aa97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 662D2593DC3E4979840B606F7A04AD1E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:32Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F1D5AFDC44A4D5FA68D34AB5A2B7348 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:00 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 8ff5cd288469..24e01c6e6055 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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "635" ], - "x-ms-client-request-id": [ "0539e349-0c63-4ea4-8530-1b429bfc39d2" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "f77ff9d5-afef-4b57-b9de-b3e0d4574ffb" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,17 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31796ca4-4b5a-49d6-8ba1-e0146462f33b" ], + "x-ms-request-id": [ "c4ced2f8-68e7-4173-8c70-2767af793e87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "d49799a1-bc9d-46ec-b8b3-d571082a64c4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013144Z:d49799a1-bc9d-46ec-b8b3-d571082a64c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8e1a552-3b3f-44f9-9999-8650fa09af9c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "74284341-6651-4a5b-95b6-87b2eeb44a54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:74284341-6651-4a5b-95b6-87b2eeb44a54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0B8EDB772D74CB5B6243069F3E50728 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4A5510556DE44CEB80684BB797E1F31 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -43,19 +44,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "b277c40f-7f20-4a03-a698-9e3830a4470c" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "b9f3ed09-01ce-4012-b06e-b18a71449f99" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,42 +67,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC68544A0\"" ], + "ETag": [ "\"1DC38E5069D2360\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2a7dcf0-2064-4d09-8fc0-085dc2d9f7b5" ], + "x-ms-request-id": [ "3368e2c5-c09c-43fd-98dd-29980fbe6c59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "6f510b2d-6a6a-45a5-b095-b357d729a138" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013144Z:6f510b2d-6a6a-45a5-b095-b357d729a138" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "af1fa4fc-66ae-4a14-88e1-b774543a75c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:af1fa4fc-66ae-4a14-88e1-b774543a75c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 214F0019CC0C4C869FD7331E7DA1D8B6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8887A4E0A6046739B27AE0236928D66 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:44.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:02.39\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "637" ], - "x-ms-client-request-id": [ "9e6eab40-04a1-4184-afe7-5d80c063820b" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "cec10416-f36f-4528-81b8-e43ccf56c602" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -113,40 +114,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a74cfd77-f16d-49b4-a402-236030c5b49c" ], + "x-ms-request-id": [ "c19d441b-4491-4a5b-a5fc-f1ac8d5c73cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "bf7c3cb5-9423-481f-b7f8-6e99ca52e991" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013145Z:bf7c3cb5-9423-481f-b7f8-6e99ca52e991" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/646692e4-e4ea-415e-b52f-d9c114a2e2ad" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ae7daacc-b6b7-4efd-b5b8-3d12aaaffac8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:ae7daacc-b6b7-4efd-b5b8-3d12aaaffac8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE6E92A4F8A24A21BCABC4AA8F830DBD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:44Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26DD06CB557343CA9C53185F0BAC1243 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "638" ], - "x-ms-client-request-id": [ "68bd3698-1de6-4d81-be44-76a209bd14a3" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "0946b8fa-f240-4d09-8f37-f485ca1c0755" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,40 +159,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "399c3e18-d3c8-4650-b276-4955bca562dc" ], + "x-ms-request-id": [ "8f0d6843-e9ff-443b-887a-684eb65f74e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ef29f586-d458-4841-a030-cc34c75a35e8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013145Z:ef29f586-d458-4841-a030-cc34c75a35e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b5e9f4d8-5217-4027-b29f-2bc7e7dd0a45" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "048e575c-80a2-4abe-b350-d4b575fb42b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:048e575c-80a2-4abe-b350-d4b575fb42b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2C3BF56892F42C58902AD0FA6EED8A4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:45Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78E55D850F904D19A780EDEF5B3A3FFA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "06e0492c-e7d7-4ec5-a400-595609d1e506" ], + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "227f8e1d-e2d3-4fa5-8c70-906683036556" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -202,19 +204,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC734BE80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "308ac898-e04d-4f50-8492-2624989d2d98" ], + "x-ms-request-id": [ "b196d5bb-cf54-401e-9be5-a5adcc55076f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "e1281092-d188-440f-aeda-2718ef1b0b81" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013145Z:e1281092-d188-440f-aeda-2718ef1b0b81" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58d1e2e7-0c11-47cd-b033-bef0ad8b4042" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "55e2ed7d-8fba-4f1e-836e-ed5a92811fce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:55e2ed7d-8fba-4f1e-836e-ed5a92811fce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 727EAADD9146460989A200888C275D54 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:45Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F22B815BF8664CF79D5CE0727088C291 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -224,19 +226,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "d13026e2-64ce-4f9d-86b8-e9fa53e32d22" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "88cfba4e-1c4e-4ea9-a39c-c665c1d68f69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -247,42 +249,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC734BE80\"" ], + "ETag": [ "\"1DC38E50746F7F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f12636d4-92c0-486b-8335-559e1f2e0c77" ], + "x-ms-request-id": [ "66d8972e-8318-4a3f-9cb6-31622de6e962" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "02de0e2f-e16e-4548-b588-73132a4f2b10" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013146Z:02de0e2f-e16e-4548-b588-73132a4f2b10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3ef27540-9f15-48ba-ad64-5bb13eba8fe5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:3ef27540-9f15-48ba-ad64-5bb13eba8fe5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4148E0E58F8944F69856459858AA577D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:45Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B83B4D05AAC4DD999EFC6D3D4D0B825 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8362" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:45.64\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:03.503\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "641" ], - "x-ms-client-request-id": [ "d19e52fa-c5b9-4111-810e-71452d2f5104" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "730614b5-f720-45ab-aff9-c1eedd0db6c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -294,40 +296,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58ff28b1-4d14-4eec-a958-51009a78017f" ], + "x-ms-request-id": [ "a3ce8cff-ca4f-488f-9b1e-52128c4744a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "4e3f399d-7a7e-41e3-9e2e-ccac95a5ba45" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013146Z:4e3f399d-7a7e-41e3-9e2e-ccac95a5ba45" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb5bb889-dc90-4491-be72-c74af90f2de6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "819dc13b-25fe-4484-a651-c0258c778f60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:819dc13b-25fe-4484-a651-c0258c778f60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 232900E0320946DF85A46AB9D37C38EA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22151EBF0A984BD8912CED363217EDC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "bc82bd62-b2d6-4cf1-82df-66dbec8617e5" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "9595742c-fbb8-48e0-9d6a-84f28438567c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -339,40 +341,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "826d2705-ab94-413f-b0b0-01978c83eb19" ], + "x-ms-request-id": [ "a5d1e1e4-cb48-46e1-9e34-4b7ac0ef5d51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "34ed3bc3-36fa-4c70-8017-776fe43d5601" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013146Z:34ed3bc3-36fa-4c70-8017-776fe43d5601" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddf5abdc-1276-489b-a00b-0f77f7f9b0bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "99140c5d-48df-4905-8f34-2f4a6d942358" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:99140c5d-48df-4905-8f34-2f4a6d942358" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D6E84BB00244B4D98D8EDD4B4E386F2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89D0F6836C144F6CAA040B336093EF91 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "05ef5fe4-5aa0-4d1a-9d77-dfc6004284d6" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "a320796a-1dd8-4b1c-a24b-bf4a39b7febd" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -383,19 +386,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC7E94E75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ebed50a5-7140-4af5-a26f-6071a58390a3" ], + "x-ms-request-id": [ "7106f99b-73cb-4855-a62e-2d5ad116d225" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "0a83e960-8db5-4719-b66f-539f0e5860fe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013147Z:0a83e960-8db5-4719-b66f-539f0e5860fe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f17a198e-2396-4efb-b7fd-35dbcdd714fc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "b2773128-6a1c-4cd3-9fad-4ad74edfe09c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:b2773128-6a1c-4cd3-9fad-4ad74edfe09c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD170850E86C4AA98B4BAC89BDFD87F9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:46Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 778CAC97EF0140D392AECECE6AFBD0B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -405,19 +408,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "a1c2937c-00ad-4803-8503-99f7ead1c07a" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "d50fd29a-3b5a-4498-b6ad-a61b56a10a81" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,42 +431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC7E94E75\"" ], + "ETag": [ "\"1DC38E50803B840\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "893c8544-bd16-4fc9-840f-67a2486aeb89" ], + "x-ms-request-id": [ "757f1bd5-f2f7-4b2e-9b46-ecf82315f6e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "6a2fcc21-6ed1-44ff-acd3-2b67301def99" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013147Z:6a2fcc21-6ed1-44ff-acd3-2b67301def99" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "63f4d424-256a-4740-b3c3-c31b25781d8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:63f4d424-256a-4740-b3c3-c31b25781d8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C673980A87A249BFA34349E899C134CB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A69F7CD885F64873925535B050993313 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:46.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:04.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "645" ], - "x-ms-client-request-id": [ "965d08e7-177f-4302-b82e-ae41d0aed718" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "9f904ecb-0589-43ec-ae8c-3c5c7aa5c204" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -475,40 +478,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ec68d06-0d20-4ee8-906a-9a22ce3cdccd" ], + "x-ms-request-id": [ "72a12851-6469-4cf4-9b80-5ed58a2f899a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "f0e8d67e-dfd4-4961-a9eb-623c5f6d80dd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013147Z:f0e8d67e-dfd4-4961-a9eb-623c5f6d80dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bb3ba2c9-dc09-4243-a075-8de4e77e1068" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "063aaa2c-7e79-4cb6-b5b3-c4b496c5b375" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:063aaa2c-7e79-4cb6-b5b3-c4b496c5b375" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F519FF75B484133A39CB128AB3563F1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8DF6C740A7D4A699C5562D02BE28B0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "3342a2e7-4b73-473e-aeab-7abf5d8d02b6" ], + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "99b92792-0436-43cf-a146-899fb8519d06" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -520,40 +523,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b3c3f49f-f522-435d-aad3-85aecdfe8cbb" ], + "x-ms-request-id": [ "86dbe55b-25a7-4578-a854-e9fcd8b4910c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "240a3811-6ab3-4f51-aaf9-05b31e729e1e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013147Z:240a3811-6ab3-4f51-aaf9-05b31e729e1e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52717d6a-829d-4f57-8837-b0de945b0f22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e708304b-c303-46c5-a0ac-468aae3926f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:e708304b-c303-46c5-a0ac-468aae3926f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E002BEE455643F790714B41B7DEEC45 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8E31F8D3C994BF4BD8CDD99FDD6AA50 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "a65f3c51-c36d-4b7a-95aa-89080e59f21b" ], + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "d1780533-ff68-4451-a6ef-43b77bae81cb" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -565,17 +569,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12b4dee8-306a-4a24-800a-e02940e26c15" ], + "x-ms-request-id": [ "12834e7c-2bfc-4dd7-8fac-0d69434f940a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "aad4cbd5-2321-4b71-9080-bbf7b746cfbe" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013148Z:aad4cbd5-2321-4b71-9080-bbf7b746cfbe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3e349db-f055-4e92-b266-75bc67968414" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f211b873-ffb9-4c53-96e0-e67497f2d7ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:f211b873-ffb9-4c53-96e0-e67497f2d7ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC18EB82903C4FDC95B07948327D8F39 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:47Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06B3713F31564CA0AD71FB165280E968 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -585,19 +590,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "648" ], - "x-ms-client-request-id": [ "120f28d7-242d-46ba-93af-bbcd9951f95e" ], + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "262dd706-e92d-419f-b969-33d4d2a59cee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -608,42 +613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC3752BC87B80\"" ], + "ETag": [ "\"1DC38DEBCB2434B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90253a62-32e3-49a1-a0c1-934dec412612" ], + "x-ms-request-id": [ "bd9aed64-c111-45e2-b29c-fcc346fa7bc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "ca2fced8-512a-468c-a2db-59e685329fcd" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013148Z:ca2fced8-512a-468c-a2db-59e685329fcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1ffe6fa0-ecd2-4ff2-9e53-c4f219e2fccb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:1ffe6fa0-ecd2-4ff2-9e53-c4f219e2fccb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C27065751CC47108C5D146CEBB0DB0B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79CCC5E560C841DB8483C385FF2FE972 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7324" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T00:51:37.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "6208ae3c-cef1-4232-b49b-f6aca493169b" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "db0f62e5-ea06-4012-b59e-c622ee0d1c71" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -655,40 +660,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "951ed943-2097-4b85-9664-42cf275f490b" ], + "x-ms-request-id": [ "1427e7ad-0e0c-4386-bb86-06ab4c2d1f1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "3feb4cf3-0929-4248-857c-fcb39bb64263" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013148Z:3feb4cf3-0929-4248-857c-fcb39bb64263" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c44e2e4-4805-4c80-ab0d-2a89d3045db4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd17224d-45f3-4a1c-998e-2e5cabe89971" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:bd17224d-45f3-4a1c-998e-2e5cabe89971" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9AB6929D17C4E5592D6347FE36177BE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 619E8883FD2D483C8185AB6F81C14791 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "fdf500bb-4c3c-43b7-a4d8-2bd1d254ae1b" ], + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "c062860b-f963-4c34-9b1d-2c8dda6e5ad1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -700,40 +705,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9df6df7d-eb7a-43a2-8db8-c2879ca3f6be" ], + "x-ms-request-id": [ "ba2f2f6a-967f-49bc-9535-26d841b1ecab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "f597de99-3213-495d-a187-025b23e5fa4f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013149Z:f597de99-3213-495d-a187-025b23e5fa4f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd122dfb-9b0c-48cd-8c1f-d531db1b87dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "38b09c21-2277-4217-9a58-ad27899ad4ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:38b09c21-2277-4217-9a58-ad27899ad4ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 129E3089F3D74FDBA00801A4DE592794 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:48Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4FCED264A8A45AA983ABEA93F59A824 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "651" ], - "x-ms-client-request-id": [ "b891ec31-2f5e-4178-9a5d-f766ce610bdd" ], + "x-ms-unique-id": [ "626" ], + "x-ms-client-request-id": [ "8b6a30d3-513f-45af-bd2d-feb7e2f4b541" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -744,19 +750,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC9770D60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1052db1-6a14-4cdb-87cc-d5411ebd5553" ], + "x-ms-request-id": [ "f0d46f3c-7191-4bee-8fb2-d6e92acee693" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "8bba0654-f55b-4e43-ae33-9dd4c1823491" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013149Z:8bba0654-f55b-4e43-ae33-9dd4c1823491" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d24fc270-0d87-4a03-b903-ceee4154766e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "e1e6388f-beaa-4f9b-9e55-f33d01582b02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:e1e6388f-beaa-4f9b-9e55-f33d01582b02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6432AEC0BB5406BAA28D8A99B855976 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F50DD407C18043A0AEFEC583000CD874 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -766,19 +772,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "652" ], - "x-ms-client-request-id": [ "8e37402e-c6d8-4a6f-a0a8-30de6fdb245b" ], + "x-ms-unique-id": [ "627" ], + "x-ms-client-request-id": [ "9d0aa501-d549-4b7e-99ff-d3ccf81b4e94" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -789,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC9770D60\"" ], + "ETag": [ "\"1DC38E509567700\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35bc3460-5826-4e8c-ae08-835638bb110a" ], + "x-ms-request-id": [ "ecff9728-b689-4f1e-99c6-a3e01c12e21b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "a5d6cda6-ea84-4cca-87db-d77bcb54ac15" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013149Z:a5d6cda6-ea84-4cca-87db-d77bcb54ac15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f9285d43-50e7-4b2c-8475-3673fac085ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:f9285d43-50e7-4b2c-8475-3673fac085ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 094051BC944648FB9E7C13E8B9096701 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 893C09BA7C0F4D4AB542594AFD262ABB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8196" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:49.43\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:06.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "653" ], - "x-ms-client-request-id": [ "dee4b935-87d0-4448-80fb-f293711872f4" ], + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "144b1429-de1f-4b41-83cc-845e8e99ee15" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -836,40 +842,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c80f06f8-8c2d-4436-8aa7-e2eb72e73b4d" ], + "x-ms-request-id": [ "fbe36dfb-c377-45cb-9f34-55d12326c9f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "a9a5efef-8b03-4745-a62b-eaabbd8149c8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013150Z:a9a5efef-8b03-4745-a62b-eaabbd8149c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/179ef110-a331-408f-ac23-dbaa37eef6e8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b0399b95-ed34-4674-b9e4-e86afce0b071" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:b0399b95-ed34-4674-b9e4-e86afce0b071" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C3ACC51B0694AF0852B297FF4E17844 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:49Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 105D15877B8148DE958AF047282229F8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "931b6a4c-6c06-4f0f-86d4-ceae7da4e6a0" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "36728b35-7145-4565-8190-48dc59d25fe7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -881,40 +887,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "203f6771-a113-4e83-b77a-1c5554dd9958" ], + "x-ms-request-id": [ "7bb8d97e-d782-42c4-9b22-041d0cf2bd34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "609a2047-ce43-462e-acee-caf4eaa15a5a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013150Z:609a2047-ce43-462e-acee-caf4eaa15a5a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f6230da-4810-40b8-833a-6dd1f4fe4892" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0135b4c1-33ee-48df-8838-d7b2fdc1323d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:0135b4c1-33ee-48df-8838-d7b2fdc1323d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8B46AA9307445C08A46AFFD399BA485 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EEF1013F3FCF4D9CAA35931D9E1E84B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "ba8b2d27-1627-414b-993e-dc2f7d93f605" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "a15f265f-1d4f-4447-a483-b02623ebf054" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -925,19 +932,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6af9bad5-365b-474d-b478-434ea01e56af" ], + "x-ms-request-id": [ "c87cd8c2-6e45-4054-89e8-4d4ba748f96e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "9dc1a29a-e5fd-466b-972b-417c92fa115e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013151Z:9dc1a29a-e5fd-466b-972b-417c92fa115e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90bda592-a3c6-42f6-af10-78f2edd5fcb9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "b01bb037-9918-42be-a13d-8ae35d92f4dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062208Z:b01bb037-9918-42be-a13d-8ae35d92f4dd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 402C80BC776A41F887F1BD1CFA469E0F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:50Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0161D18F7C9547308D9F89CBCA78B84B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -947,19 +954,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "08838c40-7041-4d7a-bedd-076c89d5e01e" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "20ff2dd6-9d38-48e1-a6f8-bf04d2051382" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -970,42 +977,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC38E50A2FA5F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a7d06ec-f755-4a07-ac43-a6731e1707c7" ], + "x-ms-request-id": [ "eabaf3d0-561c-43ef-9360-3c89295712fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "2cfd961e-7020-4077-ba46-6346396f0c69" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013151Z:2cfd961e-7020-4077-ba46-6346396f0c69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fe2b11a2-c8af-4a4b-948d-61b5606bd323" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062208Z:fe2b11a2-c8af-4a4b-948d-61b5606bd323" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A697023B152B4E23B63B759D9310C50D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FC10EE5C48341CA8F73DF1A42523423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:08Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:50.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "9cddc17f-a8cd-4ef1-abdf-f9e5a4969599" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "a1aa23ce-8ffb-4b7c-9440-004de99de1f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1017,40 +1024,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28970870-53d0-4754-ad61-cd96edb3d94b" ], + "x-ms-request-id": [ "be43e2e3-6cef-42e3-b560-42e40e4b2ee4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "91832a37-b54e-449d-94fa-a522d11a5f28" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013151Z:91832a37-b54e-449d-94fa-a522d11a5f28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d969e835-d31b-4d57-b767-94d2c7c2ce73" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "44145053-a4c7-4cc9-8c33-10391ca3d2df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:44145053-a4c7-4cc9-8c33-10391ca3d2df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B13363B6B3FC43CD8F9EBE518D625096 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:51Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5E82D9CFB5F4E6DA3EEC4F38D87AA2F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:08Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "658" ], - "x-ms-client-request-id": [ "6ad71f43-5e7d-4f95-ac54-9e62f618fe8e" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "e45e89bd-ead6-475c-aa6e-4849165a8d45" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1062,40 +1069,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0d98612-0cf0-441b-8dfb-61863e21a307" ], + "x-ms-request-id": [ "3ab4a25a-6b54-4b38-beb3-7b50b94a4353" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "2e77f116-cf0b-4224-bdde-087bf753dbb9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013152Z:2e77f116-cf0b-4224-bdde-087bf753dbb9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a21169ce-0f66-499b-9011-356cfebaf96f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e27f1f97-0895-45b5-be6b-d2fca544f110" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:e27f1f97-0895-45b5-be6b-d2fca544f110" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A178C07DCBF434FBCF499A90B880B16 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 424560255499479B93C107FB22DFCFD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "8684e933-3aae-47e0-9c8b-cff7d00db4e9" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "67474982-b6eb-491f-b5b7-57f074a6e245" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1107,17 +1115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e65fc68-a1c5-43aa-87f0-27adf1b6082a" ], + "x-ms-request-id": [ "b3eb12a7-5335-4511-b51a-1f61db20f916" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "a5906f9b-f2f1-4e41-b3d9-294d57df187f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013152Z:a5906f9b-f2f1-4e41-b3d9-294d57df187f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff7fa774-a484-4310-bbbf-e1d86812f906" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "29021a94-dd45-4ee6-8048-143ec4a2ed85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:29021a94-dd45-4ee6-8048-143ec4a2ed85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6B32C53266A499FA82CB56F7E81DC0E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8D31B6C37E145A6A48E9B8B965E61A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1127,19 +1136,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "660" ], - "x-ms-client-request-id": [ "f151325c-3bf4-48c8-ac50-86a3ffcebf01" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "8f8d2d5f-8d76-42e0-ae92-e2b4084fa504" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1150,42 +1159,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACB45E6F5\"" ], + "ETag": [ "\"1DC38E50AE128AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14ab37c2-ba7f-4724-b36b-5b82b846d0c9" ], + "x-ms-request-id": [ "ff57106d-193b-4da4-91af-3cd0d060ed5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "0338271c-b648-4c17-8aa7-e2630e2b6b09" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013152Z:0338271c-b648-4c17-8aa7-e2630e2b6b09" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f7cea036-8552-472a-8c4a-35dc30623de4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:f7cea036-8552-472a-8c4a-35dc30623de4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F059AF769C0A422B9266AEBE6F5EE745 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4C0A1BAC73A41C0B68D94491ABD9C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7213" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:52.4633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:09.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "9984fdd9-9145-436f-b95c-493ffb4b7997" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "bca69758-ada6-4b79-8d89-edfa325c4a94" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1197,40 +1206,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67f9a1f3-32fb-4bc6-b282-7b91c85c759c" ], + "x-ms-request-id": [ "0b8be6bc-bc05-4800-a3db-056838aaf943" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "a53a5eb7-d217-4d8e-8ee9-2ffc72419e0e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013153Z:a53a5eb7-d217-4d8e-8ee9-2ffc72419e0e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9343c332-2ab5-4537-b59a-39bb92fd1b42" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "82d3ab1c-5f3b-41a6-84e5-63f7f8a09752" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:82d3ab1c-5f3b-41a6-84e5-63f7f8a09752" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38D88F9D1CEB4EAEA9AC12FBF6EED480 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:52Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81D67BD4FB8F4444908572D090620B4C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "662" ], - "x-ms-client-request-id": [ "0184e9bc-35ec-4b8f-b37d-7cb1f471499b" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "a2cdc08b-8a88-467f-aba7-2e42f29d594e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1242,40 +1251,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f16a40c4-87c0-43e1-b808-e8b21a1b2fcd" ], + "x-ms-request-id": [ "1a8d270f-db0c-45e1-af59-0f2d7ab0dda2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "31a257fc-3343-4a3d-876d-58ec2f04923b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013153Z:31a257fc-3343-4a3d-876d-58ec2f04923b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a705b5a-3508-414f-95e4-fa620b88c8e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "08606b60-c4fa-4f96-85c4-6dc5ff493793" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:08606b60-c4fa-4f96-85c4-6dc5ff493793" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C5A47DB4E264F3CA031FD68B800442D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91786B5067134B7687729E09B2CE67D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "805e0fb6-81e6-4957-9400-d18e330e13dc" ], + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "7908cff6-78a3-41ff-bf70-d49d2219f002" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1286,19 +1296,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACC072E20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc9f43fb-be2a-42cf-92ee-fbc8296757c9" ], + "x-ms-request-id": [ "cdd3e9cd-b2cf-4c79-af9c-1a828ea1cec8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "c88c14fa-bf32-46f7-9b15-63447d2da6da" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013155Z:c88c14fa-bf32-46f7-9b15-63447d2da6da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24a0536f-77df-4387-9bb9-55d710a55ab7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "f8b37639-34c2-445c-a938-ad56fe395b1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:f8b37639-34c2-445c-a938-ad56fe395b1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9FE144937454DB9AB4D27C28218E7B6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:53Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1FFF3F5AD21840D79D0AC6F83AD503E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:10 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1308,19 +1318,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "a729222e-4650-4786-9fec-a35c58fabe67" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "b440ad5d-0633-4d8a-afc9-953440d3ca5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1331,42 +1341,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACC072E20\"" ], + "ETag": [ "\"1DC38E50B81604B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4047c8ca-5035-4579-868d-be79bf1a699b" ], + "x-ms-request-id": [ "391a6d08-0cd2-4d5f-ac91-756c3ebdbd4a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "08933e46-fcf3-4a95-a0be-afb010a39bb7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013155Z:08933e46-fcf3-4a95-a0be-afb010a39bb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "716f90ea-7db8-4079-89e8-c090bbe71594" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:716f90ea-7db8-4079-89e8-c090bbe71594" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A4E806261904BEE939B10D4C68CF059 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:55Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 774F8B081BBC4F799DB2B7EF8540B429 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:53.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:10.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "665" ], - "x-ms-client-request-id": [ "cd325de9-1328-43cf-83a4-8f19f7a79177" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "8b7e15e4-0ed9-4b80-95b5-3963e7d9d27d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1378,40 +1388,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d571e1a-16f1-46f4-8181-8659b91a76d4" ], + "x-ms-request-id": [ "ed277208-9818-42e7-9c84-d3fe63f2cd78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "95a88de5-aa7a-43cb-93d3-73516b10ee72" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013155Z:95a88de5-aa7a-43cb-93d3-73516b10ee72" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b77884e6-9586-4208-8da3-76612cea3d1c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e225eca5-b8ef-4839-8ebd-3cd6d01f9dbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:e225eca5-b8ef-4839-8ebd-3cd6d01f9dbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32AB30B45EA64ED1ACEE21D1D45F1C9A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:55Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F9A20BB7FE84CF9A2435C645448C473 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "666" ], - "x-ms-client-request-id": [ "991df668-6821-4a5c-abe9-b840cdfc578f" ], + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "352505b3-d92e-44e3-b625-388beef577cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1423,40 +1433,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "526cf0dc-64a9-499a-bd65-88210e5dfa62" ], + "x-ms-request-id": [ "2b0ba681-53e3-4e98-b2ca-528189457b08" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "097d4b38-7597-4145-8801-9e6f0f30ba7f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013156Z:097d4b38-7597-4145-8801-9e6f0f30ba7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb53a1f6-e3e9-449a-9aae-476ece1eaea8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "05c53cb1-ab30-4f87-a4ec-4dfcd4ed3858" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:05c53cb1-ab30-4f87-a4ec-4dfcd4ed3858" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 96D754151FB2421BAEC5A736119C796A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:55Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C15FDCD41FA04429A6AF696A016074C1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "08f3053a-b28c-4333-9b59-6c92abe4c914" ], + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "31be82e5-bcd0-483b-b3b1-44d099245362" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1467,19 +1478,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACD87B3A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0bc7be6-0995-4b62-8660-625c0406639f" ], + "x-ms-request-id": [ "1097a38d-6fc8-4c23-8e21-883c7a68b394" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "83cb95a2-740e-4ed9-90ff-44ec9ccbf142" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013156Z:83cb95a2-740e-4ed9-90ff-44ec9ccbf142" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57b51c03-628e-46b7-9373-f4c6c171603f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "145f0f98-4b96-47da-a682-716a9015e7d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:145f0f98-4b96-47da-a682-716a9015e7d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9986B5485B8492186AC9E0E1F46B5D6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F12268E2D2804B909CD5B905316B40EA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1489,19 +1500,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "71c734fd-6c65-4b6e-8e62-8148b7cbd53f" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "f89be7af-7eee-482a-bd7c-41b31fb59785" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1512,42 +1523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACD87B3A0\"" ], + "ETag": [ "\"1DC38E50C4ACACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fad06d2d-3f4f-4bc8-a239-41fcd5647bba" ], + "x-ms-request-id": [ "0818100b-9579-4590-bfff-9b64b9f41311" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "9b41efd9-6da0-491b-ab34-807d38a316eb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013157Z:9b41efd9-6da0-491b-ab34-807d38a316eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "01de3bec-bd74-4895-8641-61ff8686e2ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:01de3bec-bd74-4895-8641-61ff8686e2ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7578526D257544BDB2150D8490290037 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:56Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CCC91394B9E424FB19F23CD4F2AC9EB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:56.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:11.9166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "9f0d717d-7f5a-4892-97f9-6ef7cd6a65f5" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "b63e022b-1509-4474-b315-b174f127e78a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1559,40 +1570,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fc2d3f1-7282-4054-ab79-ae507165400d" ], + "x-ms-request-id": [ "fe9fcc32-7297-4219-a7ac-b4502030aba6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "b5eaf691-689c-4e48-a8a2-2e6a21b8899e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013158Z:b5eaf691-689c-4e48-a8a2-2e6a21b8899e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4674f3ca-8f16-4f1f-ae53-e1adf8f8802a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "98b469be-45bc-4051-a449-a9e34599b6cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:98b469be-45bc-4051-a449-a9e34599b6cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8BB9FEA32CB430E92D9206B63548CDA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:57Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF33CEDE06754BBD81186DCAC8CF6DC7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "08ea7fda-fae2-427e-a750-29fa23c17111" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "c24e829f-0498-4e55-aa54-c17265fbd6f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1604,40 +1615,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "136ad46a-707b-4744-8bc5-0445e4eac931" ], + "x-ms-request-id": [ "dbc74155-bb52-4ca0-a3d2-5e26f4c6a811" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "e47502b7-dc79-4585-b29d-4155517b8f04" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013158Z:e47502b7-dc79-4585-b29d-4155517b8f04" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/513a56e6-a490-42cd-b79d-b4895e054219" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9d56cbe8-180c-4f3d-befc-5f9119f3d92b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:9d56cbe8-180c-4f3d-befc-5f9119f3d92b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC091F4D533543F9AF476DBCD6787FF6 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 688617392EC445B19A94C626F52DA54F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "671" ], - "x-ms-client-request-id": [ "99eafb02-18b1-40b9-aa18-1c9b080c0b63" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "f5a777ce-965e-4a85-9caa-3812d478def3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1649,17 +1661,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0011f34-b377-4a77-a42c-a67cd50fcd59" ], + "x-ms-request-id": [ "f393dcf4-f513-47d4-92e6-a14a951e42ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "accb73ef-2add-4d67-b4c1-6fddadad5c89" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013158Z:accb73ef-2add-4d67-b4c1-6fddadad5c89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a1dc908-2c31-4c64-8cbe-98abc87ecf35" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "c2bded8e-7a80-4415-a5ba-d8df2c1c4506" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:c2bded8e-7a80-4415-a5ba-d8df2c1c4506" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5C7072E202C4424B5D1B436A66F18AA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6DBDD14F04A74D73B7D51BA8223F1CD6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1669,19 +1682,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "d74f381b-81da-4bac-a1b7-caf4465b0e91" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "28ab3690-f769-428a-b735-41f1f2d713a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1692,42 +1705,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACEF05155\"" ], + "ETag": [ "\"1DC38E50CFCCFB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72473cd1-b2fb-4096-9988-30ea48888678" ], + "x-ms-request-id": [ "a223751e-e816-4482-9fa4-1b9898fc44d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "2bb68235-478d-4bb8-8ac7-d2e3992f2860" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013158Z:2bb68235-478d-4bb8-8ac7-d2e3992f2860" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8228f61e-1c24-497d-80d4-e7b1fbbe774d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:8228f61e-1c24-497d-80d4-e7b1fbbe774d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 183FA59E5BA841AEB2894696B9C2A9CB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8864B09CA2734A589573B15FBC8E9E1C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:58.6133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:13.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "c520be61-7a69-489a-9daa-7c59f92e00ff" ], + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "439414d9-5c61-4da0-a3e5-4ab7910df918" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1739,40 +1752,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e37ad99-65b8-4f75-aace-b993d463a2b2" ], + "x-ms-request-id": [ "23d204cd-f3f1-4108-95fa-d527ada30500" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "ac7223f3-3e62-4d39-9351-09117ccd3ef8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013159Z:ac7223f3-3e62-4d39-9351-09117ccd3ef8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e17cf25-b28b-491d-b983-43aba74d4018" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d23b7549-a24c-484b-a4a7-4c62d55e326e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:d23b7549-a24c-484b-a4a7-4c62d55e326e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 097ED818039345C8AF7C8E96F1F17481 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:58Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 686CA6D7CEAB45AD9EDC5B7B38AE22E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "674" ], - "x-ms-client-request-id": [ "f395d7b2-2ac8-4b94-9c79-1dcc4fc202cb" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "2e5b01a0-7dee-42d3-a64b-94b83f1a2175" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1784,40 +1797,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "318f5a39-e312-49e9-8874-723bb1a58b2d" ], + "x-ms-request-id": [ "802c1902-1a65-4e4c-9033-df2b7e6bed3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "c71747cc-2036-4210-9941-744b0f597dd0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013159Z:c71747cc-2036-4210-9941-744b0f597dd0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1e09dfd-d6d8-464c-a608-c61f50b45bbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d2c9ad6e-2913-449f-bdc3-b53ad270beed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:d2c9ad6e-2913-449f-bdc3-b53ad270beed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA6E94D596D14F619F70A0988E2899B1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F49B1B3FBA14975917662A900596245 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "675" ], - "x-ms-client-request-id": [ "fb6e3cc4-5bc9-4894-8835-a46bcf84c0f3" ], + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "3999e094-71b2-4f4b-92e3-48d91477d271" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1828,19 +1842,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACF876135\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd11503b-b497-4a1b-b2fb-6bddb0841cff" ], + "x-ms-request-id": [ "88757eca-2f77-4c18-9480-9dbd4ce003c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "a598a9ea-1e59-49c8-97ba-aac49d39a21b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013159Z:a598a9ea-1e59-49c8-97ba-aac49d39a21b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab9e6421-c989-4834-8aa8-f172f3664433" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "6e029a40-311d-49e5-a5bb-96dc967acd82" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:6e029a40-311d-49e5-a5bb-96dc967acd82" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4E0383CE7304EAE81933D363304F0D9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E88716961161484280D27A6CD9DBD420 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1850,19 +1864,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "676" ], - "x-ms-client-request-id": [ "cbe75fbe-0d43-4bcb-a373-12b70135c3f7" ], + "x-ms-unique-id": [ "651" ], + "x-ms-client-request-id": [ "1d8a9cd2-a8ae-43f3-86a5-f3517346a282" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1873,42 +1887,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACF876135\"" ], + "ETag": [ "\"1DC38E50DBC9040\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24036f93-54e5-4437-b004-79831078bb54" ], + "x-ms-request-id": [ "2d02efb7-be3d-4c8e-880d-ac593e18648e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "8950727a-b144-43e0-9370-ca9843da3686" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013200Z:8950727a-b144-43e0-9370-ca9843da3686" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7c09be11-1706-4fa8-8356-5983cf9f8d31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:7c09be11-1706-4fa8-8356-5983cf9f8d31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53FC52715FDC4591BE6439A44EFC77FF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:31:59Z" ], - "Date": [ "Fri, 21 Jun 2024 01:31:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 590D7D3E91824DE8A8B06441AE239106 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:59.6033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:14.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "677" ], - "x-ms-client-request-id": [ "a76d5f90-348a-4f8a-8b1a-43a4bc925d10" ], + "x-ms-unique-id": [ "652" ], + "x-ms-client-request-id": [ "980c4527-ab97-4451-a645-be6599821a95" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1920,40 +1934,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c37aeddf-fff7-4f62-973b-7059d7b1b3d6" ], + "x-ms-request-id": [ "7de79f4e-6d76-4c69-ad89-c2a4d610adac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "f93fa698-54f4-406e-b965-9e86614c4590" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013200Z:f93fa698-54f4-406e-b965-9e86614c4590" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/694f4208-e9cf-4e34-9485-bfed486e4b7d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7859f7eb-49f2-49ce-8dec-d51ad1506395" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:7859f7eb-49f2-49ce-8dec-d51ad1506395" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA0F30CC08C4424DA821B18D54B0CCB3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:00Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34CD3FFD588941AA95F8CC9F0531B68D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "678" ], - "x-ms-client-request-id": [ "0abe0c38-5939-4f91-a44b-3cae519d7b0c" ], + "x-ms-unique-id": [ "653" ], + "x-ms-client-request-id": [ "1ec5a06c-e0fe-4bc8-918b-f917f350e688" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1965,40 +1979,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4965843-9e3a-4a95-ae05-ce54e7949494" ], + "x-ms-request-id": [ "b0689a39-4d49-4ca0-9fc8-b5324d3ce488" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "97932038-e9bb-4e94-a3ec-8076179f8a66" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013200Z:97932038-e9bb-4e94-a3ec-8076179f8a66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cf32316-24e0-4bf5-a0f3-1fa2ee7785cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "517be08c-81cf-4176-a844-a5a5c4980ea2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062215Z:517be08c-81cf-4176-a844-a5a5c4980ea2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 964B5313EEC04E2DB2CFEBDBE9190B37 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:00Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 851B8CE9893346FD9C236C458917E9DC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "fbe91ce4-2a01-4201-96fc-362d21858239" ], + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "45aaaaab-1428-491e-b524-094e69315283" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2009,19 +2024,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD04EC2E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31b40ee5-2c10-4e7e-859e-51f2553471ef" ], + "x-ms-request-id": [ "d60a1a72-ff60-4e7a-ada9-d458e0f988b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "a3dca9a1-67c9-41ba-b12a-35c15cf6f7f9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013200Z:a3dca9a1-67c9-41ba-b12a-35c15cf6f7f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/537e3aa6-b524-4a06-b2c6-57486b40a77b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ec8da0d2-3cf2-4f60-8338-bc740ab1f3ef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062215Z:ec8da0d2-3cf2-4f60-8338-bc740ab1f3ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 537A29630E4D4EBCB8BE91A6828408E2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:00Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CD31873D84E4A0DBE896965C50E5870 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2031,19 +2046,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "9ba58e8b-647b-4316-8ece-09a67c2a09d8" ], + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "c179c772-8777-4605-9a7c-2b8939ae1f07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2054,42 +2069,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD04EC2E0\"" ], + "ETag": [ "\"1DC38E50E5F52EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ca3b178-6969-4c5e-8a51-80414ee79d86" ], + "x-ms-request-id": [ "6e5980c5-53dc-4d55-90e6-b1c856087038" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "892ee107-ce60-4d02-bf93-05d2ad04c16c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013201Z:892ee107-ce60-4d02-bf93-05d2ad04c16c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "49cdc9f5-47da-4a34-9fd7-9830668bfda8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:49cdc9f5-47da-4a34-9fd7-9830668bfda8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FCF9B3A57F3464987E9727451088710 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:01Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF4C329DF5144510A8E0B590051F0365 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7142" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:00.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:15.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "681" ], - "x-ms-client-request-id": [ "109d1f23-c91c-4bf1-8775-0db59be5a402" ], + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "14f24274-09b3-444f-9fb2-cf73022d1fce" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2101,40 +2116,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ae51a10-680e-42bf-94b8-41411eec67e6" ], + "x-ms-request-id": [ "c2da12cb-ad2d-4515-a881-abc354514212" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "c2e22c77-6aa8-4294-94f9-fed1055290e8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013202Z:c2e22c77-6aa8-4294-94f9-fed1055290e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a47237c5-bdba-457a-8b73-126ef9df0a16" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e1395423-9c57-42fc-8051-4db4bbb25927" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:e1395423-9c57-42fc-8051-4db4bbb25927" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00CACE623D954E92955D4ACE622297D2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:01Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7720AE4D393F4B488628C1785E9A274F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "733085b5-7ee5-411e-bcc6-e5841da1d1ac" ], + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "05ccdafb-e4a8-4cd4-b813-45a0c01df2a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2146,40 +2161,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d067918-f491-4118-9c03-452ba19c4c36" ], + "x-ms-request-id": [ "f8fb965a-0ccb-41ae-ad92-dfe031975208" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "2bc5e50a-26ae-4c13-ae19-9e40e419f5d2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013202Z:2bc5e50a-26ae-4c13-ae19-9e40e419f5d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5df37f39-128e-4826-94eb-69a025030bd0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dc5432db-236a-4981-ad9c-25e182cf9c64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:dc5432db-236a-4981-ad9c-25e182cf9c64" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71C6567A7533405EBBDC0396FC4C8406 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4FC64FE8502423FBE26065721204EFC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "683" ], - "x-ms-client-request-id": [ "22b7e18d-61ef-4e3f-bd50-9cbca15a85c3" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "045166b1-eb4a-4b1f-ba78-5f3ac1be6008" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2190,42 +2206,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AC7E94E75\"" ], + "ETag": [ "\"1DC38E50803B840\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dce06783-b6cf-4ed0-9baf-dffc6ebb8e46" ], + "x-ms-request-id": [ "d1c4ebe5-4882-404b-8e68-0e78599c24ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "091efd15-986d-4d96-8492-4b63b151f017" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013202Z:091efd15-986d-4d96-8492-4b63b151f017" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3303cfa8-b133-4285-86a8-eb40ad3052aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:3303cfa8-b133-4285-86a8-eb40ad3052aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4609D6760DA847A3A580364A1B2B8A3C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A02A4DF498FB4459AD855A98C6CDD971 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:46.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:04.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "684" ], - "x-ms-client-request-id": [ "c00344de-066d-4079-8a5d-6cdd99922c70" ], + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "e22acefb-5244-4afc-a5c2-40a772b487cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2237,40 +2253,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbd32ba3-da6c-4b08-ac9e-3b2a2eb579fe" ], + "x-ms-request-id": [ "622cedf8-3fd0-438a-8960-4514633c73ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "eb25b6bb-8012-4b59-9d17-dfdb51d32a76" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013202Z:eb25b6bb-8012-4b59-9d17-dfdb51d32a76" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9182d58e-94fc-4ada-8a7f-d85bb06740c0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "889de851-e1d6-49ae-a4fa-dae87425f9c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:889de851-e1d6-49ae-a4fa-dae87425f9c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAC8F93E3D974DBD95227C1318B3E99D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5C3EC4A2B8043BF9D5846E0C99520DF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "0c7bb0cc-711e-4419-8aca-d632a6c22c99" ], + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "aa7166dc-1feb-4aa3-a659-11648823baa9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2282,40 +2298,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "914302d7-a898-48f8-9f57-d762b80c516c" ], + "x-ms-request-id": [ "811e133f-618e-4b21-8503-d5327744b032" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "aaf6e436-6d63-4014-b5c3-a7642b791f61" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013203Z:aaf6e436-6d63-4014-b5c3-a7642b791f61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d00fe50-1a02-4f51-83ea-3421734574e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1b70efaf-1524-4f4f-8fcc-af2aae7adee5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:1b70efaf-1524-4f4f-8fcc-af2aae7adee5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F41C2F3F1EA64018954566B92BBDD2C0 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:02Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9173D43CC8AE4468A11B0CE84EC2E4B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:18Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "686" ], - "x-ms-client-request-id": [ "e70d5bcf-761b-4bc6-a94d-b2298de82587" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "748b028c-0b82-4c8b-806e-dd162cf348ce" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2327,17 +2344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33e29623-3c5c-4930-915d-b94372dc1474" ], + "x-ms-request-id": [ "d4e6a7b6-6fea-4bf7-b246-e61a7f0c55a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "32e797ca-89af-4ef5-987c-e6734ead6530" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013203Z:32e797ca-89af-4ef5-987c-e6734ead6530" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91b10d2a-b6c1-4c60-ab79-bffad9c31446" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f55f9c82-9d12-47b7-8394-6312a3bcc078" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062219Z:f55f9c82-9d12-47b7-8394-6312a3bcc078" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40106EEB47C943D1AD4A224D6EF2995F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9DAFACABEB840C6BD447BAE1035D2BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2347,19 +2365,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "6f97d085-121d-44f1-af45-b7ffff26182a" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "67b66033-53fe-4a33-a6a4-9b3a445cfc54" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2370,42 +2388,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD1BDFD4B\"" ], + "ETag": [ "\"1DC38E510E0B3A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f797a7f-15ef-407c-bf34-9e723ecbcd4d" ], + "x-ms-request-id": [ "d475d796-edd9-4a23-ac7c-a6d263565f0a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "060d6d97-bc2d-4ef7-b32e-5d375f337d8a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013204Z:060d6d97-bc2d-4ef7-b32e-5d375f337d8a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "44398624-ab7b-47af-a589-40a675ecea93" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062220Z:44398624-ab7b-47af-a589-40a675ecea93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A9531EC8915468A9876AB4868DB2780 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:03Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37B232C257204B63B93FC75F6D4ADA01 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:19Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:03.3166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:19.61\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "02aabc0d-f8e6-4445-928d-dbcb3cdcfc20" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "d586a483-68ba-4ac0-85ec-c775a5e289fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2417,40 +2435,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44354870-e874-44c1-b1d5-7c075247f5a3" ], + "x-ms-request-id": [ "0447f5df-f54d-4a0b-adaf-50fa2a93e22c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "6c7a74ec-1683-402a-a74f-283a2aed7d4a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013204Z:6c7a74ec-1683-402a-a74f-283a2aed7d4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36d16902-07e8-4624-aec4-227a93847642" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e8267e29-8419-45d2-b6cf-ed4a0b549f83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062220Z:e8267e29-8419-45d2-b6cf-ed4a0b549f83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB67CFEE3F984A0289BDAA7815C4D587 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:04Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F81E5E6B6E9D455EBA69113029B2D36C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "106629b1-fdb3-49d2-9b55-ad327d4bd3f8" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "f4a4a57b-1f27-48ba-8986-8c0c3bdcdcdb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2462,40 +2480,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcafd735-7a24-423a-a38d-07946710ab6b" ], + "x-ms-request-id": [ "4f9552cf-669c-42eb-8634-401562d19b16" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "47762666-9bc2-4271-b9c9-78af50d27b51" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013204Z:47762666-9bc2-4271-b9c9-78af50d27b51" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/002102ff-4adf-4ef6-820d-19c53386ce42" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f6e017f5-00ef-4529-95f2-4041f67022ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062223Z:f6e017f5-00ef-4529-95f2-4041f67022ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A0FD89C5EAB4A2B996557D6E0F9AB02 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:04Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31D3297B36E64AF89285515A3601A2EC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:20Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "690" ], - "x-ms-client-request-id": [ "8fc71f95-10ab-4a2b-8325-f00de39f8e00" ], + "x-ms-unique-id": [ "665" ], + "x-ms-client-request-id": [ "48ae561e-990b-41a4-b7fa-35de77dd6728" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2506,42 +2525,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD1BDFD4B\"" ], + "ETag": [ "\"1DC38E510E0B3A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7af65ea6-2656-4425-ae68-4bb358996b74" ], + "x-ms-request-id": [ "4dc23bba-e7ea-485a-a25b-f610a505bfa8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "742f0c9c-bd9e-4cfb-9bd5-9f12a41ff852" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013205Z:742f0c9c-bd9e-4cfb-9bd5-9f12a41ff852" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3f10e93b-1a98-4a18-bfb3-72f37a04cb55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062223Z:3f10e93b-1a98-4a18-bfb3-72f37a04cb55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C2EAADB082C4991969A013D86B5E417 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4620C0D7FF84A2889920172D6AAE318 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:23Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:03.3166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:19.61\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "691" ], - "x-ms-client-request-id": [ "6690c3cc-74d9-446b-9131-dd2009978065" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "ada14140-7143-40c0-b982-44038ee79953" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2553,40 +2572,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d5d3b40-47c5-4969-af48-248c9f65bbfa" ], + "x-ms-request-id": [ "22332178-8987-4c36-afe0-0d8d22626506" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "d96f080a-f560-4c3f-9780-fffbe24a2577" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013206Z:d96f080a-f560-4c3f-9780-fffbe24a2577" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2d68206-264c-432e-b182-6830394beb4a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e42c6f9e-422a-41a1-8a2b-f511f1ffadbb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:e42c6f9e-422a-41a1-8a2b-f511f1ffadbb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7676D9ED979F42BAACA1CD00DF90DDDE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:05Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE408AA33BE84AC9A670CD6B379E0B17 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:23Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "692" ], - "x-ms-client-request-id": [ "7605f646-d756-4c17-a451-8c61d9b8677d" ], + "x-ms-unique-id": [ "667" ], + "x-ms-client-request-id": [ "eeea0d1d-d564-4837-9349-5d157fb4f671" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2598,40 +2617,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87a59309-6fd3-4d84-96ec-b6f37c9b90ca" ], + "x-ms-request-id": [ "83622e31-8481-42d2-ad37-66373d7d31d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "942af921-66c4-41aa-8754-71abccf276a1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013206Z:942af921-66c4-41aa-8754-71abccf276a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e555f309-281a-4b47-ad93-e4347b9aa55e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3b28470c-91e4-4416-a0f7-c46f710366ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:3b28470c-91e4-4416-a0f7-c46f710366ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6634753D43EE49128B1F983874A35043 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62055768D2414658A681BD554D4F695D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "62685533-9d60-49c6-8572-a139eb7330e5" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "239c67fd-55a5-4b63-b033-e821b0c56eee" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2642,19 +2662,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD3A0AD00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e18b335-1dc3-47ee-ac4b-ea309e8a6acc" ], + "x-ms-request-id": [ "890fcb28-4256-47a3-85d1-e1ec570a8367" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "0688b4ce-cf5a-43a7-89ab-e6612fcee0d4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013206Z:0688b4ce-cf5a-43a7-89ab-e6612fcee0d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd5eb313-aef5-4f3c-b8e3-425fc4fe96ad" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d35731f7-5494-4bb3-86f1-2aed9198d44c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:d35731f7-5494-4bb3-86f1-2aed9198d44c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EF2A567649C4820B5B33E2FBFF16E3B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7DC938A06D44CF7A8AAC8859D89A1B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2664,19 +2684,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "694" ], - "x-ms-client-request-id": [ "6434123b-4533-4dd8-8d3f-bc1f2cb2b02c" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "88248320-5352-48dd-acd7-9b0499ed0422" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2687,42 +2707,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD3A0AD00\"" ], + "ETag": [ "\"1DC38E513DEB160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "384a3878-007d-4599-a7ca-2862de2b935b" ], + "x-ms-request-id": [ "49e2ee44-52d0-4792-849a-ecc69f94739f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "7fd1217f-3d84-4a68-9cd5-d77d5c3b9e94" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013206Z:7fd1217f-3d84-4a68-9cd5-d77d5c3b9e94" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b9f47d5c-d5c3-41d8-9ed7-307a48517567" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:b9f47d5c-d5c3-41d8-9ed7-307a48517567" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DB1CF8ACE314108B55C2912D6121626 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D007BA8F35C14E7D9868382AD1BED9CD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:06.48\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:24.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "695" ], - "x-ms-client-request-id": [ "875334c5-b32b-4081-b96a-469c9e3f5d25" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "53614866-7eeb-4889-b62d-7f686051f451" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2734,40 +2754,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "907c41c4-ced5-4345-8597-1405d0ce3bef" ], + "x-ms-request-id": [ "739572dc-270d-42c6-8800-5b1ecfced06b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "25e64fff-829b-45d1-97a2-161617991982" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013207Z:25e64fff-829b-45d1-97a2-161617991982" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/590f373f-c66e-4710-83a1-36184b02377a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2cac2e46-2ea1-431a-bd69-0959d43260ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:2cac2e46-2ea1-431a-bd69-0959d43260ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B39034FFF5B4438FB1E7CF76E48DB079 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:06Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16FE18C9C34F41D191DBAAA90C76FA66 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "696" ], - "x-ms-client-request-id": [ "467f4a01-61e3-4665-a976-8ee998e77b8f" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "8ac2e23e-df12-4342-b151-3b8c70d4a69b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2779,40 +2799,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75204c1d-96d0-4984-9e66-131fc13f9082" ], + "x-ms-request-id": [ "f0e1d320-b6c9-4679-b1df-7096bfbce9f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "556319cc-af00-4934-88ac-9c43cc9959f4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013207Z:556319cc-af00-4934-88ac-9c43cc9959f4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c124c81b-6981-4089-8a5a-0968cfb7d2c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "44be63ec-dc15-49f3-aa0a-8025400f9ba5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:44be63ec-dc15-49f3-aa0a-8025400f9ba5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E6399A3029B4DB7BF77C75C88D9601C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A282B2354FAB4198A0D6F60DB6CB5333 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "697" ], - "x-ms-client-request-id": [ "3953e1be-63e6-455c-881e-39179d8c2d94" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "f98e76ed-8471-464f-9721-27f65b8e9ced" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2823,42 +2844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD3A0AD00\"" ], + "ETag": [ "\"1DC38E513DEB160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91ecde84-6f88-4607-9eff-0468259fef51" ], + "x-ms-request-id": [ "1af1b640-a426-4b6d-b679-5f5f84decc5d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "05ed534a-a9f8-4109-88ef-94131826a4de" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013207Z:05ed534a-a9f8-4109-88ef-94131826a4de" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d0e2de51-befe-41b7-8a37-49052062bdd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:d0e2de51-befe-41b7-8a37-49052062bdd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 189A9FCB6F19407CA907B9DBB89A4E0E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7E4E441E1D142538F6CFFAE69EEB2E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7294" ], + "Content-Length": [ "8361" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:06.48\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:24.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "c3af4124-711f-4e55-af0e-560cd1bc7eae" ], + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "d2a2fc5e-3983-4c66-b623-f9f0e8664e7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2870,40 +2891,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3556baf1-a1b2-4236-afb6-51251f161b32" ], + "x-ms-request-id": [ "cd7c993d-bec5-41ce-a01c-932346d9259a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "695efb97-0ca1-4496-96d9-16fe6e570ab8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013208Z:695efb97-0ca1-4496-96d9-16fe6e570ab8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/643b01bf-3827-4101-b737-f71c19cdfdd1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5a5bd6e9-7fec-4382-88b3-9be77723bcf6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:5a5bd6e9-7fec-4382-88b3-9be77723bcf6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF4260A620DB4C6DB9E4E85562856338 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:07Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7048B25743FF4781927343D066CBBA56 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "699" ], - "x-ms-client-request-id": [ "264bb4d2-c09d-40ea-881f-64937bdcdcaa" ], + "x-ms-unique-id": [ "674" ], + "x-ms-client-request-id": [ "b1dbe46c-8f77-48d8-8026-711a878c5d8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2915,40 +2936,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f48e8c0b-80b1-41bb-a26d-5ed26f427e71" ], + "x-ms-request-id": [ "7b51da08-b8c6-412a-b617-4655706671f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "ba94a975-26d5-46d9-b9b7-43ea5867647c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013208Z:ba94a975-26d5-46d9-b9b7-43ea5867647c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0d7c91b-ad03-4f06-9b2f-ea7f3a82c58b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "583c4b9e-7c26-4f95-a29b-bd877c8f9874" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:583c4b9e-7c26-4f95-a29b-bd877c8f9874" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C0D4CF6680347AD88509394672619EA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 39E3694B04B540429E43C93FC50751A6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "d0bbf2e8-36b8-4f9a-867f-b16c2b995e34" ], + "x-ms-unique-id": [ "675" ], + "x-ms-client-request-id": [ "5b39a3a2-2c37-4b2d-b12a-034a1f2b6285" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2959,19 +2981,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD4E4ABB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b74bdfbb-d5b9-4460-9630-329ce1279465" ], + "x-ms-request-id": [ "db580da3-e6cb-4cb9-a6c7-1ad369752f19" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "d9c3abc9-cf14-41b9-9aa1-4fd1dcd47f7f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013208Z:d9c3abc9-cf14-41b9-9aa1-4fd1dcd47f7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dcbbb85-5c6c-4895-9b83-eb80a43fb1a2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "37d4808d-3b97-4add-80f8-e7ae15088406" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:37d4808d-3b97-4add-80f8-e7ae15088406" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FD9036F7103419CB4F8B3D9E839D1CD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 380CD951D9954720B92553DDF09849E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2981,19 +3003,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "1a9bfa26-ec62-47f5-bdd0-33f6eca8dc2f" ], + "x-ms-unique-id": [ "676" ], + "x-ms-client-request-id": [ "16d51a12-6995-4df6-b689-f8fcbfccead6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3004,42 +3026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD4E4ABB5\"" ], + "ETag": [ "\"1DC38E51511DA30\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe750f4b-60e0-471d-b464-c26e6d1ad2e3" ], + "x-ms-request-id": [ "746ebcec-6671-4282-b815-543cedbb6cb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "39957a90-f05a-4c04-b9b3-84eb6f69ff0f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013209Z:39957a90-f05a-4c04-b9b3-84eb6f69ff0f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "628e5ce2-3273-4ace-9265-8cf6167ade44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:628e5ce2-3273-4ace-9265-8cf6167ade44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 179B723FF5F844F681E395C6D84911F4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:08Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BABDC7C38774BAD8F3010DB50F78A72 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7299" ], + "Content-Length": [ "8362" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-72-n0c7kq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-297.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-x7qylg-CentralUSwebspace/sites/Functions-PowerShell-72-n0c7kq\",\"repositorySiteName\":\"Functions-PowerShell-72-n0c7kq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"functions-powershell-72-n0c7kq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-72-n0c7kq.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-72-n0c7kq.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-x7qylg/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-vesazn\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:08.6033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-72-n0c7kq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.5\",\"possibleInboundIpAddresses\":\"20.118.48.5\",\"ftpUsername\":\"Functions-PowerShell-72-n0c7kq\\\\$Functions-PowerShell-72-n0c7kq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-297.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.118.48.5\",\"possibleOutboundIpAddresses\":\"20.84.201.241,20.84.203.235,20.84.204.76,20.84.205.242,20.84.206.9,20.84.206.212,20.84.207.111,20.84.207.181,20.84.207.220,20.84.207.225,20.84.207.228,20.84.201.83,20.84.201.185,20.84.207.242,20.84.203.133,20.84.207.62,20.84.207.245,20.84.207.246,20.236.224.123,20.236.224.124,20.84.205.65,20.84.201.26,20.84.205.81,20.236.224.136,20.236.224.148,20.84.204.36,20.84.204.37,20.84.207.76,20.84.207.77,20.84.207.202,20.118.48.5\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-297\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-x7qylg\",\"defaultHostName\":\"functions-powershell-72-n0c7kq.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:26.643\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-72-n0c7kq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "702" ], - "x-ms-client-request-id": [ "305ce170-389a-470a-b486-0a1871f9a8b9" ], + "x-ms-unique-id": [ "677" ], + "x-ms-client-request-id": [ "8b2e06dd-ebf2-4df4-9ed0-8ba363c44494" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3051,40 +3073,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5403480-80a1-47ad-a831-4cac6f83b1fc" ], + "x-ms-request-id": [ "69838342-aac0-49d7-8d46-043299c0c99c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "aec78019-2330-4fec-98ee-c6113da4f664" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013209Z:aec78019-2330-4fec-98ee-c6113da4f664" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9de5631e-d91c-4c2b-a052-9ef5d8cec677" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a82f311d-6329-4d19-9b5c-bbe54faf43fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:a82f311d-6329-4d19-9b5c-bbe54faf43fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A29CAD3D3B6B4220BA71D0D29E8CC9E8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3A514A59F5443799074974B01D682E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1189" ], + "Content-Length": [ "1181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-72-n0c7kqtet8xtld\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"fa6044a6-c259-4170-b89d-2f11a85f94e7\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-72-n0c7kq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "703" ], - "x-ms-client-request-id": [ "8a67936b-aec4-445a-a297-93e920696699" ], + "x-ms-unique-id": [ "678" ], + "x-ms-client-request-id": [ "05aa61a4-1c1e-4c62-8a49-d371f9d5a387" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3096,40 +3118,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68da4fbe-0dcf-4512-b9cc-e252bc7acc83" ], + "x-ms-request-id": [ "d9315cdd-d602-463a-b23b-5c367b7673bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "8a35e733-8baa-450e-938c-c958c3131c83" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013210Z:8a35e733-8baa-450e-938c-c958c3131c83" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab1a860e-a034-4fca-9a59-29303f2b14d2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8378a24d-25fd-44c2-9d83-bff598f6cd68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:8378a24d-25fd-44c2-9d83-bff598f6cd68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71771E16E00E4CC6AB45CD144664C9C7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:09Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB91682DE21D4682BE3A2F7F99E6AB27 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4070" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.Web/sites/Functions-PowerShell-72-n0c7kq/config/web\",\"name\":\"Functions-PowerShell-72-n0c7kq\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"7.2\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "e5207501-ec8c-4fcf-ac83-d562dcfde0ca" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "a86abdda-7cf3-4068-b11f-13a3d630da42" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3140,42 +3163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC38E50A2FA5F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d21f0ba1-32c6-4bbe-b8e9-2bef299e36e5" ], + "x-ms-request-id": [ "242a8fe7-2b53-4b03-9a90-4c433f33d8db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "a4271884-96dc-4031-aebf-fa9570b125d5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013210Z:a4271884-96dc-4031-aebf-fa9570b125d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8f6063a8-05f1-494d-88f6-58a848906038" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062228Z:8f6063a8-05f1-494d-88f6-58a848906038" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01DD964568F7449B8E6DE28CCEF37F28 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7D794E3AD8E4F4DA507934CAFF34AD7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:50.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "1a41af46-6de4-4f8b-95c7-35dd84a916a4" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "a0546ac1-9658-4be2-9ad4-fd977245f50b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3187,40 +3210,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a6cb874-9b04-4516-b6d7-830cdb35556b" ], + "x-ms-request-id": [ "b836e1ee-64e7-4fcb-821b-467d249d2a4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "049e03db-4780-4695-a714-c677b6a8b3fc" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013210Z:049e03db-4780-4695-a714-c677b6a8b3fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ff87e13-43de-4581-a099-0389370271d2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e0fe485d-eb79-484d-8c9b-069b6653e949" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062228Z:e0fe485d-eb79-484d-8c9b-069b6653e949" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFC487AAD21749E9B52FEDB82F93218B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E417CF5233C43C38166F6EAA9DC3D69 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "3f493908-dc30-43c5-a5d4-9f1744be7b3a" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "2e0610e2-cb77-4786-937f-1604ea4adcc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3232,40 +3255,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "236a46d7-9113-4078-a771-1634c954bf4f" ], + "x-ms-request-id": [ "2b5df2ef-9ab5-43bb-809c-13679e9b0531" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "9eaf17e4-d6cd-499c-a35e-ba67bd0a5ed5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013210Z:9eaf17e4-d6cd-499c-a35e-ba67bd0a5ed5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc56a7cd-225a-4c08-9fad-27841762807c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2b356f89-99db-42f0-b0e4-472bc29037ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062229Z:2b356f89-99db-42f0-b0e4-472bc29037ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F4649F1C079481D8836B30D623F0752 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E675157A70D4854978807CF9BC0A74B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:28Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "1296bda2-e99d-4c7c-b356-73fb01d890c9" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "5810e6da-4448-44e1-908f-5a3942385451" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3277,17 +3301,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9fc40f08-8ac9-46cc-b52a-dacddcf32959" ], + "x-ms-request-id": [ "43676b1b-1101-4fbf-90ff-e894ab035ad7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "5137ef92-d914-4bfa-9740-68c8fd005e48" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013211Z:5137ef92-d914-4bfa-9740-68c8fd005e48" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6d5c4b8-0fe4-4258-ab52-cb8be8774bf4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "29400b11-e699-4b78-8a22-11bbade1d384" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062229Z:29400b11-e699-4b78-8a22-11bbade1d384" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8376E7E41C994F3EA9D34A82D357DCCA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:10Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF8FF478F91542C48A1093ED0064A918 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3297,19 +3322,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "6d64833f-8361-4f16-b2d1-33412a3ddf9d" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "945a9159-b0ab-4c22-8104-c15b1966c8b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3320,42 +3345,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC38E50A2FA5F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af7a2edd-6554-43e9-baf8-7e5dfc936233" ], + "x-ms-request-id": [ "0053991e-8703-4588-8aa6-14350e84ed46" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "951bbc68-abdb-4df9-b7b8-ae5e62d55178" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013211Z:951bbc68-abdb-4df9-b7b8-ae5e62d55178" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7935b57a-738f-4517-b92d-30d934f3b31c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:7935b57a-738f-4517-b92d-30d934f3b31c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A005492B33D547CF8721EF532B6BA206 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D025838101C9497EB0C3BCF33EE36028 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:29Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:50.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "60aa3fca-bfe5-4f89-bd2f-d97a0b88eb99" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "779b690d-a611-4795-b0e9-458ee3b55a86" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3367,40 +3392,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e10339d4-8228-422d-888b-8b40ead2f244" ], + "x-ms-request-id": [ "ea1255d9-67bf-49d8-8e30-1bee58ace6a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "2698be05-91a6-44bc-8f70-48412d676f2b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013212Z:2698be05-91a6-44bc-8f70-48412d676f2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bb914cc-4bad-40f3-be50-217cfc5bc0a4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5a61a599-13fd-40f8-80be-72931f510708" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:5a61a599-13fd-40f8-80be-72931f510708" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5AF8007787FB46519E68266FC6ED769F Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:11Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E1E9B5F077F4C0BA86DE2A913599A9A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "368a9962-2fce-4c00-9215-c98fc7d6ad49" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "a321c7e4-fcf3-4287-9eec-894cdb701fd3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3412,40 +3437,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbb3cd27-d88c-49da-a708-15b81939613a" ], + "x-ms-request-id": [ "c99a9d00-6578-4df3-81d3-3f45099581fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "c437b402-040f-4ce8-b5ad-d22ad6c03922" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013212Z:c437b402-040f-4ce8-b5ad-d22ad6c03922" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6aad4de-fb32-46f8-a398-70fc0fc9af3d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "11d069e3-df03-45be-b36d-edcaf2924dc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:11d069e3-df03-45be-b36d-edcaf2924dc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F22CC83F8D174409998A4F5343FD4D46 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76C6929349F24A098003B9E429A3561C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "6623d0fd-1ed9-4db1-a979-ca841b529e12" ], + "x-ms-unique-id": [ "686" ], + "x-ms-client-request-id": [ "f1310eef-e349-46dc-94de-91927f3a818a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3456,42 +3482,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACA608300\"" ], + "ETag": [ "\"1DC38E50A2FA5F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5cda02c-a6fb-4cf8-b921-52d359a0d917" ], + "x-ms-request-id": [ "44e41ca1-d43f-4a23-b8a5-5a9f3eb139d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "58fed16e-bdc0-475f-8d0a-7a2c3fb77550" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013212Z:58fed16e-bdc0-475f-8d0a-7a2c3fb77550" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4f196bbd-45ba-436f-8572-dc287114515c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:4f196bbd-45ba-436f-8572-dc287114515c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48F2FCC6C0A04D8CBF78B41E0D2D598B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E35D1D71041446319406FB395A98ADBD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:50.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "a32a9e34-1733-4d70-9cf5-443661e8ab52" ], + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "e6a7b451-c585-44a9-bd73-c48dc3729799" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3503,40 +3529,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9dadacd6-786b-4838-ac4d-1daac8e5bff8" ], + "x-ms-request-id": [ "1383eb8d-a02b-4fa5-9491-9118c770c313" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "1607e697-98f6-4076-94da-17fad1139f27" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013213Z:1607e697-98f6-4076-94da-17fad1139f27" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/282c8484-ae1b-46ca-a8bf-ed2b746e78f9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "67aa4469-e7a2-4bf7-8bdf-0924ae15a683" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:67aa4469-e7a2-4bf7-8bdf-0924ae15a683" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D604E24C2CC4F75AFD574191B17E863 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:12Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB7F3E79459D4184990FA032255E1B1E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "87d2c2c7-1118-40ef-a6d3-d6345ccf838c" ], + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "b55e36cf-f368-4e54-b88f-e629013a36a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3548,40 +3574,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ea18e9d-5e53-479d-8ec4-1e1c26cd0443" ], + "x-ms-request-id": [ "f21154e2-378f-4f07-82ab-990bcabe21e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "6dfd7e5a-b379-4854-8e7f-9331cd14d0e4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013213Z:6dfd7e5a-b379-4854-8e7f-9331cd14d0e4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21a6efa2-2c84-4b20-8099-0f2a3b97fce8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7eb838ba-d1c7-4b71-ab96-fd0ab69810a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:7eb838ba-d1c7-4b71-ab96-fd0ab69810a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70E3C9AE609847539E46439401CAF984 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:13Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8688EDC99E4545AB94EA783F210CDC16 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "2b23b759-9174-4815-8a48-ced03f8dc87b" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "9986ec5a-ed23-4a88-b90f-b52094ca96be" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3592,19 +3619,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD7ECD5A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12195d6e-0b36-4331-8496-13de0794fd96" ], + "x-ms-request-id": [ "dafa75c3-04a0-4096-b62d-197214995968" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "95d94c02-af46-42d9-898c-d8751c62efab" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013213Z:95d94c02-af46-42d9-898c-d8751c62efab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b8e0d4c-5230-4dba-9420-a7359af0e2f7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ff68baef-e283-446b-9eaf-9f8a3398cc47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:ff68baef-e283-446b-9eaf-9f8a3398cc47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 733C3F80C40D40709E3544DC12BE4952 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:13Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26AA398C03E842AC9224B7A8F0F5E1B9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3614,19 +3641,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "0f0642d6-7567-4b1e-b6be-96fab00de165" ], + "x-ms-unique-id": [ "690" ], + "x-ms-client-request-id": [ "be7984d0-ef6f-487c-b5ff-876065ad5665" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3637,42 +3664,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD7ECD5A0\"" ], + "ETag": [ "\"1DC38E518198EEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3efcd4d-e7f9-4d3c-90d6-77a689f4dbe1" ], + "x-ms-request-id": [ "8ee953bd-db08-41d7-ba81-7ef80ca581f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "e4fe4b1f-5e9c-4294-ab17-9718c0cda37a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013214Z:e4fe4b1f-5e9c-4294-ab17-9718c0cda37a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b46cb62f-4803-41d4-a583-79870c906ed9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:b46cb62f-4803-41d4-a583-79870c906ed9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABFFB4117310420EA9C274D3C9770CF1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:13Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B35BD3784089405DB031460D7891B2B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:13.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:31.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "716" ], - "x-ms-client-request-id": [ "d55a124b-c83d-4387-877c-6d53feaa3d1e" ], + "x-ms-unique-id": [ "691" ], + "x-ms-client-request-id": [ "14422210-16ff-446a-b796-8460c59bd1f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3684,40 +3711,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f94df00-01a0-4bce-a1dc-bf7f92850de7" ], + "x-ms-request-id": [ "27f138cf-3410-4cee-85e3-951377be94d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "86dc93a5-c0de-4c19-a04e-39556bb5ea05" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013214Z:86dc93a5-c0de-4c19-a04e-39556bb5ea05" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e77051f-d235-4f34-a362-2f1ab89dd3b7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "81f2d54b-2a59-4b67-a76e-1c90f5c905b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:81f2d54b-2a59-4b67-a76e-1c90f5c905b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A917B6C1200D436AA167C344B6E0AC48 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA9D58E43E944991B7C732136C8C2C54 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "717" ], - "x-ms-client-request-id": [ "5efe2248-2b0f-4ae7-8121-7cc5c54170c4" ], + "x-ms-unique-id": [ "692" ], + "x-ms-client-request-id": [ "d18a1771-9742-4c7f-8843-560e3f40dec1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3729,40 +3756,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c8c9d2b-62f6-4641-b9bd-3bfb5abb7603" ], + "x-ms-request-id": [ "b0804582-6e32-4283-ba6d-efcd224d8bce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "b753ef17-227f-41ed-a2e7-abb8dae7fdaf" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013214Z:b753ef17-227f-41ed-a2e7-abb8dae7fdaf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e49e360f-01e3-408c-ab85-84e4857be58b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a67d0f19-2995-4a10-b514-5627c3b659dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:a67d0f19-2995-4a10-b514-5627c3b659dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C6B2097D0224ED58448D36584C16315 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3FBC841D1C8427BB58D266042021738 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "f5a9ca4f-71c4-41da-8a08-4c91ba8491d0" ], + "x-ms-unique-id": [ "693" ], + "x-ms-client-request-id": [ "12fc0ead-2e28-44f5-8770-03b4631a32bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3773,42 +3801,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD7ECD5A0\"" ], + "ETag": [ "\"1DC38E518198EEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f553584e-2d1c-476d-8614-89c8dce4f3dc" ], + "x-ms-request-id": [ "f0ae4813-9747-4b22-ad28-4eb71459c85b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "c1d27ac3-32a4-4f7c-882e-bbc3f4ddc907" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013214Z:c1d27ac3-32a4-4f7c-882e-bbc3f4ddc907" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "a7454467-094f-43ca-92de-3f25f08c39fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:a7454467-094f-43ca-92de-3f25f08c39fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 392DB140FC444FC2B212D133B2BD9609 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB41DF7F2D534A90A612503A9289DF7F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:13.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:31.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "719" ], - "x-ms-client-request-id": [ "031f9cfe-7d62-4913-91b4-6705083813bc" ], + "x-ms-unique-id": [ "694" ], + "x-ms-client-request-id": [ "839c33a5-a1ee-46f9-ab7d-a67d41f5966d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3820,40 +3848,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61fa3fba-0475-4a86-bc25-6946f05484f9" ], + "x-ms-request-id": [ "6eb5a2a3-5a42-48f2-af63-35d8dbb342bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "f637d859-f8b9-41e7-bcd8-f7bec9475e01" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013215Z:f637d859-f8b9-41e7-bcd8-f7bec9475e01" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edb945a6-5026-4394-bfba-8385cca29f6a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c1cbecc3-e9c9-4fd3-b001-c14b42349177" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:c1cbecc3-e9c9-4fd3-b001-c14b42349177" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D1C34ED64B546B89A4363AD84B097DA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:14Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F836F2CC6FE8488BA2D9276DFA40C9E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "720" ], - "x-ms-client-request-id": [ "60345f19-b57e-44e7-b155-40d43eb2cd8f" ], + "x-ms-unique-id": [ "695" ], + "x-ms-client-request-id": [ "b4d5ff57-caa5-4062-bdf2-c9c4f11fac31" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3865,40 +3893,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b1f2eeb1-9e20-4462-83a5-84b2e08c7491" ], + "x-ms-request-id": [ "b5b4ed5b-afc7-4d61-9fac-a17c53f55812" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "6013331b-3234-4e2d-bd5a-64fba26a49c4" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013215Z:6013331b-3234-4e2d-bd5a-64fba26a49c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fc2bff5-6113-4b4f-a156-b988e77e9ba5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a6d8d2e-15b3-439e-a390-15daf1fc7752" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:3a6d8d2e-15b3-439e-a390-15daf1fc7752" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CFDC3FBFA73D4225AD8A282365D7CA64 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5783820AFBB434493D5AB8D38B06813 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "02225413-1c10-4145-be80-442777a34d96" ], + "x-ms-unique-id": [ "696" ], + "x-ms-client-request-id": [ "4deb034a-9d99-4504-868b-d8b124e4bf4d" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3909,19 +3938,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD911CDA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "522d4e41-ebfa-4cf9-88e2-9f03e4f00b6f" ], + "x-ms-request-id": [ "5331409d-18b5-4a07-ba8a-285c3145815a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "07b72e33-a680-4ce4-8725-f4a624e23b7d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013215Z:07b72e33-a680-4ce4-8725-f4a624e23b7d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8d467b1-1a17-4257-9fb0-8611699c5b54" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "ca137551-13c2-4e40-a31a-0411d852ddba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:ca137551-13c2-4e40-a31a-0411d852ddba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5AE78D89D17B4CC5BF28703A626B20DD Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55188421CBB74407B886704A2D46C88D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3931,19 +3960,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "c09c3a09-5731-4e89-8544-c1dd621b771b" ], + "x-ms-unique-id": [ "697" ], + "x-ms-client-request-id": [ "1e547fca-a124-4a28-b4cc-223411b8a7de" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3954,42 +3983,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD911CDA0\"" ], + "ETag": [ "\"1DC38E51970E18B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cba96c5f-f395-4f7e-886c-ddbfedcaeb6d" ], + "x-ms-request-id": [ "3aea4809-9984-4437-9cd0-59ed8ece3cd0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "c457d247-a693-4165-81a2-85d378708d6e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013216Z:c457d247-a693-4165-81a2-85d378708d6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8364d7b1-d059-4d96-9974-541f03b485ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:8364d7b1-d059-4d96-9974-541f03b485ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62708121242445E59D951BE36A480F0C Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:15Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8BB8F939FDC40A981F20D601BE94039 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7325" ], + "Content-Length": [ "8201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-18-1u8q25\",\"state\":\"Running\",\"hostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-349.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-23kylb-CentralUSwebspace-Linux/sites/Functions-Node-18-1u8q25\",\"repositorySiteName\":\"Functions-Node-18-1u8q25\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-18-1u8q25.azurewebsites.net\",\"functions-node-18-1u8q25.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|18\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-18-1u8q25.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-18-1u8q25.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-23kylb/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-wdx4cl\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:15.61\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-18-1u8q25\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.48.15\",\"possibleInboundIpAddresses\":\"20.118.48.15\",\"ftpUsername\":\"Functions-Node-18-1u8q25\\\\$Functions-Node-18-1u8q25\",\"ftpsHostName\":\"ftps://waws-prod-dm1-349.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.118.48.15\",\"possibleOutboundIpAddresses\":\"52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.221.102.3,20.12.137.87,20.12.137.172,20.12.138.37,20.12.138.187,20.12.139.48,20.12.139.69,20.12.139.74,20.12.139.92,20.12.137.84,20.12.139.96,20.12.136.206,20.12.136.239,20.12.139.103,20.12.137.235,20.12.139.112,20.12.139.116,20.12.139.118,52.143.247.142,52.143.247.223,52.154.168.10,52.154.168.157,52.154.168.185,52.154.168.204,20.12.139.120,20.12.139.127,20.12.139.184,20.12.139.224,20.12.137.245,20.12.139.227,20.118.48.15\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-349\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-23kylb\",\"defaultHostName\":\"functions-node-18-1u8q25.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:33.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-18-1u8q25\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "465b1778-3699-4885-8f6e-9b1415f443db" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "13d71602-656c-43ff-8d3a-a23cd0ad3485" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4001,40 +4030,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39b3efbf-a319-44e3-9531-6af687bd6231" ], + "x-ms-request-id": [ "a6ffa248-38c6-477e-94f5-d82fad972f60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "fc2ad220-ba34-40e4-ba41-9aeb46b9802f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013216Z:fc2ad220-ba34-40e4-ba41-9aeb46b9802f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/285cd4da-ae25-4fa5-a8ee-89b62db1f6c0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "0e3ea420-6858-46e2-ba4e-00317de0ba4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:0e3ea420-6858-46e2-ba4e-00317de0ba4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D7DFEA5505444FC99F958DDA53C9E50 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB22D57E27214B92A80A451BE6E974BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1212" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-18-1u8q25cbboz1ir\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"78b84753-614d-4b26-a471-25e26fecf1ee\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-18-1u8q25\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "06507978-80a5-46de-bb01-ac36d7abf4a3" ], + "x-ms-unique-id": [ "699" ], + "x-ms-client-request-id": [ "f69b8773-570f-4b76-84c2-404ef83c7eb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4046,40 +4075,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01942d0a-b056-4ad2-a338-506fd228af32" ], + "x-ms-request-id": [ "5e0453f3-9147-4fa0-b114-64df1b7db0b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "ba3067aa-9b88-4159-a71d-528e3fd85f6d" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013216Z:ba3067aa-9b88-4159-a71d-528e3fd85f6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad35979a-cc4d-4eca-957f-69e42091ff74" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "13e12375-62c2-45da-885e-803a50b1d5e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:13e12375-62c2-45da-885e-803a50b1d5e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 329E56EE702641E38AFF5DFE95ABFEBE Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D13135BCDBE442E8BAC526CE43B7986E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4061" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-23kylb/providers/Microsoft.Web/sites/Functions-Node-18-1u8q25/config/web\",\"name\":\"Functions-Node-18-1u8q25\",\"type\":\"Microsoft.Web/sites/config\",\"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|18\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "c94924c3-bde0-439f-aa36-f0e2a33dbdeb" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "0e0054e4-2c27-43a4-9653-cf06345529f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4090,42 +4120,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ACD87B3A0\"" ], + "ETag": [ "\"1DC38E50C4ACACB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc26ee90-d9f6-49e2-abb6-497ee6dc3e09" ], + "x-ms-request-id": [ "c711c3e2-9f39-493b-8d89-942c8e0d79d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "e61e74cc-3610-4fdd-9b06-6253fb010c91" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013216Z:e61e74cc-3610-4fdd-9b06-6253fb010c91" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1745d524-cd91-401a-b668-eac9c4d488fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:1745d524-cd91-401a-b668-eac9c4d488fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B4D9E6A71254C4F9D00A8133239A9CC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D49D313DE2814A6DACEDE800F5E0E0BE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:31:56.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:11.9166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "726" ], - "x-ms-client-request-id": [ "2293c9c0-25ea-4e85-88f1-f6d852b8c20e" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "a421675a-a2df-4e1e-b6a7-a71745969873" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4137,40 +4167,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f39e061-2dc6-450e-a47e-2c6564d15c72" ], + "x-ms-request-id": [ "2328ae8a-388d-4520-a3b5-7933c372e6ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "6e1e743a-4c8f-4e84-b5aa-8cbd692c6371" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013217Z:6e1e743a-4c8f-4e84-b5aa-8cbd692c6371" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1c5b91f-667a-4b6f-873a-7a35c3168eca" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "653b04c0-0268-47a6-8d59-09b3065b445e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:653b04c0-0268-47a6-8d59-09b3065b445e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 450862B21D354E45A41E8E7DD799FE69 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:16Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D803B29186E4C069E7272C80780B60F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "4bea7abe-4e2a-41eb-b31d-64a5c5c3075a" ], + "x-ms-unique-id": [ "702" ], + "x-ms-client-request-id": [ "67ba1258-7349-4ce5-baef-2d78c3b28643" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4182,40 +4212,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58b7fb60-10e8-497f-8422-3f382ef2be21" ], + "x-ms-request-id": [ "d30b075b-d683-4b80-ba6d-9e235de3f61e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "5502bfd8-f502-4867-b44b-f19911f1027b" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013217Z:5502bfd8-f502-4867-b44b-f19911f1027b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee9614fa-a945-4c33-867f-a7d15005133c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "ee81b6fa-b390-4e36-a65b-4baf92b19b7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:ee81b6fa-b390-4e36-a65b-4baf92b19b7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BACCB4C55EC645A3B014F171EFA3B0D7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77D449317A364B918F565196E0CCC72D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "3a332101-2935-431e-a5db-ef28cd02a01c" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "fd3b72d2-4b60-4a2b-a6cf-3cba2c7440e3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4227,17 +4258,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb7ecce9-4e03-4ef4-b953-9aac6b1bd64f" ], + "x-ms-request-id": [ "da4960d4-7282-4695-935b-8e98c7fa6aea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "34074743-572f-40ca-b0a8-7b633c22170a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013217Z:34074743-572f-40ca-b0a8-7b633c22170a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d80f6106-239b-4cd7-af68-3cdd808e8aaa" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "8b9d2271-28ef-4332-a5f1-d8992b8c1a11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062236Z:8b9d2271-28ef-4332-a5f1-d8992b8c1a11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2C020F931D04A14B7073C55CFF87CC7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:17Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42B4700707E94718ABF801D101716F3C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4247,19 +4279,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "f5b7b421-ca43-4bb3-b9ff-63d5582ab90a" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "a22a5280-e1bb-475a-bfd3-47108ca0c68b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4270,42 +4302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADA6AA6E0\"" ], + "ETag": [ "\"1DC38E51AAD3F20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a78ed1ad-929f-4d21-9266-b64d0d922278" ], + "x-ms-request-id": [ "66e57291-c575-49bc-a79d-c727afb5bef6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "447eb78b-34b8-491b-9ba7-536b588a59f1" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013218Z:447eb78b-34b8-491b-9ba7-536b588a59f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b15a49d4-9334-4ed4-81ac-7334b7ba3e0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:b15a49d4-9334-4ed4-81ac-7334b7ba3e0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68EEC80AE2034EB596DF8597AC0F7AB2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A847C3E57BBB48D58A31B4C7CE651FE1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:36Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8575" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:17.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:36.05\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "0b4ec5b9-d99a-4145-9662-e6191ccf0c94" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "aaef66c6-547a-46a7-877f-e4b23ac0235a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4317,40 +4349,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ca1dc72-fc3f-41b2-9c1a-9d0cd6c98626" ], + "x-ms-request-id": [ "133b29a9-6476-49c6-ac74-14dc0706cc9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "87d7d192-a991-4d99-89f2-3035957f5082" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013219Z:87d7d192-a991-4d99-89f2-3035957f5082" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/587a2cf0-b5b1-4ca6-be55-c90a8621c01c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "135dfe10-70fe-4cef-afc8-5a9feef36893" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:135dfe10-70fe-4cef-afc8-5a9feef36893" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B819F3C7440F4621A33A7FF7483A5F94 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:18Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D642CD555F9647199D7DFA5AF8C7B8FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "dab837b1-5e28-4a72-b1f9-2e5c7a69683d" ], + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "76227a9b-7748-467b-99e9-cb9ddeb3d53a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4362,40 +4394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf1a11b6-acd2-4eb5-a8fe-368cc7594c23" ], + "x-ms-request-id": [ "dffa939f-dca0-4fc4-a20e-0320c3c2c123" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "6aef9f20-c865-4d3e-986d-c8ae9f311951" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013219Z:6aef9f20-c865-4d3e-986d-c8ae9f311951" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b63c5cdc-9d86-4d8d-9782-7a8ef2884171" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2fa2106c-a710-4f34-ac8e-f565e4b5cd0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:2fa2106c-a710-4f34-ac8e-f565e4b5cd0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F044A6D6354B425C8C844654C6EE0C5A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EC7E9E2929749C789F931B93A1B434E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "93f69ed4-5a8d-4ed1-9561-cb05dc5aefab" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "4c6c6915-6c4a-46d6-b2ff-d42cf7a4937f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4406,42 +4439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADA6AA6E0\"" ], + "ETag": [ "\"1DC38E51AAD3F20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d32cb4e7-ebbc-4551-9f67-4bfda060b429" ], + "x-ms-request-id": [ "67544680-ab65-4f75-ac60-ebdc5c29cf43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "014e5944-3277-430b-91f0-2a2d5355406e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013219Z:014e5944-3277-430b-91f0-2a2d5355406e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9219996a-28e9-4168-9ec9-ccf5684ebed1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:9219996a-28e9-4168-9ec9-ccf5684ebed1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE7E9F8CBA8144A4AECFFF8A19AEC00A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C53EFAAD306E40CF88B2C252A7110FDD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8575" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:17.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:36.05\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "733" ], - "x-ms-client-request-id": [ "c931f2a5-1477-46bf-8f85-40bc4ee8282f" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "a7979597-888a-4fc9-ac42-e2b24e1c3d16" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4453,40 +4486,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fef353f4-b561-4d3e-bac8-3d387beecb81" ], + "x-ms-request-id": [ "0cc0509e-71d0-48db-9b9a-9a512c4e0cf2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], - "x-ms-correlation-request-id": [ "3ac5aa55-62ed-450c-b98a-9b6b26d3f669" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013220Z:3ac5aa55-62ed-450c-b98a-9b6b26d3f669" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7442686e-6552-478e-911a-434d84d7f8df" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "796e0bbf-7169-460b-bc10-9d74dc5a555f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:796e0bbf-7169-460b-bc10-9d74dc5a555f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6886C191EA3B494397828D228FCF2D17 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:19Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B104166B39F2497498293592B08A9DC8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "734" ], - "x-ms-client-request-id": [ "181e947b-ded2-4027-91cc-6d68cddb8797" ], + "x-ms-unique-id": [ "709" ], + "x-ms-client-request-id": [ "20bc30c6-1622-413f-8606-fdda742878e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4498,40 +4531,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71e0808b-c11a-4ef1-a43c-9f677d8a047b" ], + "x-ms-request-id": [ "ecc9f30c-3e0b-4721-a500-e6b55ccb833a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "85a9460d-da7c-44a7-8f0a-82f7cf5af4a8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013220Z:85a9460d-da7c-44a7-8f0a-82f7cf5af4a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0fd50e6e-8da1-4a32-b49c-f2e98a42742a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "c3487ccc-a615-49d8-af10-abfe214f6a58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:c3487ccc-a615-49d8-af10-abfe214f6a58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18BC6B936B784F299D6ACF364DF788AC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 142D6CCC4450408499A462364F1E0299 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "a4c2249f-798f-4ec3-8f0f-eae3f1bc6590" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "8872209c-e993-40b5-a479-a97a5a4de103" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4542,19 +4576,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADC23A180\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f0c971c-73a3-4ac6-ba6e-ca9bdff03cbd" ], + "x-ms-request-id": [ "aa3f2f5a-00c1-4880-a83b-b809a391b7ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "020e4f8d-d077-4066-bea0-11c0f0161da0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013221Z:020e4f8d-d077-4066-bea0-11c0f0161da0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2fa96aa-e43b-4397-aca4-77091bdeb713" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "46c98063-14d8-4194-903c-df99144e8f29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:46c98063-14d8-4194-903c-df99144e8f29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA1DCCE27E7C4EABA1222B3980D2359D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:20Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14FE3756444C48DBB8E4722DA099D755 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4564,19 +4598,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "076deb29-cb39-4a36-8a62-8f6e04440440" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "7c998c26-85dd-4d73-b251-42b6e87db889" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4587,42 +4621,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADC23A180\"" ], + "ETag": [ "\"1DC38E51C653555\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "862a803c-0e58-4b9f-95a4-f178df52cf50" ], + "x-ms-request-id": [ "07cdc6d6-f4e6-4990-b28d-13f965ca4a44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0446a6e7-c5b8-43a8-8481-0c3227e67603" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013221Z:0446a6e7-c5b8-43a8-8481-0c3227e67603" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2572d49c-cacd-445b-aef2-bb897bc480a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:2572d49c-cacd-445b-aef2-bb897bc480a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9523827B62F64858BA66555C6BC99B68 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61AADC1FC47F4BF88E3AA5382DF99A3C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:20.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:38.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "737" ], - "x-ms-client-request-id": [ "a63ba506-04e4-473d-a95c-1ae69fa27220" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "bd161790-1eb3-41c2-ad8a-d044cb0b55e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4634,40 +4668,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ead7e079-50d6-4d82-8222-8030c45a21c2" ], + "x-ms-request-id": [ "c77c037f-1b7d-46b2-bb4b-955a7f6b1758" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "dfbac95d-c261-4743-8244-d4b42bfb7e8e" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013221Z:dfbac95d-c261-4743-8244-d4b42bfb7e8e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f40639d5-1ecd-4d60-b1ce-ca60f4685eaf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8d80fe3d-ec5f-4d22-a587-cc2149b008a4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:8d80fe3d-ec5f-4d22-a587-cc2149b008a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F755FC05F99448629C19E5976DD47853 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CCD00984A684C6DACE7CA6D97F437C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "738" ], - "x-ms-client-request-id": [ "6d43c5dd-e99f-4f61-b3b8-63d7087b8988" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "420b45a0-dd3c-4857-8c45-cd3b39fd64c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4679,40 +4713,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e67ce6e-e952-42f5-af73-4ef08f84bf1f" ], + "x-ms-request-id": [ "712f9135-8d57-4ac7-9e92-b9cd17b64386" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "c45d455e-02d9-4bb4-b943-7d0255644991" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013221Z:c45d455e-02d9-4bb4-b943-7d0255644991" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8278f926-0af3-4764-9052-9a70c071f360" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1ef3c375-4a08-481a-a401-3e8374625d59" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:1ef3c375-4a08-481a-a401-3e8374625d59" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD61CD0C095C4603BED886E1C2F48D3D Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DD1ECE2F51443ADBBE99164A5123AAC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "739" ], - "x-ms-client-request-id": [ "4560938b-3e11-40f1-b8dc-8d65a27992fc" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "36e2152d-83f0-4d16-b917-334dfaeee49f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4723,42 +4758,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADC23A180\"" ], + "ETag": [ "\"1DC38E51C653555\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c75a9cfd-103a-422a-9cc1-ef8826134110" ], + "x-ms-request-id": [ "62d87233-0d54-4138-92aa-e8dd03642772" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "97c49803-4449-478e-9b3a-c53aace6e2e0" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013222Z:97c49803-4449-478e-9b3a-c53aace6e2e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dd36bd0f-371f-413c-9b41-b60c987779b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:dd36bd0f-371f-413c-9b41-b60c987779b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE5569479AB24A4DBC52E00CEBDC2F6B Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:21Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D385CBD5643C417192B5FE68224EAD42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7208" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:20.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:38.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "02bad8d6-62ac-4119-9790-1b1b33c25599" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "25861216-52d8-46f3-b3f8-4b7eceafb076" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4770,40 +4805,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b43dc5c-bc65-477f-a3c7-a5557a66ff3b" ], + "x-ms-request-id": [ "cd49a0fa-a60b-474a-b2a7-df120048fce0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "e8aaa59d-0379-4b0d-865c-f8dd76ad630a" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013222Z:e8aaa59d-0379-4b0d-865c-f8dd76ad630a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83aeeea4-b641-47ca-b951-022a4d28fc96" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d271911e-713f-4777-8138-9f430c2ef7f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:d271911e-713f-4777-8138-9f430c2ef7f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A87CEF1E62EC4C24AE0FCA20742A83DC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13C6C5F5E921427A85EA76DE9B562F70 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "98091f9d-b8f7-4ba9-90aa-3ce377b3630d" ], + "x-ms-unique-id": [ "716" ], + "x-ms-client-request-id": [ "c28ad6ac-2eaf-494b-9f02-81975c55d9ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4815,40 +4850,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46be2082-a68a-4184-887f-c3f77cd3cb6d" ], + "x-ms-request-id": [ "cf7041d2-c70b-42f3-b21e-9135c38a06d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "a91914d5-19ad-436f-9128-f80620904df9" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013222Z:a91914d5-19ad-436f-9128-f80620904df9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83a89872-f4a6-44ec-bc58-b138780c6538" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6dadb6e9-29af-48e1-a34b-7aeace29288d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:6dadb6e9-29af-48e1-a34b-7aeace29288d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7E96C533CC94B0BB272E940058493EA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A3FA4EE73794A23B9E938D6EACDA2EF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "742" ], - "x-ms-client-request-id": [ "9681efe6-376b-47e9-b049-ae555b2bac15" ], + "x-ms-unique-id": [ "717" ], + "x-ms-client-request-id": [ "adc42435-b027-4ab7-b8e3-76014f6acc5e" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4859,19 +4895,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADD68226B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d28065b0-b034-4ecd-a18d-a519c90c8408" ], + "x-ms-request-id": [ "fb94fc4c-fb62-4b7e-b3fd-b4c520590ba6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "a9194985-a0ad-4cba-8955-5f126d0b440f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013223Z:a9194985-a0ad-4cba-8955-5f126d0b440f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b73ef94-fe61-487e-9645-b6189a2058fb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "393e1e0b-6bb9-4d2d-8ca0-c938eae6619b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:393e1e0b-6bb9-4d2d-8ca0-c938eae6619b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D739F60D108F40E19129AE44A732C781 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:22Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B657E594FBC14F90AEFC733DA7BE4753 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4881,19 +4917,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "743" ], - "x-ms-client-request-id": [ "17f130f7-3ef0-4c1e-a54d-3572f1bb6fd3" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "7482a1d4-f9c1-46a9-845e-d4216a276b91" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4904,42 +4940,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADD68226B\"" ], + "ETag": [ "\"1DC38E51DC83AC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "92bd8b82-8ef4-4612-b526-c5392b956dc1" ], + "x-ms-request-id": [ "19385d41-2f17-4a30-862c-6119718c3779" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "2af03d5d-426b-4016-b287-043026c25001" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013223Z:2af03d5d-426b-4016-b287-043026c25001" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cc35f1f6-eb9f-4323-8b8e-74a76a054427" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:cc35f1f6-eb9f-4323-8b8e-74a76a054427" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3805FFC251B5442698CECBB101749AE3 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC2A9C4E78034C3B82469C7319A0717B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7213" ], + "Content-Length": [ "8575" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-9uj4si\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-309.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-kylbxe-CentralUSwebspace/sites/Functions-DotNet-6-9uj4si\",\"repositorySiteName\":\"Functions-DotNet-6-9uj4si\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"functions-dotnet-6-9uj4si.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-9uj4si.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-6-9uj4si.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-kylbxe/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:22.8866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-6-9uj4si\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.40.8\",\"possibleInboundIpAddresses\":\"20.118.40.8\",\"ftpUsername\":\"Functions-DotNet-6-9uj4si\\\\$Functions-DotNet-6-9uj4si\",\"ftpsHostName\":\"ftps://waws-prod-dm1-309.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.118.40.8\",\"possibleOutboundIpAddresses\":\"20.221.33.24,20.221.33.29,20.221.33.32,20.221.33.36,20.221.33.67,20.221.33.72,20.221.33.89,20.221.33.103,20.221.33.116,20.221.33.157,20.221.33.169,20.221.33.171,20.221.33.172,20.221.33.196,20.221.33.199,20.221.33.203,20.221.33.214,20.221.33.224,20.221.33.236,20.221.33.244,20.221.33.254,20.221.34.10,20.221.34.38,20.112.192.27,20.221.40.14,20.221.40.37,20.221.40.51,20.221.40.64,20.221.40.85,20.221.40.91,20.118.40.8\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-309\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-kylbxe\",\"defaultHostName\":\"functions-dotnet-6-9uj4si.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:41.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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-6-9uj4si\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "744" ], - "x-ms-client-request-id": [ "d043d1c5-264e-40bb-a45a-0cf3551462f8" ], + "x-ms-unique-id": [ "719" ], + "x-ms-client-request-id": [ "15c75d2d-b2e3-47e0-b303-31a0930200c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4951,40 +4987,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "365e90c5-770f-49dd-a583-de4d9ebd94e9" ], + "x-ms-request-id": [ "bda8514d-43c8-4e40-acfe-e72ac0f25749" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "7ecb28e7-9e20-4ddd-ab5b-763865fb0df5" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013223Z:7ecb28e7-9e20-4ddd-ab5b-763865fb0df5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd60d742-4c69-4082-b2ea-7f931342456f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "3ebcc91b-71f3-4054-8261-c1fa671b8750" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:3ebcc91b-71f3-4054-8261-c1fa671b8750" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1438CBE39DC4AC7B9EF42A5C1350E09 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4EEAC51530242ADAA037B0C4A0D6579 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1179" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage2mn;AccountKey=l/3OSkANDNFq2he5k2iaKy+m1nDPUVsU5LR7Ef9k0PwcrSex/xqr3zhV8agaVsroqgo4STQHYwxL+AStRpmF8w==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-9uj4sil4werwqi\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a2f5facb-093f-44b6-9e00-911b1fbd70e9\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-9uj4si\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "745" ], - "x-ms-client-request-id": [ "aa35c776-27b0-408b-a2d0-1de476ba711d" ], + "x-ms-unique-id": [ "720" ], + "x-ms-client-request-id": [ "714dea56-1541-46c0-95be-dc5a84318dc7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4996,40 +5032,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "026b6eda-d5b7-4abb-a2e7-c192da7a5f99" ], + "x-ms-request-id": [ "a65124b1-e13d-48df-97e8-c6f30fbaa14f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "bef4c3b1-e65c-4268-9a11-242e8bec0d55" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013223Z:bef4c3b1-e65c-4268-9a11-242e8bec0d55" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2620dd4-8eca-4f63-800f-0728f9a80bc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "403d7630-e11d-497d-b419-7b36b135e2c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:403d7630-e11d-497d-b419-7b36b135e2c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2DCFD7E5F1244B08BD0D10C6AED3A47 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:23Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E087A2190F043168A5EB80266870676 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4063" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-kylbxe/providers/Microsoft.Web/sites/Functions-DotNet-6-9uj4si/config/web\",\"name\":\"Functions-DotNet-6-9uj4si\",\"type\":\"Microsoft.Web/sites/config\",\"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,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "746" ], - "x-ms-client-request-id": [ "e0e4aebf-036d-4489-9a65-ba07c6445e47" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "70157870-008d-431d-94d6-0f0711eb25ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5040,42 +5077,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AD04EC2E0\"" ], + "ETag": [ "\"1DC38E50E5F52EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94337d2b-fc82-4df3-b55f-2c5c635a1a28" ], + "x-ms-request-id": [ "bb81dfd2-0b8c-466f-ad15-33849c5acfb0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "6a35e671-9aee-4398-864c-6a4c24d03320" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013224Z:6a35e671-9aee-4398-864c-6a4c24d03320" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "31783a2d-826b-465c-9485-a36e3dba304b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:31783a2d-826b-465c-9485-a36e3dba304b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E1FD4A6BCDF4792AF533417CB433E67 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E506579E2394435BC9B6713080D92CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7142" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:00.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:15.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "747" ], - "x-ms-client-request-id": [ "01dd4c1d-8638-48f6-a385-051ac137db1a" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "1cbccba0-d1ad-4083-acbd-efa72e969735" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5087,40 +5124,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a8ba918-5d52-4c0a-95eb-d75c9d851db9" ], + "x-ms-request-id": [ "1d81c2f7-128b-498d-b4da-baefb7053fb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "3bf6fb89-bd53-4a4d-b350-9155f436689c" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013224Z:3bf6fb89-bd53-4a4d-b350-9155f436689c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/263ecf40-1e4b-4310-8ed4-9fc466a0ac1a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "88e093c2-7772-406a-bb6f-8363d61b0b34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:88e093c2-7772-406a-bb6f-8363d61b0b34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 730552B299254A15B41419B191E84473 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45CCC5B885AA4FF3A05A2B658329F06F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "748" ], - "x-ms-client-request-id": [ "2bea9b3b-1fdb-43b0-9fe5-e99f5b3ab4b4" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "7ac20833-b35e-4513-bd05-13f3a196e2a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5132,40 +5169,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59e78771-bc3f-43b8-b1a6-1db14e22be3b" ], + "x-ms-request-id": [ "495e22a3-35d3-46d6-aa00-9c2a7958ce2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "e19c5b72-871f-4872-9ec1-d1c3bb3999db" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013224Z:e19c5b72-871f-4872-9ec1-d1c3bb3999db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4896dcb3-6b91-4deb-8940-29192fea7ba2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "16d446ac-f70f-4b86-a84c-69eb0f449c27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:16d446ac-f70f-4b86-a84c-69eb0f449c27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC669DBD4E034B339F1B52D3025EEC1E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7777F6F4114C48708A84856130795016 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "749" ], - "x-ms-client-request-id": [ "211f0121-2546-4a9f-8230-413342768d42" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "f9fff9e8-8b9b-4391-b557-a28905cc1d7a" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5177,17 +5215,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f93a6bb3-efec-4364-ab6e-a55202525e36" ], + "x-ms-request-id": [ "6b893cca-95b6-40a3-b523-94a7098aa330" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "30041361-93a9-4087-a4bb-5036484dd6b6" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013225Z:30041361-93a9-4087-a4bb-5036484dd6b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feb7390c-ab4a-41f0-bc6d-5e600c5c88b8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "2a9e050b-b7ad-4215-ae66-0782114e2895" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062243Z:2a9e050b-b7ad-4215-ae66-0782114e2895" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0686202AF9C42248D5CF2D83F670721 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:24Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB6EED499CC841E8BE14F25ED18CD6AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5197,19 +5236,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "750" ], - "x-ms-client-request-id": [ "bab43113-7100-4477-b3e1-8125e17e3be2" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "87f84b5b-db62-4384-a2f7-472fcfb4318c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5220,42 +5259,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADEBEF2D5\"" ], + "ETag": [ "\"1DC38E51EF34D40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "559cbfa7-c7a2-469a-8fc6-a3d706f7a28c" ], + "x-ms-request-id": [ "3c6382b8-e086-48cb-a8db-70ef648465f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "744d68e9-c969-4573-8a7b-270275aa23eb" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013225Z:744d68e9-c969-4573-8a7b-270275aa23eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ceaca353-3da5-4147-b5f6-0fe1a03e22ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062243Z:ceaca353-3da5-4147-b5f6-0fe1a03e22ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06D11613A18D42EF8C31E608840A0D78 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62B1B8EE1E7A49EDBD53ADBC583D92D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:43Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:25.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:43.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "751" ], - "x-ms-client-request-id": [ "197535d7-e5aa-4c5d-bbb3-5f582ad1e8d4" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "647df6d8-abc4-4e54-b8fa-1651fb9f7516" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5267,40 +5306,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d9e8eba-9597-4c8d-bf3d-9c3114294303" ], + "x-ms-request-id": [ "a51ca6c6-8419-4792-a887-899c8522da83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "9405963b-0227-4201-896a-823548a1c046" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013225Z:9405963b-0227-4201-896a-823548a1c046" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d09987a7-c4be-47c1-be41-c249c5ba56fa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5c935d9a-9a0b-43a7-b6e0-6814dc700822" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:5c935d9a-9a0b-43a7-b6e0-6814dc700822" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D40E09038CEB4937AC81617AD1392FC8 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0C649B3D53D41439556A3150E0CED04 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "752" ], - "x-ms-client-request-id": [ "4227bfc1-cbf6-4c7e-be54-52fcc2feae8f" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "acac4779-3c59-495e-a0df-96f31af9750d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5312,40 +5351,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10c2d9d6-1455-41d9-a96f-1bfe337388fb" ], + "x-ms-request-id": [ "5d344d36-f9e8-4de4-8950-10ad55a934b7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "162ade8f-e8be-4bb8-a6f0-13e1991dd59f" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013225Z:162ade8f-e8be-4bb8-a6f0-13e1991dd59f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86c2814d-8fdf-451f-9202-39c501100e71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2feb026a-9f7e-44c0-8b5c-486c27702297" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:2feb026a-9f7e-44c0-8b5c-486c27702297" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB2A883072294B10862D574925EDA6AF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:25Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87D80C0707474E77B1FB6566469FBA2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "753" ], - "x-ms-client-request-id": [ "b9969b72-7ef3-4ee9-a1da-dd73fa0e4cfa" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "f518f77e-e118-4768-86e8-8ee654059c0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5356,42 +5396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADEBEF2D5\"" ], + "ETag": [ "\"1DC38E51EF34D40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0dd1bbb-4fb8-445b-a596-d7602ff1227b" ], + "x-ms-request-id": [ "cecb98fa-2e0b-428e-891b-54c6809685be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "5ab2a1c4-2866-4a99-8a37-449d61e0e454" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013226Z:5ab2a1c4-2866-4a99-8a37-449d61e0e454" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0888610f-658c-491a-9da8-a0a6c17fa1a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:0888610f-658c-491a-9da8-a0a6c17fa1a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 891CD22896CC43DF91C3C0A136FFB476 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B4F5B23828841C5A610660A331A6CE3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:25.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:43.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "754" ], - "x-ms-client-request-id": [ "fbcd5078-0c70-4d29-bb04-df58eb10d3d4" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "4e6b3594-7b19-41b3-86e4-65976dfb8f1d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5403,40 +5443,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "733465f3-93c1-44f2-ae2f-3ebf4a9b6c0c" ], + "x-ms-request-id": [ "44f8a11c-6859-4822-a48e-c4999818a065" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], - "x-ms-correlation-request-id": [ "b7c1b0ca-a600-4249-a199-d5fe3f7d14d2" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013226Z:b7c1b0ca-a600-4249-a199-d5fe3f7d14d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/773dd879-fc73-4a70-90d8-3472d876f731" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "fb2d0eb7-0032-4633-85b5-7ea550f88f87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:fb2d0eb7-0032-4633-85b5-7ea550f88f87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7263A0E5ED854D8AA71C286AA9DD34F9 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6C02240CC5A4847B290692615D102DD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "755" ], - "x-ms-client-request-id": [ "0fbf9155-f080-44bb-b304-07810444ad2f" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "2a35ab92-736a-467d-992e-baa552dce994" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5448,40 +5488,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50ad19ee-099b-4814-852e-046fd909b2c4" ], + "x-ms-request-id": [ "32dbce4a-db55-4dbe-b0a5-beb6190e24f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "9041b950-037d-4b3a-885d-5037a45f2d89" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013226Z:9041b950-037d-4b3a-885d-5037a45f2d89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12332f3a-1ca2-4d0b-9e8b-448efa700b5c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1696a2c3-438b-487a-ab30-508fbaa8d7bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:1696a2c3-438b-487a-ab30-508fbaa8d7bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6125489C4444B6FBC74BBFE6DACF081 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F716089E5EAC4E448E6049FE22EDB1C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "756" ], - "x-ms-client-request-id": [ "1aa177e8-1b0f-4829-afaf-cd99a663f1bd" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "12fa660f-d243-4477-80b2-713421f48a67" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5492,19 +5533,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADFD8380B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f9f69b4-5648-426b-bff0-17edc4296f08" ], + "x-ms-request-id": [ "73012e92-76f8-4968-bc69-a2a294dfe725" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "b36542a5-9bb3-400f-b516-46d6fe06b7fa" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013227Z:b36542a5-9bb3-400f-b516-46d6fe06b7fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8047dbe6-9cb2-4f33-b368-612a2f00f17f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "412d4952-b9ba-48a5-99a3-5e4764c9a7f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:412d4952-b9ba-48a5-99a3-5e4764c9a7f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD416F11F7264337A21EDAB66D8BE5FF Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:26Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B80CA01B09024C4D97F2C33E62D51F0D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5514,19 +5555,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "757" ], - "x-ms-client-request-id": [ "3bfb9266-9b0e-4d2c-a385-8a94e7398e4a" ], + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "1d3dbaf8-550e-4217-b02e-b98d713e5bcd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5537,42 +5578,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADFD8380B\"" ], + "ETag": [ "\"1DC38E52074D72B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3adb0b8a-d33c-40a9-9129-c773f7f13ea6" ], + "x-ms-request-id": [ "3da46b70-b051-4a8a-aad6-267789f84e0f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "d670f703-2f72-4b2a-9b5b-8e83e467d143" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013227Z:d670f703-2f72-4b2a-9b5b-8e83e467d143" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9e66d5f7-5c61-4356-97c1-0cf3487cf41f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:9e66d5f7-5c61-4356-97c1-0cf3487cf41f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4334221A35FB47A1BC7126D1030F84B4 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 714BF2B4C80D4D0CA55A0BA4743E6490 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:26.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:45.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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "758" ], - "x-ms-client-request-id": [ "6d9302fd-1cd0-4c17-93b4-63d3533261f8" ], + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "eb093b53-5c1e-43db-8037-a4f48f827b83" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5584,40 +5625,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5aa9a5f-1f93-4d60-9340-da5ffeac678f" ], + "x-ms-request-id": [ "9a869188-f334-4e58-951d-f7ea3b9cf1a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], - "x-ms-correlation-request-id": [ "5e2d99d1-6606-4321-83a8-4a9516600641" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013227Z:5e2d99d1-6606-4321-83a8-4a9516600641" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e089f891-aaa8-43f0-b389-f8dd81d74250" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "17676ced-cf3e-4e2e-9b8f-81d23d8d781a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:17676ced-cf3e-4e2e-9b8f-81d23d8d781a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A5F3655055B42B486A4A6A0DA6258BC Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A55BAB37477423AB9B0EC2E622B59EF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "759" ], - "x-ms-client-request-id": [ "ea8f38bf-cc6f-4c74-a069-8d184e152ba6" ], + "x-ms-unique-id": [ "734" ], + "x-ms-client-request-id": [ "036f2ded-5357-46b6-941b-78b43bcf0cf8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5629,40 +5670,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d2a1cad7-57b5-4431-88e9-b2b34f4f208e" ], + "x-ms-request-id": [ "b3544d7a-51e5-4085-a0da-5e0ad2952fe5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "b6e3b08d-4be7-4be2-bbd8-92554747d058" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013227Z:b6e3b08d-4be7-4be2-bbd8-92554747d058" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c90ada4-a8b2-455e-8529-3087510dbdfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "77821385-ab99-441d-854d-3798acbc3245" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:77821385-ab99-441d-854d-3798acbc3245" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D180FCBDA374F0C9F959862C8F83EB2 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DC9A31ECB5D4A34AEDEBC00448B77E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "760" ], - "x-ms-client-request-id": [ "dee37a0a-3f4b-4893-b662-e88ccb776e36" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "bc279508-e78b-412a-a51f-2800217509a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5673,42 +5715,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37ADFD8380B\"" ], + "ETag": [ "\"1DC38E52074D72B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4201632-7381-4d8a-bf3b-45051d53768f" ], + "x-ms-request-id": [ "e3cee528-863e-4f99-bfeb-5f11f0bc2995" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "8521a23a-59e6-4a0c-aa7f-639518ad2904" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013228Z:8521a23a-59e6-4a0c-aa7f-639518ad2904" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0fa8b64e-f4b8-41b9-95e8-050b75a74875" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:0fa8b64e-f4b8-41b9-95e8-050b75a74875" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F016E787D9424EA5A4EF913180CB15EA Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:27Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93E0BE9FA19D409296CD23B64C067F5C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:26.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:45.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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "761" ], - "x-ms-client-request-id": [ "6d7895ce-ae1d-49d9-a41f-ece6babad2dc" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "57c15b71-9910-4d01-b611-3ff112e307cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5720,40 +5762,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c22b12f-0fb5-4d97-8478-dc8b47317a82" ], + "x-ms-request-id": [ "564daf38-6252-4007-a3a5-74dcab966af0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "28a83fc3-bc54-46d9-9434-1b7e42e68564" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013228Z:28a83fc3-bc54-46d9-9434-1b7e42e68564" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ef7059b-b50d-4b66-8b86-c992fedc1e4a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "30c2bd28-9216-44cb-b921-c1806bee90b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:30c2bd28-9216-44cb-b921-c1806bee90b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D47389BE44F444ECA0ED8743ACC1E78E Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDD966988D084B8493D3D999050D892F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "762" ], - "x-ms-client-request-id": [ "499a9ae4-a67f-472c-9f53-7ae51098024f" ], + "x-ms-unique-id": [ "737" ], + "x-ms-client-request-id": [ "0e8c3cea-2d12-4abb-ba8b-0e09fdfc68ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5765,40 +5807,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42bd2363-c131-4c0c-aa88-598195a5f7cc" ], + "x-ms-request-id": [ "71dda733-4910-4c88-831c-e75005619dbe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "f1799b82-1def-4cc9-8779-886becb9a6ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013228Z:f1799b82-1def-4cc9-8779-886becb9a6ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1783c6af-6ec9-4492-8031-b4b9e13091be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d9a240b8-b9f4-4573-96c8-857f7ffc5dd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:d9a240b8-b9f4-4573-96c8-857f7ffc5dd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B31923304F74659BB6E5D7F2F576BBB Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFFB08B2C1BF46F299ACF76B07E6E2AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "763" ], - "x-ms-client-request-id": [ "b16b955c-d700-4119-865d-7acd444228c5" ], + "x-ms-unique-id": [ "738" ], + "x-ms-client-request-id": [ "4cdad3b9-38b8-4590-96e0-6ca60d0294b8" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5809,19 +5852,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AE102C855\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c6f5210b-cb9e-4d9c-9a71-6d8c1aea25c6" ], + "x-ms-request-id": [ "4861dc87-fe9e-42c3-b2b8-10ca847ada5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "d3143424-c928-49ec-8740-2005b9cee6ca" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013229Z:d3143424-c928-49ec-8740-2005b9cee6ca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96ef8a2a-95f9-4edd-b4ee-ecb1371ac589" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "b3f955f7-bd04-43ed-8564-9585a08fab85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:b3f955f7-bd04-43ed-8564-9585a08fab85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A8794C4FE824C2FB42D8BC76377A8E7 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:28Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0218E03075B640CEBDB27EC9209CC07D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5831,19 +5874,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "764" ], - "x-ms-client-request-id": [ "e2c0cec7-aa63-4098-abb9-619359a25b81" ], + "x-ms-unique-id": [ "739" ], + "x-ms-client-request-id": [ "7035dae3-cd99-4bfa-b080-7ce5dd806e4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5854,42 +5897,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DAC37AE102C855\"" ], + "ETag": [ "\"1DC38E521B7D175\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2800ac00-9c44-4960-88c7-fd9479f280be" ], + "x-ms-request-id": [ "37a99bac-6a7f-4ccc-b971-bac024db9fe2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "6d128a83-2a7d-4828-9fad-b82b749b0eb8" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013229Z:6d128a83-2a7d-4828-9fad-b82b749b0eb8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0913f108-81f6-49f1-b8de-c520ce8045f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:0913f108-81f6-49f1-b8de-c520ce8045f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13B8F8E5672747A889EC42B10F8961B1 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACDC3283605240BA9DC3E80901419206 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7147" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-bj26n8\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-h8frn2-CentralUSwebspace-Linux/sites/Functions-Python-310-bj26n8\",\"repositorySiteName\":\"Functions-Python-310-bj26n8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-bj26n8.azurewebsites.net\",\"functions-python-310-bj26n8.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-bj26n8.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-310-bj26n8.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-h8frn2/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2024-06-21T01:32:28.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-310-bj26n8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":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\",\"ftpUsername\":\"Functions-Python-310-bj26n8\\\\$Functions-Python-310-bj26n8\",\"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\",\"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-h8frn2\",\"defaultHostName\":\"functions-python-310-bj26n8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"defaultHostNameScope\":\"Global\",\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:47.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-310-bj26n8\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "765" ], - "x-ms-client-request-id": [ "a4c3f4ee-98aa-4899-af1f-88e89208635e" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "a2e61a5f-73c9-4d88-aee4-edac65fdbd81" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5901,40 +5944,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98d9babc-5f3d-40cf-bc91-6e73eadd86c6" ], + "x-ms-request-id": [ "0a53f0f6-2c68-4f0b-aa1c-087e471c1732" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-correlation-request-id": [ "f9b67226-0212-428a-928d-7d57d59785a7" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013229Z:f9b67226-0212-428a-928d-7d57d59785a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7057387b-e47b-4fb9-b4b5-dda25b1c4a7d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b1b032e3-b79e-4e05-8b97-f304ae5c47fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:b1b032e3-b79e-4e05-8b97-f304ae5c47fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD64A91116C547C7B2B8A3B5F2AA4B7A Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 533C5E638C134B04BBA5370D19BEB423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1232" ], + "Content-Length": [ "1224" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/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=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageums;AccountKey=ePuLdfhnj2T2l6dOoG2tRjtPUQ/CDBId4k8a9UPKm1sFMyk9ezUF5cO2l6o8jdZhXfofKIQooI+S+ASt1S50ZA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-bj26n8u0nqpma1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"2eaef2e0-6acb-4b79-b771-8312078be897\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-bj26n8\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "766" ], - "x-ms-client-request-id": [ "016a6cd6-c6b8-4287-bcdb-53929dd6f0dc" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "143e6539-9a05-4d0a-94cd-e7a9cb787400" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.4.2", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5946,24 +5989,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "defc0517-9992-4153-bce2-2ae319a332f4" ], + "x-ms-request-id": [ "deb4d390-6fa1-4f56-aa54-3bc5ae9c35a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-throttling-version": [ "v1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "3d88f86b-bca0-453f-b7a7-3abd98c205ea" ], - "x-ms-routing-request-id": [ "WESTUS2:20240621T013230Z:3d88f86b-bca0-453f-b7a7-3abd98c205ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b44af3b-ad82-4bc9-abf2-a2ee39fc42dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "300668a9-6a34-49e6-9b45-63a3c41c1430" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:300668a9-6a34-49e6-9b45-63a3c41c1430" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5B5B8D506A24F2987C5B620E43A5451 Ref B: CO6AA3150217039 Ref C: 2024-06-21T01:32:29Z" ], - "Date": [ "Fri, 21 Jun 2024 01:32:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D152571734B482D9D4AA105DB864E57 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], + "Date": [ "Thu, 09 Oct 2025 06:22:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4077" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-h8frn2/providers/Microsoft.Web/sites/Functions-Python-310-bj26n8/config/web\",\"name\":\"Functions-Python-310-bj26n8\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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\":0,\"winAuthTenantState\":0,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"supportedTlsCipherSuites\":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}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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 7140dc4882a9..352c7acf25b7 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,89 +1,97 @@ { - "functionNameDotNetIsolated": "Functions-DotNet-Isolated9mgi8jlqpw", - "functionAppTestPlanName": "Functions-MyTestPlan1-jxe6kb3vil", + "functionNamePython": "Functions-Python-jcai4tloxm", + "functionNamePowerShell": "Functions-PowerShellTest-8l0a19iyrf", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-fj26xp", + "storageAccountLinux": "functionslinuxstorageer3", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-n8vg16", "servicePlansToCreate": [ { + "MaximumWorkerCount": 10, "WorkerType": "Windows", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", - "Location": "central us", + "MinimumWorkerCount": 1, + "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", "Sku": "EP1", - "Name": "Functions-Windows-Premium-vesazn", - "MaximumWorkerCount": 10, - "MinimumWorkerCount": 1 + "Name": "Functions-Windows-Premium-fj26xp", + "Location": "central us" }, { + "MaximumWorkerCount": 10, "WorkerType": "Linux", - "ResourceGroupName": "Functions-Test-Linux-Premium-23kylb", - "Location": "central us", + "MinimumWorkerCount": 1, + "ResourceGroupName": "Functions-Test-Linux-Premium-xa1y0o", "Sku": "EP1", - "Name": "Functions-Linux-Premium-wdx4cl", - "MaximumWorkerCount": 10, - "MinimumWorkerCount": 1 + "Name": "Functions-Linux-Premium-g2ifkz", + "Location": "central us" } ], - "functionNameDotNet": "Functions-DotNet-fzbnp5j12m", - "location": "central us", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-wdx4cl", - "storageAccountWindows": "functionswinstorage2mn", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "storageAccountLinux": "functionslinuxstorageums", - "functionNameTestApp": "Functions-TestAppName-o7atemdn6x", - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-kylbxe", - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-h8frn2", - "functionAppPlanName": "Functions-MyPlan-1suocjtin7", - "functionNameJava": "Functions-Java-k0vbul5y8x", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-5f2nspxwh0", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-mj4vdfk5w1", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-w41plh08gr", + "functionNameNode": "Functions-Node-5ys83coe4k", + "functionNameContainer": "Functions-CustomImage-6qbcpwifmx", + "functionAppTestPlanName": "Functions-MyTestPlan1-nxw8ub1gsy", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-2rjs9k", + "functionAppPlanName": "Functions-MyPlan-63e1nwqpyr", + "functionNameDotNetIsolated": "Functions-DotNet-Isolated279k80n3oe", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-traz67wuyp", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-g2ifkz", "functionAppsToCreate": [ { - "StorageAccountName": "functionswinstorage2mn", + "PlanName": "Functions-Windows-Premium-fj26xp", "Runtime": "PowerShell", - "FunctionsVersion": 4, - "PlanName": "Functions-Windows-Premium-vesazn", - "Name": "Functions-PowerShell-72-n0c7kq", + "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", "OSType": "Windows", - "RuntimeVersion": "7.2", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg" + "RuntimeVersion": "7.4", + "Name": "Functions-PowerShell-74-6qf9o2", + "FunctionsVersion": 4, + "StorageAccountName": "functionswinstorage6aw" }, { - "StorageAccountName": "functionslinuxstorageums", + "PlanName": "Functions-Linux-Premium-g2ifkz", "Runtime": "Node", - "FunctionsVersion": 4, - "PlanName": "Functions-Linux-Premium-wdx4cl", - "Name": "Functions-Node-18-1u8q25", + "ResourceGroupName": "Functions-Test-Linux-Premium-xa1y0o", "OSType": "Linux", - "RuntimeVersion": 18, - "ResourceGroupName": "Functions-Test-Linux-Premium-23kylb" + "RuntimeVersion": 22, + "Name": "Functions-Node-22-h8c4uv", + "FunctionsVersion": 4, + "StorageAccountName": "functionslinuxstorageer3" }, { - "StorageAccountName": "functionswinstorage2mn", - "Runtime": "DotNet", "FunctionsVersion": 4, - "Name": "Functions-DotNet-6-9uj4si", - "Location": "central us", + "Runtime": "DotNet", + "ResourceGroupName": "Functions-Test-Windows-Consumption-m4501w", "OSType": "Windows", "RuntimeVersion": 6, - "ResourceGroupName": "Functions-Test-Windows-Consumption-kylbxe" + "Location": "central us", + "Name": "Functions-DotNet-6-dnrk0q", + "StorageAccountName": "functionswinstorage6aw" }, { - "StorageAccountName": "functionslinuxstorageums", - "Runtime": "Python", "FunctionsVersion": 4, - "Name": "Functions-Python-310-bj26n8", - "Location": "central us", + "Runtime": "Python", + "ResourceGroupName": "Functions-Test-Linux-Consumption-pxiydk", "OSType": "Linux", "RuntimeVersion": "3.10", - "ResourceGroupName": "Functions-Test-Linux-Consumption-h8frn2" + "Location": "central us", + "Name": "Functions-Python-310-edsbh6", + "StorageAccountName": "functionslinuxstorageer3" } ], - "functionNameContainer": "Functions-CustomImage-5y3dpkzqcb", - "functionNamePython": "Functions-Python-iyf85pjd9l", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-x7qylg", + "functionNameTestApp": "Functions-TestAppName-4xrbthc6ij", + "location": "central us", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-m4501w", + "functionNameDotNet": "Functions-DotNet-8ae9thv0pn", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-jndk42cwv8", + "functionNameJava": "Functions-Java-n63k2zl8s1", "identityInfo": { - "ClientId": "0c0f53ce-dd98-46db-bcc2-1faf02b2af8e", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-x7qylg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "ClientId": "ffbc5610-670b-41a5-94f2-bb3c73361aa7", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "d715fdf3-1893-4720-bfd0-54b67d03e7a1", - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", + "PrincipalId": "c2200af7-beb7-41c3-9e4e-a544c65ffb2a", + "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -102,45 +110,46 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "functionNameCustomHandler": "Functions-CustomHandleresz8ym7unv", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-vesazn", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-23kylb", - "functionNameNode": "Functions-Node-4fqxib7usc", - "functionNamePowerShell": "Functions-PowerShell-0sp8e17wjo", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-xa1y0o", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-vno1b5", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-b61uaq", "newApplInsights": { - "AppId": "32cb91e9-6c19-49c2-9e1a-5c74e8167aa1", - "ApplicationId": "Functions-PowerShell-0sp8e17wjo-new", + "AppId": "603deece-4203-4054-8737-3eb13240769c", + "ApplicationId": "Functions-PowerShellTest-8l0a19iyrf-new", "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=e2b07092-a978-4d94-af24-5ea770e4263b;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=32cb91e9-6c19-49c2-9e1a-5c74e8167aa1", - "CreationDate": "2024-06-21T00:54:17.3884484Z", + "ConnectionString": "InstrumentationKey=0b0b7d15-e1d4-4048-9377-05b413368051;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=603deece-4203-4054-8737-3eb13240769c", + "CreationDate": "2025-10-09T05:40:28.0183363Z", "DisableIPMasking": null, "DisableLocalAuth": null, - "Etag": "\"28000b49-0000-0300-0000-6674cf390000\"", + "Etag": "\"69009bd4-0000-0300-0000-68e74ad30000\"", "FlowType": {}, "ForceCustomerStorageForProfiler": null, "HockeyAppId": null, "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-x7qylg/providers/microsoft.insights/components/Functions-PowerShell-0sp8e17wjo-new", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf-new", "ImmediatePurgeDataOn30Day": null, "IngestionMode": {}, - "InstrumentationKey": "e2b07092-a978-4d94-af24-5ea770e4263b", + "InstrumentationKey": "0b0b7d15-e1d4-4048-9377-05b413368051", "Kind": "web", "LaMigrationDate": null, "Location": "centralus", - "Name": "Functions-PowerShell-0sp8e17wjo-new", + "Name": "Functions-PowerShellTest-8l0a19iyrf-new", "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShell-0sp8e17wjo-new", + "PropertiesName": "Functions-PowerShellTest-8l0a19iyrf-new", "ProvisioningState": "Succeeded", "PublicNetworkAccessForIngestion": {}, "PublicNetworkAccessForQuery": {}, "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-x7qylg", + "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", "RetentionInDay": 90, "SamplingPercentage": null, "Tag": {}, "TenantId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", "Type": "microsoft.insights/components", - "WorkspaceResourceId": null - } + "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-8l0a19iyrf-new_603deece-4203-4054-8737-3eb13240769c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-new-ws" + }, + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-pxiydk", + "functionNameCustomHandler": "Functions-CustomHandlerlk9q0p4fot", + "storageAccountWindows": "functionswinstorage6aw", + "functionAppTestPlanName2": "Functions-MyTestPlan2-j1ct3mxi76" } From e45eaae148943d1a8256e806b41a67fe82ee7622 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 13 Oct 2025 17:00:11 -0700 Subject: [PATCH 33/76] Generate New|Get|Remove BlobContainer cmdlet helpers --- src/helpers/Storage/readme.noprofile.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/helpers/Storage/readme.noprofile.md b/src/helpers/Storage/readme.noprofile.md index 812fbc033c6a..ab126345003b 100644 --- a/src/helpers/Storage/readme.noprofile.md +++ b/src/helpers/Storage/readme.noprofile.md @@ -67,6 +67,7 @@ directive: subject: ^BlobContainerLegalHold$ remove: true - where: + verb: Set|Update subject: ^BlobContainer$ remove: true - where: @@ -137,7 +138,6 @@ directive: subject: ^StorageAccountKey$ remove: true - # Hide Storage Account cmdlets - where: subject: ^StorageAccount.* @@ -146,6 +146,10 @@ directive: subject: ^StorageAccount.* set: subject-prefix: '' + - where: + verb: New|Get|Remove + subject: ^BlobContainer$ + hide: true # StorageAccount - where: From b23d4bedd8ebcd6960b5a8786101f7a77ebc611c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 27 Oct 2025 13:56:20 -0700 Subject: [PATCH 34/76] Implement Zone Redundancy for Flex Consumption --- .../Get-AzFunctionAppAvailableLocation.ps1 | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 index 2408b7b3ecf9..8031afddebcc 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 @@ -24,6 +24,10 @@ function Get-AzFunctionAppAvailableLocation { [ValidateSet("Linux", "Windows")] ${OSType}, + [Parameter(HelpMessage='Filter the list to return only locations which support zone redundancy.')] + [System.Management.Automation.SwitchParameter] + ${ZoneRedundant}, + [Parameter(HelpMessage=' The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -78,7 +82,8 @@ function Get-AzFunctionAppAvailableLocation { # Remove bound parameters from the dictionary that cannot be process by the intenal cmdlets $paramsToRemove = @( "OSType", - "PlanType" + "PlanType", + "ZoneRedundant" ) foreach ($paramName in $paramsToRemove) { @@ -142,6 +147,25 @@ function Get-AzFunctionAppAvailableLocation { -Exception $exception } - Az.Functions.internal\Get-AzFunctionAppAvailableLocation @PSBoundParameters + if ($ZoneRedundant.IsPresent -and ($PlanType -ne 'FlexConsumption')) + { + $errorMessage = "ZoneRedundant parameter is only applicable for FlexConsumption plan type." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "ZoneRedundantIsOnlyApplicableForFlexConsumption" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $regions = Az.Functions.internal\Get-AzFunctionAppAvailableLocation @PSBoundParameters + + if ($ZoneRedundant.IsPresent -and ($PlanType -eq 'FlexConsumption')) + { + $regions | ForEach-Object { if ($_.OrgDomain -match "FCZONEREDUNDANCY") { $_ }} + } + else + { + $regions + } } } From fe575dd489405fe5970cbef629761935b1d48341 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 27 Oct 2025 14:48:56 -0700 Subject: [PATCH 35/76] Introduce initial support for Flex Consumption app creation --- .../custom/HelperFunctions.ps1 | 247 +++++++++- .../custom/New-AzFunctionApp.ps1 | 454 ++++++++++++++++-- 2 files changed, 664 insertions(+), 37 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 969bfe75f6c0..137a28ab21d3 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -1,7 +1,7 @@ # Load Az.Functions module constants $constants = @{} $constants["AllowedStorageTypes"] = @('Standard_GRS', 'Standard_RAGRS', 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS', 'Standard_GZRS') -$constants["RequiredStorageEndpoints"] = @('PrimaryEndpointFile', 'PrimaryEndpointQueue', 'PrimaryEndpointTable') +$constants["RequiredStorageEndpoints"] = @('PrimaryEndpointBlob', 'PrimaryEndpointFile', 'PrimaryEndpointQueue', 'PrimaryEndpointTable') $constants["DefaultFunctionsVersion"] = '4' $constants["RuntimeToFormattedName"] = @{ 'dotnet' = 'DotNet' @@ -97,7 +97,7 @@ function GetConnectionString -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception } - + $skuName = $storageAccountInfo.SkuName if (-not ($AllowedStorageTypes -contains $skuName)) { @@ -2505,3 +2505,246 @@ function Get-Today { } return Get-Date } + +function New-PlanName +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $ResourceGroupName + ) + + $suffix = "-" + ([guid]::NewGuid().ToString().Substring(0,4)) + $name = $ResourceGroupName -replace '[^a-zA-Z0-9]', '' + $prefix = "ASP-$name" + return $prefix.Substring(0, [Math]::Min(35, $prefix.Length)) + $suffix +} + +function New-FlexConsumptionAppPlan +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Name, + + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $ResourceGroupName, + + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Location, + + [System.Management.Automation.SwitchParameter] + $EnableZoneRedundancy, + + $SubscriptionId, + $HttpPipelineAppend, + $HttpPipelinePrepend + ) + + foreach ($paramName in @("Location", "EnableZoneRedundancy")) + { + if ($PSBoundParameters.ContainsKey($paramName)) + { + $PSBoundParameters.Remove($paramName) | Out-Null + } + } + + + $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan + $servicePlan.Location = $Location + $servicePlan.Reserved = $true + $servicePlan.Kind = "functionapp" + $servicePlan.SkuName = "FC1" + $servicePlan.SkuTier = "FlexConsumption" + $servicePlan.SkuSize = "FC" + $servicePlan.SkuFamily = "FC" + + if ($EnableZoneRedundancy.IsPresent) + { + $servicePlan.ZoneRedundant = $true + $servicePlan.SkuCapability = 3 + } + + # Add plan definition + $PSBoundParameters.Add("AppServicePlan", $servicePlan) | Out-Null + + # Save the ErrorActionPreference + $currentErrorActionPreference = $ErrorActionPreference + $ErrorActionPreference = 'Stop' + $plan = $null + + $activityName = "Creating Flex Consumption Plan" + + try + { + Write-Progress -Activity $activityName ` + -Status "Creating plan $Name in resource group $ResourceGroupName" ` + -PercentComplete 50 + + $plan = Az.Functions.internal\New-AzFunctionAppPlan @PSBoundParameters + + Write-Progress -Activity $activityName ` + -Status "Plan creation completed successfully." ` + -Completed + } + catch + { + $errorMessage = GetErrorMessage -Response $_ + if ($errorMessage) + { + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToCreateFunctionAppFlexConsumPlan" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + throw $_ + } + finally + { + $ErrorActionPreference = $currentErrorActionPreference + } + + return $plan +} + +function Get-StorageAccountInfo +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [System.String] + $Name, + + $SubscriptionId, + $HttpPipelineAppend, + $HttpPipelinePrepend + ) + + $paramsToRemove = @( + "Name" + ) + foreach ($paramName in $paramsToRemove) + { + if ($PSBoundParameters.ContainsKey($paramName)) + { + $PSBoundParameters.Remove($paramName) | Out-Null + } + } + + # Get storage account + $storageAccountInfo = GetStorageAccount -Name $Name @PSBoundParameters + + if (-not $storageAccountInfo) + { + $errorMessage = "Storage account '$Name' does not exist." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountNotFound" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + if ($storageAccountInfo.ProvisioningState -ne "Succeeded") + { + $errorMessage = "Storage account '$Name' is not ready. Please run 'Get-AzStorageAccount' and ensure that the ProvisioningState is 'Succeeded'" + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountNotFound" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $skuName = $storageAccountInfo.SkuName + if (-not ($AllowedStorageTypes -contains $skuName)) + { + $storageOptions = $AllowedStorageTypes -join ", " + $errorMessage = "Storage type '$skuName' is not allowed'. Currently supported storage options: $storageOptions" + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageTypeNotSupported" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Validate endpoints + foreach ($endpoint in $RequiredStorageEndpoints) + { + if ([string]::IsNullOrEmpty($storageAccountInfo.$endpoint)) + { + $errorMessage = "Storage account '$StorageAccountName' has no '$endpoint' endpoint. It must have table, queue, and blob endpoints all enabled." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountRequiredEndpointNotAvailable" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + + return $storageAccountInfo +} + +function Get-ConnectionString +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + $StorageAccountInfo + ) + + if (-not $StorageAccountInfo) + { + throw "StorageAccountInfo cannot be null." + } + + $resourceGroupName = ($storageAccountInfo.Id -split "/")[4] + $keys = Az.Functions.internal\Get-AzStorageAccountKey -ResourceGroupName $resourceGroupName -Name $storageAccountInfo.Name @PSBoundParameters -ErrorAction SilentlyContinue + + if (-not $keys) + { + $errorMessage = "Failed to get key for storage account '$StorageAccountName'." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToGetStorageAccountKey" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + if ([string]::IsNullOrEmpty($keys[0].Value)) + { + $errorMessage = "Storage account '$StorageAccountName' has no key value." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountHasNoKeyValue" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $suffix = GetEndpointSuffix + $accountKey = $keys[0].Value + + $connectionString = "DefaultEndpointsProtocol=https;AccountName=$StorageAccountName;AccountKey=$accountKey" + $suffix + + return $connectionString +} + +function Format-FlexConsumptionLocation +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [System.String] + $Location + ) + + $normalizedLocation = $Location.ToLower().Replace(" ", "") + return $normalizedLocation +} diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index c6cfa7c335e6..9fdfbc6bbbac 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -7,6 +7,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="ByAppServicePlan")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [ValidateNotNullOrEmpty()] [System.String] @@ -16,6 +17,7 @@ function New-AzFunctionApp { [Parameter(Mandatory=$true, ParameterSetName="ByAppServicePlan")] [Parameter(Mandatory=$true, ParameterSetName="CustomDockerImage")] [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp")] + [Parameter(Mandatory=$true, ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] ${ResourceGroupName}, @@ -24,6 +26,7 @@ function New-AzFunctionApp { [Parameter(Mandatory=$true, ParameterSetName="ByAppServicePlan")] [Parameter(Mandatory=$true, ParameterSetName="CustomDockerImage")] [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp")] + [Parameter(Mandatory=$true,ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] ${Name}, @@ -32,6 +35,7 @@ function New-AzFunctionApp { [Parameter(Mandatory=$true, ParameterSetName="ByAppServicePlan")] [Parameter(Mandatory=$true, ParameterSetName="CustomDockerImage")] [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp")] + [Parameter(Mandatory=$true, ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] ${StorageAccountName}, @@ -40,6 +44,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="ByAppServicePlan")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] [Alias("AppInsightsName")] @@ -49,9 +54,9 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="ByAppServicePlan")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] - [System.String] [Alias("AppInsightsKey")] ${ApplicationInsightsKey}, @@ -77,6 +82,7 @@ function New-AzFunctionApp { [Parameter(Mandatory=$true, ParameterSetName="ByAppServicePlan", HelpMessage='The function runtime.')] [Parameter(Mandatory=$true, ParameterSetName="Consumption")] + [Parameter(Mandatory=$true, ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] # Runtime types are defined in HelperFunctions.ps1 @@ -84,6 +90,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage='The function runtime.')] [Parameter(ParameterSetName="Consumption")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [System.String] # RuntimeVersion types are defined in HelperFunctions.ps1 @@ -100,6 +107,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [System.Management.Automation.SwitchParameter] [Alias("DisableAppInsights")] ${DisableApplicationInsights}, @@ -126,6 +134,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] [System.Management.Automation.SwitchParameter] ${NoWait}, @@ -134,6 +143,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] [System.Management.Automation.SwitchParameter] ${AsJob}, @@ -142,6 +152,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [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.IResourceTags]))] [System.Collections.Hashtable] @@ -152,6 +163,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNullOrEmpty()] [Hashtable] ${AppSetting}, @@ -164,6 +176,7 @@ function New-AzFunctionApp { [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')] [String] @@ -175,10 +188,75 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNull()] [System.String[]] ${IdentityID}, + [Parameter(Mandatory=$true,ParameterSetName="FlexConsumption", HelpMessage='Location to create Flex Consumption function app.')] + [ValidateNotNullOrEmpty()] + [System.String] + ${FlexConsumptionLocation}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Name of deployment storage account to be used for function app artifacts.')] + [ValidateNotNullOrEmpty()] + [System.String] + ${DeploymentStorageName}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Deployment storage container name.')] + [ValidateNotNullOrEmpty()] + [System.String] + ${DeploymentStorageContainerName}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Deployment storage authentication type. Allowed values: StorageAccountConnectionString, SystemAssignedIdentity, UserAssignedIdentity')] + [ValidateSet("StorageAccountConnectionString","SystemAssignedIdentity","UserAssignedIdentity")] + [System.String] + ${DeploymentStorageAuthType}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Deployment storage authentication value used for the chosen auth type (eg: connection string, or user-assigned identity resource id).')] + [System.String] + ${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. + +Example: +@(@{ name = "http"; instanceCount = 2 }).')] + [Hashtable[]] + ${AlwaysReady}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Maximum instance count for Flex Consumption.')] + [ValidateRange(40, 1000)] + [int] + ${MaximumInstanceCount} = 100, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Per-instance memory in MB for Flex Consumption instances.')] + [ValidateSet(512, 2048, 4096)] + [int] + ${InstanceMemoryMB} = 2048, + + #[Parameter(ParameterSetName="FlexConsumption", HelpMessage='Trigger configuration hashtable, e.g. @{ http = @{ perInstanceConcurrency = 6 } }')] + # [Hashtable] + # ${Trigger}, + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='The maximum number of concurrent HTTP trigger invocations per instance.')] + [ValidateRange(1, 1000)] + [int] + ${HttpPerInstanceConcurrency}, + + [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Enable zone redundancy for high availability. Applies to Flex Consumption SKU only.')] + [System.Management.Automation.SwitchParameter] + ${EnableZoneRedundancy}, + + [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage='Redirect all traffic made to an app using HTTP to HTTPS.')] + [Parameter(ParameterSetName="Consumption")] + [Parameter(ParameterSetName="CustomDockerImage")] + [Parameter(ParameterSetName="EnvironmentForContainerApp")] + [Parameter(ParameterSetName="FlexConsumption")] + [System.Management.Automation.SwitchParameter] + ${EnableHttpsOnly}, + [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp", HelpMessage='Name of the container app environment.')] [ValidateNotNullOrEmpty()] [System.String] @@ -288,7 +366,17 @@ function New-AzFunctionApp { "ResourceCpu", "ResourceMemory", "ScaleMaxReplica", - "ScaleMinReplica" + "ScaleMinReplica", + "FlexConsumptionLocation", + "DeploymentStorageName", + "DeploymentStorageContainerName", + "DeploymentStorageAuthType", + "DeploymentStorageAuthValue", + "AlwaysReady", + "MaximumInstanceCount", + "InstanceMemoryMB", + "HttpPerInstanceConcurrency", + "EnableZoneRedundancy" ) foreach ($paramName in $paramsToRemove) { @@ -300,32 +388,49 @@ function New-AzFunctionApp { $functionAppIsCustomDockerImage = $PsCmdlet.ParameterSetName -eq "CustomDockerImage" $environmentForContainerApp = $PsCmdlet.ParameterSetName -eq "EnvironmentForContainerApp" + $consumptionPlan = $PsCmdlet.ParameterSetName -eq "Consumption" + $functionAppIsFlexConsumption = $PsCmdlet.ParameterSetName -eq "FlexConsumption" $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 + $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") - $runtimeJsonDefinition = $null + if ($EnableHttpsOnly.IsPresent) + { + $functionAppDef.HttpsOnly = $true + } ValidateFunctionAppNameAvailability -Name $Name @params + $runtimeJsonDefinition = $null + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) { - if (-not $FunctionsVersion) + if ($functionAppIsFlexConsumption) { + $OSType = "Linux" $FunctionsVersion = $DefaultFunctionsVersion - Write-Warning "FunctionsVersion not specified. Setting default value to '$FunctionsVersion'. $SetDefaultValueParameterWarningMessage" } + else + { + if (-not $FunctionsVersion) + { + $FunctionsVersion = $DefaultFunctionsVersion + Write-Warning "FunctionsVersion not specified. Setting default value to '$FunctionsVersion'. $SetDefaultValueParameterWarningMessage" + } - ValidateFunctionsVersion -FunctionsVersion $FunctionsVersion + ValidateFunctionsVersion -FunctionsVersion $FunctionsVersion - if (-not $OSType) - { - $OSType = GetDefaultOSType -Runtime $Runtime - Write-Warning "OSType not specified. Setting default value to '$OSType'. $SetDefaultValueParameterWarningMessage" + if (-not $OSType) + { + $OSType = GetDefaultOSType -Runtime $Runtime + Write-Warning "OSType not specified. Setting default value to '$OSType'. $SetDefaultValueParameterWarningMessage" + } } $runtimeJsonDefinition = GetStackDefinitionForRuntime -FunctionsVersion $FunctionsVersion -Runtime $Runtime -RuntimeVersion $RuntimeVersion -OSType $OSType @@ -342,30 +447,31 @@ function New-AzFunctionApp { } - # Add app settings - if ($runtimeJsonDefinition.AppSettingsDictionary.Count -gt 0) + if (-not $functionAppIsFlexConsumption) { - foreach ($keyName in $runtimeJsonDefinition.AppSettingsDictionary.Keys) + # Add app settings + if ($runtimeJsonDefinition.AppSettingsDictionary.Count -gt 0) { - $value = $runtimeJsonDefinition.AppSettingsDictionary[$keyName] - $appSettings.Add((NewAppSetting -Name $keyName -Value $value)) + foreach ($keyName in $runtimeJsonDefinition.AppSettingsDictionary.Keys) + { + $value = $runtimeJsonDefinition.AppSettingsDictionary[$keyName] + $appSettings.Add((NewAppSetting -Name $keyName -Value $value)) + } } - } - # Add site config properties - if ($runtimeJsonDefinition.SiteConfigPropertiesDictionary.Count -gt 0) - { - foreach ($PropertyName in $runtimeJsonDefinition.SiteConfigPropertiesDictionary.Keys) + # Add site config properties + if ($runtimeJsonDefinition.SiteConfigPropertiesDictionary.Count -gt 0) { - $value = $runtimeJsonDefinition.SiteConfigPropertiesDictionary[$PropertyName] - $siteConfig.$PropertyName = $value + foreach ($PropertyName in $runtimeJsonDefinition.SiteConfigPropertiesDictionary.Keys) + { + $value = $runtimeJsonDefinition.SiteConfigPropertiesDictionary[$PropertyName] + $siteConfig.$PropertyName = $value + } } - } + } } $servicePlan = $null - $consumptionPlan = $PsCmdlet.ParameterSetName -eq "Consumption" - $OSIsLinux = $OSType -eq "Linux" $dockerRegistryServerUrl = $null if ($consumptionPlan) @@ -420,6 +526,7 @@ function New-AzFunctionApp { $functionAppDef.Location = $Location } + # TODO: Need to move this to the top before any logic for an SKU specific settings are added. if ($OSIsLinux) { # These are the scenarios we currently support when creating a Docker container: @@ -461,10 +568,13 @@ function New-AzFunctionApp { } else { - $appSettings.Add((NewAppSetting -Name 'WEBSITES_ENABLE_APP_SERVICE_STORAGE' -Value 'true')) + if (-not $functionAppIsFlexConsumption) + { + $appSettings.Add((NewAppSetting -Name 'WEBSITES_ENABLE_APP_SERVICE_STORAGE' -Value 'true')) + } } } - else + else { # Windows function app $functionAppDef.Kind = 'functionapp' @@ -476,7 +586,6 @@ function New-AzFunctionApp { $functionAppDef.Reserved = $null $functionAppDef.HttpsOnly = $null $functionAppDef.ScmSiteAlsoStopped = $null - $functionAppDef.HttpsOnly = $null ValidateCpuAndMemory -ResourceCpu $ResourceCpu -ResourceMemory $ResourceMemory if ($ResourceCpu -and $ResourceMemory) @@ -512,19 +621,283 @@ function New-AzFunctionApp { $functionAppDef.ManagedEnvironmentId = $managedEnvironment.Id } + if ($functionAppIsFlexConsumption) + { + $appSettings.Clear() + $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation + $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` + -ZoneRedundant:$EnableZoneRedundancy ` + @params + + # Validate FlexConsumptionLocation + $found = $false + foreach ($region in $flexConsumptionRegions) + { + $regionName = Format-FlexConsumptionLocation -Location $region.Name + + if ($region.Name -eq $FlexConsumptionLocation) + { + $found = $true + break + } + elseif ($regionName -eq $formattedLocation) + { + $found = $true + break + } + } + + if (-not $found) + { + $errorMessage = $null + $errorId = $null + if ($EnableZoneRedundancy) + { + $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support zone redundancy in Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." + $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" + } + else + { + $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." + $errorId = "RegionNotSupportedForFlexConsumption" + } + + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $FlexConsumptionLocation = $formattedLocation + + # Reset properties not applicable for Flex Consumption + $siteConfig.NetFrameworkVersion = $null + $functionAppDef.Reserved = $null + $functionAppDef.IsXenon = $null + + try { + + # Create Flex Consumption App Service Plan + $storageContainerCreated = $false + $flexConsumptionPlanCreated = $false + $planName = New-PlanName -ResourceGroupName $ResourceGroupName + $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` + -ResourceGroupName $ResourceGroupName ` + -Location $FlexConsumptionLocation ` + -EnableZoneRedundancy:$EnableZoneRedundancy ` + @params + + $flexConsumptionPlanCreated = $true + + $functionAppDef.ServerFarmId = $planInfo.Id + $functionAppDef.Location = $FlexConsumptionLocation + + # Validate Deployment Storage + if (-not $DeploymentStorageName) { + $DeploymentStorageName = $StorageAccountName + } + + if (-not $DeploymentStorageContainerName) + { + # Generate a unique container name + $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + } + + # Check if container exists; create if missing + $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params + + $ctx = $StorageAccountInfo.Context + $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ErrorAction SilentlyContinue @params + if (-not $container) + { + Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." + $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + @params + $storageContainerCreated = $true + } + + # Blob URL + $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" + $functionAppDef.StorageType = "blobContainer" + $functionAppDef.StorageValue = $blobContainerUrl + + # Validate DeploymentStorageAuthType + if (-not $DeploymentStorageAuthType) + { + $DeploymentStorageAuthType = 'StorageAccountConnectionString' + } + + $functionAppDef.AuthenticationType = $DeploymentStorageAuthType + + # Set deployment storage authentication + if ($DeploymentStorageAuthType -eq "SystemAssignedIdentity") + { + if ($DeploymentStorageAuthValue) + { + $errorMessage = "-DeploymentStorageAuthValue is only valid when -DeploymentStorageAuthType is UserAssignedIdentity or StorageAccountConnectionString." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + elseif ($DeploymentStorageAuthType -eq "StorageAccountConnectionString") + { + if (-not $DeploymentStorageAuthValue) + { + Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." + $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params + } + + $DEPLOYMENT_STORAGE_CONNECTION_STRING = 'DEPLOYMENT_STORAGE_CONNECTION_STRING' + + $functionAppDef.AuthenticationStorageAccountConnectionStringName = $DEPLOYMENT_STORAGE_CONNECTION_STRING + $appSettings.Add((NewAppSetting -Name $DEPLOYMENT_STORAGE_CONNECTION_STRING -Value $DeploymentStorageAuthValue)) + } + elseif ($DeploymentStorageAuthType -eq "UserAssignedIdentity") + { + if (-not $DeploymentStorageAuthValue) + { + $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 + + # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } + + $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $DeploymentStorageAuthValue + } + + # Parse the version from LinuxFxVersion + $runtimeName = $runtimeJsonDefinition.siteConfigPropertiesDictionary["LinuxFxVersion"].Split("|")[0] + $runtimeVersion = $runtimeJsonDefinition.siteConfigPropertiesDictionary["LinuxFxVersion"].Split("|")[1] + + # Set runtime information + $functionAppDef.RuntimeName = $runtimeName + $functionAppDef.RuntimeVersion = $runtimeVersion + + if ($AlwaysReady) + { + # Validate AlwaysReady + $NAME = 'name' + $INSTANCECOUNT = 'instanceCount' + + foreach ($entry in $AlwaysReady) + { + if (-not ($entry.ContainsKey($NAME) -and $entry.ContainsKey($INSTANCECOUNT))) + { + $errorMessage = "Each hashtable in AlwaysReady must contain '$NAME' and '$INSTANCECOUNT' keys." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InvalidAlwaysReadyConfiguration" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Validate that Name is a non-empty string + if ([string]::IsNullOrWhiteSpace($entry[$NAME])) + { + $errorMessage = "Name in AlwaysReady must be a non-empty string." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InvalidAlwaysReadyName" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Validate that InstanceCount is a non-negative integer + if (-not [int]::TryParse($entry[$INSTANCECOUNT], [ref]$null)) + { + $errorMessage = "InstanceCount in AlwaysReady must be a valid integer." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + if ([int]$entry[$INSTANCECOUNT] -lt 0) + { + $errorMessage = "InstanceCount in AlwaysReady must be a non-negative integer." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + + $functionAppDef.ScaleAndConcurrencyAlwaysReady = $AlwaysReady + } + + # Set scaling information + # TODO: Set default values if not provided? Currently they are optional parameters. + # If not provided, the service will use its own defaults. + # TODO: Validate MaximumInstanceCount and InstanceMemoryMB ranges - Need Thiago's input on valid ranges. + if ($MaximumInstanceCount -gt 0) + { + $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $MaximumInstanceCount + } + + if ($InstanceMemoryMB -gt 0) + { + $functionAppDef.ScaleAndConcurrencyInstanceMemoryMB = $InstanceMemoryMB + } + + if ($HttpPerInstanceConcurrency -gt 0) + { + $functionAppDef.HttpPerInstanceConcurrency = $HttpPerInstanceConcurrency + } + } + catch + { + # TODO: We need a similar cleanup logic for when we fail to create the function app. + if ($flexConsumptionPlanCreated) + { + Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params + } + if ($storageContainerCreated) + { + Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params + } + + $errorMessage = "Failed to create Flex Consumption Function App. Exception: $_" + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToCreateFlexConsumptionFunctionApp" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + # Validate storage account and get connection string $connectionString = GetConnectionString -StorageAccountName $StorageAccountName @params - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) - if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) { $appSettings.Add((NewAppSetting -Name 'FUNCTIONS_EXTENSION_VERSION' -Value "~$FunctionsVersion")) } # If plan is not consumption, elastic premium or a container app environment, set always on $planIsElasticPremium = $servicePlan.SkuTier -eq 'ElasticPremium' - if ((-not $consumptionPlan) -and (-not $planIsElasticPremium) -and (-not $Environment)) + if ((-not $consumptionPlan) -and (-not $planIsElasticPremium) -and (-not $Environment) -and (-not $functionAppIsFlexConsumption)) { $siteConfig.AlwaysOn = $true } @@ -538,6 +911,14 @@ function New-AzFunctionApp { $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTSHARE' -Value $shareName)) } + # Set up Dashboard if no ApplicationInsights + if ($DisableApplicationInsights -and (-not $functionAppIsFlexConsumption)) + { + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) + } + + # Set up Application Insights + # TODO: Need to figure out how to get the app insight connection string if (-not $DisableApplicationInsights) { if ($ApplicationInsightsKey) @@ -549,7 +930,7 @@ function New-AzFunctionApp { $appInsightsProject = GetApplicationInsightsProject -Name $ApplicationInsightsName @params if (-not $appInsightsProject) { - $errorMessage = "Failed to get application insights key for project name '$ApplicationInsightsName'. Please make sure the project exist." + $errorMessage = "Failed to get application insights project name '$ApplicationInsightsName'. Please make sure the project exist." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "ApplicationInsightsProjectNotFound" ` -ErrorMessage $errorMessage ` @@ -557,17 +938,20 @@ function New-AzFunctionApp { -Exception $exception } - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) + #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $appInsightsProject.ConnectionString)) } else { + Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` -ResourceName $Name ` -Location $functionAppDef.Location ` @params if ($newAppInsightsProject) { - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $newAppInsightsProject.InstrumentationKey)) + #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $newAppInsightsProject.InstrumentationKey)) + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) } else { From d5b1a93ca0416ea8299ea3170115b4018c317ace Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 29 Oct 2025 19:21:34 -0700 Subject: [PATCH 36/76] Update README to generate cmdlets from the main branch --- src/helpers/AppInsights/readme.noprofile.md | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/helpers/AppInsights/readme.noprofile.md b/src/helpers/AppInsights/readme.noprofile.md index b1657f67487b..96d21225aadb 100644 --- a/src/helpers/AppInsights/readme.noprofile.md +++ b/src/helpers/AppInsights/readme.noprofile.md @@ -56,6 +56,11 @@ In this directory, run AutoRest: #module-version: 4.0.0 require: - $(this-folder)/../../readme.azure.noprofile.md +input-file: + - $(repo)/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/components_API.json + - $(repo)/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentApiKeys_API.json + +subject-prefix: '' ``` ## Multi-API/Profile support for AutoRest v3 generators @@ -64,19 +69,6 @@ AutoRest V3 generators require the use of `--tag=all-api-versions` to select api This block is updated by an automatic script. Edits may be lost! -``` yaml -apprepo: https://github.com/Azure/azure-rest-api-specs/blob/e0d9ceb1ca85e76a31b8496201499a7312824c09 -# include the azure profile definitions from the standard location -appinsights: $(apprepo)/specification/applicationinsights/resource-manager - -# all the input files across all versions -input-file: - - $(appinsights)/Microsoft.Insights/stable/2015-05-01/componentApiKeys_API.json - - $(appinsights)/Microsoft.Insights/stable/2015-05-01/components_API.json - -subject-prefix: '' -``` - # Directives ``` yaml directive: From 663c22899926ee1452c877f361450b1e5e6e5cf7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 2 Nov 2025 15:05:45 -0800 Subject: [PATCH 37/76] Add initial implementation of Get-AzFunctionAppFlexConsumptionRuntime --- src/Functions/Functions.Autorest/README.md | 1 + .../custom/Functions.format.ps1xml | 29 +++ ...et-AzFunctionAppFlexConsumptionRuntime.ps1 | 78 ++++++ .../custom/HelperFunctions.ps1 | 244 ++++++++++++++++-- .../Functions.Autorest/docs/Az.Functions.md | 5 +- 5 files changed, 338 insertions(+), 19 deletions(-) create mode 100644 src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 diff --git a/src/Functions/Functions.Autorest/README.md b/src/Functions/Functions.Autorest/README.md index c6ea11d79248..3fc629cc5b96 100644 --- a/src/Functions/Functions.Autorest/README.md +++ b/src/Functions/Functions.Autorest/README.md @@ -108,6 +108,7 @@ metadata: functionsToExport: - Get-AzFunctionApp - Get-AzFunctionAppAvailableLocation + - Get-AzFunctionAppFlexConsumptionRuntime - Get-AzFunctionAppPlan - Get-AzFunctionAppSetting - New-AzFunctionApp diff --git a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml index 20e39af28586..7937ea553228 100644 --- a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml +++ b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml @@ -63,5 +63,34 @@ + + FunctionAppFlexConsumptionRuntimeTableView + + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.FunctionAppFlexConsumptionRuntime + + + + + + + + + + + + + Name + Version + IsDefault + + EndOfLifeDate + {0:d} + + Sku + + + + + diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 new file mode 100644 index 000000000000..ff0a3d14a515 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -0,0 +1,78 @@ +function Get-AzFunctionAppFlexConsumptionRuntime { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets the Flex Consumption function app runtimes supported at the specified location.')] + [CmdletBinding(DefaultParameterSetName='ByLocation')] + param( + [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='The location where Flex Consumption function apps are supported.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [ValidateNotNullOrEmpty()] + [System.String] + ${Location}, + + # [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='Name of the resource group to which the resource belongs.')] + # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + # [ValidateNotNullOrEmpty()] + # [System.String] + # ${ResourceGroupName}, + + # [Parameter(ParameterSetName='ByLocation', HelpMessage='The Azure subscription ID.')] + # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + # [ValidateNotNullOrEmpty()] + # [System.String[]] + # ${SubscriptionId}, + + [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='The Flex Consumption function app runtime.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [ValidateSet("DotNet-Isolated", "Node", "Java", "Python", "PowerShell", "Custom")] + [System.String] + ${Runtime}, + + [Parameter(ParameterSetName='ByLocation', HelpMessage='The function app runtime version.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [System.String] + ${Version}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend} + ) + + process { + + # RegisterFunctionsTabCompleters + + # if ($PsCmdlet.ParameterSetName -eq "ByObjectInput") + # { + # if ($PSBoundParameters.ContainsKey("InputObject")) + # { + # $PSBoundParameters.Remove("InputObject") | Out-Null + # } + + # $Name = $InputObject.Name + + # $PSBoundParameters.Add("Name", $Name) | Out-Null + # $PSBoundParameters.Add("ResourceGroupName", $InputObject.ResourceGroupName) | Out-Null + # $PSBoundParameters.Add("SubscriptionId", $InputObject.SubscriptionId) | Out-Null + # } + + # if ($PsCmdlet.ShouldProcess($Name, "Get function app settings")) + # { + # $settings = Az.Functions.internal\Get-AzWebAppApplicationSetting @PSBoundParameters + # if ($settings) + # { + # ConvertWebAppApplicationSettingToHashtable -ApplicationSetting $settings -ShowAllAppSettings + # } + # } + Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -VersionFilter $Version + } +} diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 137a28ab21d3..9d1c732a72a6 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -1783,9 +1783,9 @@ function GetBuiltInFunctionAppStacksDefinition if (-not $DoNotShowWarning) { - $warmingMessage = "Failed to get Function App Stack definitions from ARM API. " - $warmingMessage += "Please open an issue at https://github.com/Azure/azure-powershell/issues with the following title: " - $warmingMessage += "[Az.Functions] Failed to get Function App Stack definitions from ARM API." + $warmingMessage = "Failed to retrieve Function App stack definitions from the ARM API. " + $warmingMessage += "Please open an issue at https://github.com/Azure/azure-powershell/issues, including the region, and use the following title: " + $warmingMessage += "[Az.Functions] Failed to retrieve Function App stack definitions from ARM API." Write-Warning $warmingMessage } @@ -1800,13 +1800,28 @@ function GetBuiltInFunctionAppStacksDefinition function GetFunctionAppStackDefinition { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param () + param ( + [Parameter(Mandatory=$false)] + [ValidateSet("PremiumAndConsumption", "FlexConsumption")] + $StackType = "PremiumAndConsumption", + + [Parameter(Mandatory=$false)] + [System.String] + $Location, + + [Parameter(Mandatory=$false)] + [System.String] + $Runtime + ) if ($env:FunctionsTestMode -or ($null -ne $env:SYSTEM_DEFINITIONID -or $null -ne $env:Release_DefinitionId -or $null -ne $env:AZUREPS_HOST_ENVIRONMENT)) { - Write-Debug "$DEBUG_PREFIX Running on test mode. Using built in json file definition." - $json = GetBuiltInFunctionAppStacksDefinition -DoNotShowWarning - return $json + if ($StackType -eq "PremiumAndConsumption") + { + Write-Debug "$DEBUG_PREFIX Running on test mode. Using built in json file definition." + $json = Get-BuiltInFunctionAppStacksDefinition -DoNotShowWarning + return $json + } } # Make sure there is an active Azure session @@ -1837,16 +1852,30 @@ function GetFunctionAppStackDefinition Write-Debug "$DEBUG_PREFIX Get AccessToken." $token = . "$PSScriptRoot/../utils/Unprotect-SecureString.ps1" (Get-AzAccessToken -AsSecureString).Token + $headers = @{ Authorization="Bearer $token" } - $params = @{ - stackOsType = 'All' - removeDeprecatedStacks = 'true' - } + $apiEndPoint = $null + $params = @{} - $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version=2020-10-01" + if ($StackType -eq "PremiumAndConsumption") + { + $params = @{ + stackOsType = 'All' + removeDeprecatedStacks = 'true' + } + $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version=2020-10-01" + } + elseif ($StackType -eq "FlexConsumption") + { + $ApiVersion = "2023-12-01" + $removeDeprecatedStacks = $true + $removeHiddenStacks = $true + $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/locations/{0}/functionAppStacks?api-version={1}&removeHiddenStacks={2}&removeDeprecatedStacks={3}&stack={4}" -f ` + $Location, $ApiVersion, ($removeHiddenStacks.ToString().ToLower()), ($removeDeprecatedStacks.ToString().ToLower()), $Runtime + } $maxNumberOfTries = 3 $currentCount = 1 @@ -1859,7 +1888,7 @@ function GetFunctionAppStackDefinition $result = $null try { - Write-Debug "$DEBUG_PREFIX Pull down Function App Stack definitions from ARM API. Attempt $currentCount of $maxNumberOfTries." + Write-Debug "$DEBUG_PREFIX Get Function App Stack definitions from ARM API. Attempt $currentCount of $maxNumberOfTries." $result = Invoke-WebRequest -Uri $apiEndPoint -Method Get -Headers $headers -body $params -ErrorAction Stop } catch @@ -1893,11 +1922,13 @@ function GetFunctionAppStackDefinition } while ($currentCount -le $maxNumberOfTries) - - # At this point, we failed to get the stack definition from the ARM API. - # Return the built in json file definition - $json = GetBuiltInFunctionAppStacksDefinition - return $json + if ($StackType -eq "PremiumAndConsumption") + { + # At this point, we failed to get the stack definition from the ARM API. + # Return the built in json file definition + $json = GetBuiltInFunctionAppStacksDefinition + return $json + } } function ContainsProperty @@ -2748,3 +2779,180 @@ function Format-FlexConsumptionLocation $normalizedLocation = $Location.ToLower().Replace(" ", "") return $normalizedLocation } + +function Resolve-UserAssignedIdentity +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [System.String] + $IdentityResourceId, + + $SubscriptionId, + $HttpPipelineAppend, + $HttpPipelinePrepend + ) + + $paramsToRemove = @( + "IdentityResourceId" + ) + foreach ($paramName in $paramsToRemove) + { + if ($PSBoundParameters.ContainsKey($paramName)) + { + $PSBoundParameters.Remove($paramName) | Out-Null + } + } + + # Parse the resource ID using regex + if ($IdentityResourceId -match "^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft\.ManagedIdentity/userAssignedIdentities/(?[^/]+)$") { + $subscriptionId = $matches['SubscriptionId'] + $resourceGroup = $matches['ResourceGroup'] + $identityName = $matches['IdentityName'] + + if ((-not [string]::IsNullOrEmpty($resourceGroup)) -or (-not [string]::IsNullOrEmpty($identityName)) -or (-not [string]::IsNullOrEmpty($subscriptionId))) + { + $errorMessage = "Invalid identity resource ID: '$IdentityResourceId'. Unable to parse resource group name and identity name." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InvalidIdentityResourceId" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Check if identity exists + $identity = Get-AzUserAssignedIdentity -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroup -ResourceName $identityName -ErrorAction SilentlyContinue + + if (-not $identity) + { + $errorMessage = "User-assigned identity '$identityName' does not exist in resource group '$resourceGroup' in subscription '$subscriptionId'." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountHasNoKeyValue" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + + } + + return $identity + } + else + { + $errorMessage = "Invalid resource ID format: '$IdentityResourceId'." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "StorageAccountHasNoKeyValue" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } +} + +function Get-FlexFunctionAppRuntime +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory=$true)] + [System.String] + $Location, + + [Parameter(Mandatory=$true)] + [System.String] + $Runtime, + + [Parameter(Mandatory=$false)] + [System.String] + $Version + ) + + # Map dotnet-isolated → dotnet for this endpoint + $Runtime = if ($Runtime -eq 'dotnet-isolated') { 'dotnet' } else { $Runtime } + + # Get Flex Consumption Function App Runtime Definitions + $json = GetFunctionAppStackDefinition -StackType FlexConsumption -Location $Location -Runtime $Runtime + + if (-not $json) + { + $errorMessage = "Failed to retrieve Flex Consumption Function App stack definitions from the ARM API. " + $errorMessage += "Please open an issue at https://github.com/Azure/azure-powershell/issues, including the region, and use the following title: " + $errorMessage += "[Az.Functions] Failed to retrieve Flex Consumption Function App stack definitions from ARM API." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToGetFlexConsumptionFunctionAppStackDefinitionFromARMAPI" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $functionAppStackDefinition = $json | ConvertFrom-Json + + # Flatten: runtime → majorVersions → minorVersions + $stacks = foreach ($item in $functionAppStackDefinition) + { + $runtimeName = $item.name + foreach ($maj in ($item.properties.majorVersions | Where-Object { $_ })) + { + foreach ($min in ($maj.minorVersions | Where-Object { $_ })) + { + # We only consider linuxRuntimeSettings for Flex Consumption + $linux = $min.stackSettings.linuxRuntimeSettings + + if (-not $linux) { continue } + + # Only FC1 (Flex Consumption) + $sku = @($linux.Sku) | Where-Object { + $_.skuCode -eq 'FC1' + } + + if (-not $sku) { continue } + + # Name preference: FUNCTIONS_WORKER_RUNTIME if present + $name = if ($linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME) { + $linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME + } + + # Set runtime name and version + if ($sku.skuCode -eq 'FC1') { + if (-not $name) { + $name = $sku.functionAppConfigProperties.Runtime.Name + } + $version = $sku.functionAppConfigProperties.Runtime.Version + } + + # Parse end of life date + $runtimeEndOfLifeDate = if ($linux.endOfLifeDate) { ParseEndOfLifeDate -Runtime $name -DateString $linux.endOfLifeDate } else { $null } + + # Create runtime object + $result = [pscustomobject]@{ + Name = $name + Version = $version + IsDefault = ([bool]$linux.isDefault) + EndOfLifeDate = $runtimeEndOfLifeDate + Sku = $sku + #AppInsightsSupported = [bool]$linux.appInsightsSettings.isSupported + #GitHubActions_IsSupported = [bool]$linux.gitHubActionSettings.isSupported + #GitHubActions_Version = $linux.gitHubActionSettings.supportedVersion + } + + $result.PSTypeNames.Insert(0,'Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.FunctionAppFlexConsumptionRuntime') + } + } + + if ($Version) + { + $versionRecord = $stacks | Where-Object { $_.Version -eq $Version } + if (-not $versionRecord) + { + $supportedVersions = $stacks | ForEach-Object { $_.Version } | Sort-Object | Get-Unique + $supportedVersionsString = $supportedVersions -join ", " + $errorMessage = "Runtime '{0}' version '{1}' not supported for function apps on the Flex Consumption plan." -f $Runtime, $Version + $errorMessage += "Supported versions are: {0}." -f $supportedVersionsString + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "RuntimeVersionNotSupportedInFlexConsumption" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + + return $stacks + } +} \ No newline at end of file diff --git a/src/Functions/Functions.Autorest/docs/Az.Functions.md b/src/Functions/Functions.Autorest/docs/Az.Functions.md index 7b5d5e8b16b4..53876df96639 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: eafced71-8742-4a2c-5afd-13117428dd90 +Module Guid: 33b403ea-a69c-4cca-9d91-e17a23d48905 Download Help Link: https://learn.microsoft.com/powershell/module/az.functions Help Version: 1.0.0.0 Locale: en-US @@ -17,6 +17,9 @@ Gets function apps in a subscription. ### [Get-AzFunctionAppAvailableLocation](Get-AzFunctionAppAvailableLocation.md) Gets the location where a function app for the given os and plan type is available. +### [Get-AzFunctionAppFlexConsumptionRuntime](Get-AzFunctionAppFlexConsumptionRuntime.md) +Gets the Flex Consumption function app runtimes supported at the specified location. + ### [Get-AzFunctionAppPlan](Get-AzFunctionAppPlan.md) Get function apps plans in a subscription. From b767204c5fe5c3ffbb846464c29d29f0fb39cc13 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 2 Nov 2025 21:47:58 -0800 Subject: [PATCH 38/76] Add support for DisableHttpsOnly --- .../custom/New-AzFunctionApp.ps1 | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 9fdfbc6bbbac..e7562a7b5de0 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -255,7 +255,7 @@ Example: [Parameter(ParameterSetName="EnvironmentForContainerApp")] [Parameter(ParameterSetName="FlexConsumption")] [System.Management.Automation.SwitchParameter] - ${EnableHttpsOnly}, + ${DisableHttpsOnly}, [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp", HelpMessage='Name of the container app environment.')] [ValidateNotNullOrEmpty()] @@ -400,10 +400,8 @@ Example: $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") - if ($EnableHttpsOnly.IsPresent) - { - $functionAppDef.HttpsOnly = $true - } + #$siteConfig.PublicNetworkAccess = 'Disabled' + $functionAppDef.HttpsOnly = (-not $DisableHttpsOnly.IsPresent) ValidateFunctionAppNameAvailability -Name $Name @params @@ -711,7 +709,6 @@ Example: # Check if container exists; create if missing $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params - $ctx = $StorageAccountInfo.Context $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` -AccountName $DeploymentStorageName ` -ResourceGroupName $ResourceGroupName ` @@ -776,12 +773,12 @@ Example: -ErrorMessage $errorMessage ` -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception - - # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity } - $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $DeploymentStorageAuthValue + # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params + $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id } # Parse the version from LinuxFxVersion @@ -969,11 +966,11 @@ Example: } # Add user app settings - if ($appSetting.Count -gt 0) + if ($AppSetting.Count -gt 0) { - foreach ($keyName in $appSetting.Keys) + foreach ($keyName in $AppSetting.Keys) { - $appSettings.Add((NewAppSetting -Name $keyName -Value $appSetting[$keyName])) + $appSettings.Add((NewAppSetting -Name $keyName -Value $AppSetting[$keyName])) } } From bbda2a1e6d5f60239973572a4d71d8221b302b9f Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 2 Nov 2025 22:25:52 -0800 Subject: [PATCH 39/76] Add Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant tests --- ...t-AzFunctionAppAvailableLocation.Tests.ps1 | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 index 0986be8f0c83..fad4799d0d06 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 @@ -325,4 +325,54 @@ Describe 'Get-AzFunctionAppAvailableLocation' { Write-Verbose "Validate Exception.Message" -Verbose $myError.Exception.Message | Should Match $expectedErrorMessage } + + It 'Validate output for -PlanType FlexConsumption -ZoneRedundant' { + + $expectedRegions = @( + 'Canada Central' + 'Southeast Asia' + 'East Asia' + 'Australia East' + 'East US' + 'Central India' + 'UK South' + 'East US 2 EUAP' + 'South Africa North' + 'Germany West Central' + 'UAE North' + 'Norway East' + 'West US 3' + 'Sweden Central' + 'Italy North' + 'Israel Central' + ) + + $actualRegions = @(Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant | ForEach-Object { $_.Name }) + ValidateAvailableLocation -ActualRegions $actualRegions -ExpectedRegions $expectedRegions + } + + foreach ($osType in @('Linux', 'Windows')) + { + It "Validate -PlanType FlexConsumption -OSType $osType -ZoneRedundant fails" { + + $expectedErrorMessage = "ZoneRedundant parameter is only applicable for FlexConsumption plan type." + $expectedErrorId = "ZoneRedundantIsOnlyApplicableForFlexConsumption" + + $myError = $null + try + { + Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -OSType $osType -ErrorAction Stop + } + catch + { + Write-Verbose "Catch the expected exception" -Verbose + $myError = $_ + } + + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose + $myError.FullyQualifiedErrorId | Should Be $expectedErrorId + Write-Verbose "Validate Exception.Message" -Verbose + $myError.Exception.Message | Should Match $expectedErrorMessage + } + } } From 33f7e07e8a2026eee2f7d02b4d0e66675fee27d5 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 2 Nov 2025 22:50:59 -0800 Subject: [PATCH 40/76] Add new help file --- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 106 ++++++++++++++++++ src/Functions/Functions/help/Az.Functions.md | 3 + 2 files changed, 109 insertions(+) create mode 100644 src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md new file mode 100644 index 000000000000..0dbb21b2b90f --- /dev/null +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -0,0 +1,106 @@ +--- +external help file: +Module Name: Az.Functions +online version: https://learn.microsoft.com/powershell/module/az.functions/get-azfunctionappflexconsumptionruntime +schema: 2.0.0 +--- + +# Get-AzFunctionAppFlexConsumptionRuntime + +## SYNOPSIS +Gets the Flex Consumption function app runtimes supported at the specified location. + +## SYNTAX + +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [-Version ] + [] +``` + +## DESCRIPTION +Gets the Flex Consumption function app runtimes supported at the specified location. + +## EXAMPLES + +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +## PARAMETERS + +### -Location +The location where Flex Consumption function apps are supported. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Runtime +The Flex Consumption function app runtime. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Version +The function app runtime version. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + diff --git a/src/Functions/Functions/help/Az.Functions.md b/src/Functions/Functions/help/Az.Functions.md index 7b5d5e8b16b4..734a78dd81e3 100644 --- a/src/Functions/Functions/help/Az.Functions.md +++ b/src/Functions/Functions/help/Az.Functions.md @@ -17,6 +17,9 @@ Gets function apps in a subscription. ### [Get-AzFunctionAppAvailableLocation](Get-AzFunctionAppAvailableLocation.md) Gets the location where a function app for the given os and plan type is available. +### [Get-AzFunctionAppFlexConsumptionRuntime](Get-AzFunctionAppFlexConsumptionRuntime.md) +Gets the Flex Consumption function app runtimes supported at the specified location. + ### [Get-AzFunctionAppPlan](Get-AzFunctionAppPlan.md) Get function apps plans in a subscription. From 94fedfb62f30b4d60e1da2e4e962f3b27fce3899 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 2 Nov 2025 23:35:21 -0800 Subject: [PATCH 41/76] Add help file --- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md diff --git a/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md new file mode 100644 index 000000000000..0dbb21b2b90f --- /dev/null +++ b/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -0,0 +1,106 @@ +--- +external help file: +Module Name: Az.Functions +online version: https://learn.microsoft.com/powershell/module/az.functions/get-azfunctionappflexconsumptionruntime +schema: 2.0.0 +--- + +# Get-AzFunctionAppFlexConsumptionRuntime + +## SYNOPSIS +Gets the Flex Consumption function app runtimes supported at the specified location. + +## SYNTAX + +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [-Version ] + [] +``` + +## DESCRIPTION +Gets the Flex Consumption function app runtimes supported at the specified location. + +## EXAMPLES + +### Example 1: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +### Example 2: {{ Add title here }} +```powershell +{{ Add code here }} +``` + +```output +{{ Add output here (remove the output block if the example doesn't have an output) }} +``` + +{{ Add description here }} + +## PARAMETERS + +### -Location +The location where Flex Consumption function apps are supported. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Runtime +The Flex Consumption function app runtime. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Version +The function app runtime version. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + From c9d24a00ef583675e2b10806e55d2f7e4041989e Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 5 Nov 2025 10:02:36 -0800 Subject: [PATCH 42/76] Get-AzFunctionAppFlexConsumptionRuntime: Update error message --- ...et-AzFunctionAppFlexConsumptionRuntime.ps1 | 95 +++--- .../custom/HelperFunctions.ps1 | 275 +++++++++++++++--- 2 files changed, 271 insertions(+), 99 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 index ff0a3d14a515..be2e5de688bb 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -1,78 +1,57 @@ function Get-AzFunctionAppFlexConsumptionRuntime { [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets the Flex Consumption function app runtimes supported at the specified location.')] - [CmdletBinding(DefaultParameterSetName='ByLocation')] + [CmdletBinding(DefaultParameterSetName='AllRuntimes')] param( - [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='The location where Flex Consumption function apps are supported.')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [Parameter(ParameterSetName='AllRuntimes', Mandatory=$true, HelpMessage='The location where Flex Consumption function apps are supported.')] + [Parameter(ParameterSetName='AllVersions', Mandatory=$true)] + [Parameter(ParameterSetName='ByVersion', Mandatory=$true)] + [Parameter(ParameterSetName='DefaultOrLatest', Mandatory=$true)] [ValidateNotNullOrEmpty()] [System.String] ${Location}, - # [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='Name of the resource group to which the resource belongs.')] - # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] - # [ValidateNotNullOrEmpty()] - # [System.String] - # ${ResourceGroupName}, - - # [Parameter(ParameterSetName='ByLocation', HelpMessage='The Azure subscription ID.')] - # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] - # [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - # [ValidateNotNullOrEmpty()] - # [System.String[]] - # ${SubscriptionId}, - - [Parameter(ParameterSetName='ByLocation', Mandatory=$true, HelpMessage='The Flex Consumption function app runtime.')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [Parameter(ParameterSetName='ByVersion', Mandatory=$true, HelpMessage='The Flex Consumption function app runtime.')] + [Parameter(ParameterSetName='AllVersions', Mandatory=$true)] + [Parameter(ParameterSetName='DefaultOrLatest', Mandatory=$true)] [ValidateSet("DotNet-Isolated", "Node", "Java", "Python", "PowerShell", "Custom")] + [ValidateNotNullOrEmpty()] [System.String] ${Runtime}, - [Parameter(ParameterSetName='ByLocation', HelpMessage='The function app runtime version.')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] + [Parameter(ParameterSetName='ByVersion', Mandatory=$true, HelpMessage='The function app runtime version.')] + [ValidateNotNullOrEmpty()] [System.String] ${Version}, - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend} + [Parameter(ParameterSetName='DefaultOrLatest', Mandatory=$true, HelpMessage='Get the default or latest version of the specified runtime.')] + [switch] + $DefaultOrLatest ) process { - # RegisterFunctionsTabCompleters - - # if ($PsCmdlet.ParameterSetName -eq "ByObjectInput") - # { - # if ($PSBoundParameters.ContainsKey("InputObject")) - # { - # $PSBoundParameters.Remove("InputObject") | Out-Null - # } - - # $Name = $InputObject.Name - - # $PSBoundParameters.Add("Name", $Name) | Out-Null - # $PSBoundParameters.Add("ResourceGroupName", $InputObject.ResourceGroupName) | Out-Null - # $PSBoundParameters.Add("SubscriptionId", $InputObject.SubscriptionId) | Out-Null - # } - - # if ($PsCmdlet.ShouldProcess($Name, "Get function app settings")) - # { - # $settings = Az.Functions.internal\Get-AzWebAppApplicationSetting @PSBoundParameters - # if ($settings) - # { - # ConvertWebAppApplicationSettingToHashtable -ApplicationSetting $settings -ShowAllAppSettings - # } - # } - Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -VersionFilter $Version + RegisterFunctionsTabCompleters + + switch ($PSCmdlet.ParameterSetName) { + 'AllRuntimes' { + # Return all runtimes + foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "Python", "PowerShell", "Custom")) + { + Get-FlexFunctionAppRuntime -Location $Location -Runtime $runtimeName + } + } + 'AllVersions' { + # Return all versions for the specified runtime + Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime + } + 'ByVersion' { + # Return specific version + Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -Version $Version + } + 'DefaultOrLatest' { + # Return default/latest version + Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -DefaultOrLatest:$true + } + } } } diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 9d1c732a72a6..352947dc731a 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -1870,11 +1870,11 @@ function GetFunctionAppStackDefinition } elseif ($StackType -eq "FlexConsumption") { - $ApiVersion = "2023-12-01" + $ApiVersion = '2020-10-01' $removeDeprecatedStacks = $true $removeHiddenStacks = $true $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/locations/{0}/functionAppStacks?api-version={1}&removeHiddenStacks={2}&removeDeprecatedStacks={3}&stack={4}" -f ` - $Location, $ApiVersion, ($removeHiddenStacks.ToString().ToLower()), ($removeDeprecatedStacks.ToString().ToLower()), $Runtime + $Location, $ApiVersion, $removeHiddenStacks.ToString().ToLower(), $removeDeprecatedStacks.ToString().ToLower(), $Runtime.ToString().ToLower() } $maxNumberOfTries = 3 @@ -1889,7 +1889,14 @@ function GetFunctionAppStackDefinition try { Write-Debug "$DEBUG_PREFIX Get Function App Stack definitions from ARM API. Attempt $currentCount of $maxNumberOfTries." - $result = Invoke-WebRequest -Uri $apiEndPoint -Method Get -Headers $headers -body $params -ErrorAction Stop + if ($StackType -eq "FlexConsumption") + { + $result = Invoke-WebRequest -Uri $apiEndPoint -Method Get -Headers $headers -ErrorAction Stop + } + else + { + $result = Invoke-WebRequest -Uri $apiEndPoint -Method Get -Headers $headers -body $params -ErrorAction Stop + } } catch { @@ -2344,7 +2351,7 @@ function RegisterFunctionsTabCompleters $runtimeValues | Where-Object { $_ -like "$wordToComplete*" } } - # New-AzFunction app ArgumentCompleter for the Runtime parameter + # New-AzFunction app ArgumentCompleter for the FunctionsVersion parameter $GetAllFunctionsVersionsCompleter = { param ($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) @@ -2354,11 +2361,23 @@ function RegisterFunctionsTabCompleters $functionsVersions | Where-Object { $_ -like "$wordToComplete*" } } + # Get-AzFunctionFlexConsumptionRuntime app ArgumentCompleter for the Runtime parameter + $GetFlexConsumptionRuntimeCompleter = { + + param ($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) + + $runtimeValues = $AllRuntimeVersions.Keys | Sort-Object | ForEach-Object { if ($_ -ne "dotnet") { $_ } } + + $runtimeValues | Where-Object { $_ -like "$wordToComplete*" } + } + # Register tab completers Register-ArgumentCompleter -CommandName New-AzFunctionApp -ParameterName FunctionsVersion -ScriptBlock $GetAllFunctionsVersionsCompleter Register-ArgumentCompleter -CommandName New-AzFunctionApp -ParameterName Runtime -ScriptBlock $GetAllRuntimesCompleter Register-ArgumentCompleter -CommandName New-AzFunctionApp -ParameterName RuntimeVersion -ScriptBlock $GetRuntimeVersionCompleter + Register-ArgumentCompleter -CommandName Get-AzFunctionAppFlexConsumptionRuntime -ParameterName Runtime -ScriptBlock $GetFlexConsumptionRuntimeCompleter + $global:StacksAndTabCompletersInitialized = $true } } @@ -2588,7 +2607,6 @@ function New-FlexConsumptionAppPlan } } - $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan $servicePlan.Location = $Location $servicePlan.Reserved = $true @@ -2851,41 +2869,55 @@ function Get-FlexFunctionAppRuntime { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param ( - [Parameter(Mandatory=$true)] + [Parameter(ParameterSetName = 'AllVersions', Mandatory = $true)] + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [ValidateNotNullOrEmpty()] [System.String] $Location, - [Parameter(Mandatory=$true)] + [Parameter(ParameterSetName = 'AllVersions', Mandatory = $true)] + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [ValidateNotNullOrEmpty()] [System.String] $Runtime, - [Parameter(Mandatory=$false)] + [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] + [ValidateNotNullOrEmpty()] [System.String] - $Version + $Version, + + [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] + [switch] + $DefaultOrLatest ) - # Map dotnet-isolated → dotnet for this endpoint - $Runtime = if ($Runtime -eq 'dotnet-isolated') { 'dotnet' } else { $Runtime } + # Map dotnet-isolated -> dotnet for this endpoint + $runtimeForAPI = if ($Runtime -eq 'dotnet-isolated') { 'dotnet' } else { $Runtime } + + # Format location for Flex Consumption (remove spaces and make lowercase) + $formattedLocation = Format-FlexConsumptionLocation -Location $Location # Get Flex Consumption Function App Runtime Definitions - $json = GetFunctionAppStackDefinition -StackType FlexConsumption -Location $Location -Runtime $Runtime + $json = GetFunctionAppStackDefinition -StackType FlexConsumption -Location $formattedLocation -Runtime $runtimeForAPI if (-not $json) { - $errorMessage = "Failed to retrieve Flex Consumption Function App stack definitions from the ARM API. " - $errorMessage += "Please open an issue at https://github.com/Azure/azure-powershell/issues, including the region, and use the following title: " - $errorMessage += "[Az.Functions] Failed to retrieve Flex Consumption Function App stack definitions from ARM API." - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "FailedToGetFlexConsumptionFunctionAppStackDefinitionFromARMAPI" ` + $errorMessage = "Failed to retrieve Flex Consumption Function App stack definitions from the ARM API for runtime '{0}' in location '{1}'. Please try a different region." -f + $Runtime, $Location + $exception = [System.InvalidOperationException]::new($errorMessage) + ThrowTerminatingError -ErrorId "FlexConsumptionStackRetrievalFailed" ` -ErrorMessage $errorMessage ` -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception } $functionAppStackDefinition = $json | ConvertFrom-Json + $stacks = New-Object -TypeName 'System.Collections.Generic.List[PSCustomObject]' - # Flatten: runtime → majorVersions → minorVersions - $stacks = foreach ($item in $functionAppStackDefinition) + # Flatten: runtime -> majorVersions -> minorVersions + foreach ($item in $functionAppStackDefinition) { $runtimeName = $item.name foreach ($maj in ($item.properties.majorVersions | Where-Object { $_ })) @@ -2905,25 +2937,25 @@ function Get-FlexFunctionAppRuntime if (-not $sku) { continue } # Name preference: FUNCTIONS_WORKER_RUNTIME if present - $name = if ($linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME) { + $runtimeName = if ($linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME) { $linux.appSettingsDictionary.FUNCTIONS_WORKER_RUNTIME } # Set runtime name and version if ($sku.skuCode -eq 'FC1') { - if (-not $name) { - $name = $sku.functionAppConfigProperties.Runtime.Name + if (-not $runtimeName) { + $runtimeName = $sku.functionAppConfigProperties.Runtime.Name } - $version = $sku.functionAppConfigProperties.Runtime.Version + $runtimeVersion = $sku.functionAppConfigProperties.Runtime.Version } # Parse end of life date - $runtimeEndOfLifeDate = if ($linux.endOfLifeDate) { ParseEndOfLifeDate -Runtime $name -DateString $linux.endOfLifeDate } else { $null } + $runtimeEndOfLifeDate = if ($linux.endOfLifeDate) { ParseEndOfLifeDate -Runtime $runtimeName -DateString $linux.endOfLifeDate } else { $null } # Create runtime object $result = [pscustomobject]@{ - Name = $name - Version = $version + Name = $runtimeName + Version = $runtimeVersion IsDefault = ([bool]$linux.isDefault) EndOfLifeDate = $runtimeEndOfLifeDate Sku = $sku @@ -2933,26 +2965,187 @@ function Get-FlexFunctionAppRuntime } $result.PSTypeNames.Insert(0,'Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.FunctionAppFlexConsumptionRuntime') + $stacks.Add($result) } } - if ($Version) - { - $versionRecord = $stacks | Where-Object { $_.Version -eq $Version } - if (-not $versionRecord) - { - $supportedVersions = $stacks | ForEach-Object { $_.Version } | Sort-Object | Get-Unique - $supportedVersionsString = $supportedVersions -join ", " - $errorMessage = "Runtime '{0}' version '{1}' not supported for function apps on the Flex Consumption plan." -f $Runtime, $Version - $errorMessage += "Supported versions are: {0}." -f $supportedVersionsString - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "RuntimeVersionNotSupportedInFlexConsumption" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + switch ($PSCmdlet.ParameterSetName) { + + 'AllVersions' { + # Return all versions for $Runtime + return $stacks } + + 'ByVersion' { + # Return specific version + $matched = $stacks | Where-Object { $_.Version -eq $Version } | Select-Object -First 1 + if (-not $matched) + { + $map = @{ + '11' = '11.0' + '8' = '8.0' + '8.0' = '8' + '7' = '7.0' + '6.0' = '6' + '1.8' = '8.0' + '17' = '17.0' + } + + if ($map.ContainsKey($Version)) + { + $newVersion = $map[$Version] + $matched = $stacks | Where-Object { $_.Version -eq $newVersion } | Select-Object -First 1 + } + } + + if (-not $matched) + { + $supportedVersions = $stacks | ForEach-Object { $_.Version } | Sort-Object | Get-Unique + $supportedVersionsString = $supportedVersions -join ", " + $errorMessage = "Invalid version {0} for runtime {1} for function apps on the Flex Consumption plan. Supported versions for runtime {1} are {2}." -f + $Version, $Runtime, $supportedVersionsString + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "RuntimeVersionNotSupportedInFlexConsumption" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + return $matched + } + + 'DefaultOrLatest' { + # Return default/latest version + $defaultStack = $stacks | Where-Object { $_.IsDefault } | Sort-Object -Property Version -Descending | Select-Object -First 1 + + if (-not $defaultStack) + { + # Fallback: get latest version + $defaultStack = $stacks | Sort-Object -Property Version -Descending | Select-Object -First 1 + + if (-not $defaultStack) + { + $errorMessage = "No runtime versions found for runtime '$Runtime' in location '$Location'." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "NoRuntimeVersionsFoundInFlexConsumption" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + + return $defaultStack + } + } + } +} + +function ValidateIntanceMemoryMB +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory=$true)] + [hashtable] + $SkuInstanceMemoryMB, + + [Parameter(Mandatory=$false)] + $InstanceMemoryMB + ) + + $skuMemEntries = @($SkuInstanceMemoryMB) | Where-Object { $_ -ne $null } + + if (-not $skuMemEntries) + { + $errorMessage = "No instance memory sizes were returned by the SKU payload. Unable to determine a default size." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "NoInstanceMemorySizesFound" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + # Normalize and dedupe sizes (ints) + $allowedSizes = $skuMemEntries | ForEach-Object { [int]$_.size } | Where-Object { $_ -gt 0 } | Sort-Object -Unique + + # Find default; if none is flagged, fall back to the smallest size (common platform pattern) + $defaultSize = $skuMemEntries | Where-Object { $_.isDefault -eq $true } | Select-Object -ExpandProperty size -First 1 + + if ($null -eq $defaultSize) + { + $defaultSize = $allowedSizes | Select-Object -First 1 + } + + if ($InstanceMemoryMB -gt 0) + { + # Strict validation: must be one of the discrete supported sizes for this runtime/region + if ($allowedSizes -notcontains [int]$InstanceMemoryMB) + { + $errorMessage = "Invalid InstanceMemoryMB '{0}'. Allowed values for this runtime are: {1}. " + + "Use one of the supported sizes." -f $InstanceMemoryMB, ($allowedSizes -join ', ') + $exception = [System.ArgumentOutOfRangeException]::New($errorMessage) + ThrowTerminatingError -ErrorId "InstanceMemoryMBNotSupported" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidArgument) ` + -Exception $exception } + } + else + { + # If not provided, set to default size + $InstanceMemoryMB = [int]$defaultSize + } + + return $InstanceMemoryMB +} + +function ValidateMaximumInstanceCount +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [hashtable] + $SkuMaximumInstanceCount, # expects keys: lowestMaximumInstanceCount, highestMaximumInstanceCount, defaultValue + + [Parameter(Mandatory = $false)] + [int] + $MaximumInstanceCount + ) - return $stacks + # Validate SKU payload + if (-not $SkuMaximumInstanceCount -or + -not $SkuMaximumInstanceCount.lowestMaximumInstanceCount -or + -not $SkuMaximumInstanceCount.highestMaximumInstanceCount) { + $errorMessage = "No maximum instance count range was returned by the SKU payload. Unable to determine a default value." + $exception = [System.InvalidOperationException]::new($errorMessage) + ThrowTerminatingError -ErrorId "NoMaximumInstanceCountFound" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } + + # Extract range and default + $min = [int]$SkuMaximumInstanceCount.lowestMaximumInstanceCount + $max = [int]$SkuMaximumInstanceCount.highestMaximumInstanceCount + $default = [int]$SkuMaximumInstanceCount.defaultValue + + if ($MaximumInstanceCount -gt 0) { + # Validate range + if ($MaximumInstanceCount -lt $min -or $MaximumInstanceCount -gt $max) { + $errorMessage = "Invalid MaximumInstanceCount '{0}'. Allowed range for this runtime is {1} - {2}. " + + "Use a value within the supported range." -f $MaximumInstanceCount, $min, $max + $exception = [System.ArgumentOutOfRangeException]::new('MaximumInstanceCount', $MaximumInstanceCount, $errorMessage) + ThrowTerminatingError -ErrorId "MaximumInstanceCountOutOfRange" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidArgument) ` + -Exception $exception + } + } + else + { + # If not provided, set to default + $MaximumInstanceCount = $default + } + + return $MaximumInstanceCount } \ No newline at end of file From 8f083e0e42e1adc95c9651d61c348e643d8963c1 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 5 Nov 2025 14:39:18 -0800 Subject: [PATCH 43/76] Save latest version of New-AzFunctionApp with Flex support --- .../custom/HelperFunctions.ps1 | 5 +- .../custom/New-AzFunctionApp.ps1 | 740 ++++++++++-------- 2 files changed, 399 insertions(+), 346 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 352947dc731a..9e0b5c977fe3 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -3046,10 +3046,11 @@ function ValidateIntanceMemoryMB param ( [Parameter(Mandatory=$true)] - [hashtable] + [PSCustomObject] $SkuInstanceMemoryMB, [Parameter(Mandatory=$false)] + [int] $InstanceMemoryMB ) @@ -3104,7 +3105,7 @@ function ValidateMaximumInstanceCount [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] - [hashtable] + [PSCustomObject] $SkuMaximumInstanceCount, # expects keys: lowestMaximumInstanceCount, highestMaximumInstanceCount, defaultValue [Parameter(Mandatory = $false)] diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index e7562a7b5de0..5303645883db 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -237,9 +237,6 @@ Example: [int] ${InstanceMemoryMB} = 2048, - #[Parameter(ParameterSetName="FlexConsumption", HelpMessage='Trigger configuration hashtable, e.g. @{ http = @{ perInstanceConcurrency = 6 } }')] - # [Hashtable] - # ${Trigger}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage='The maximum number of concurrent HTTP trigger invocations per instance.')] [ValidateRange(1, 1000)] [int] @@ -249,7 +246,7 @@ Example: [System.Management.Automation.SwitchParameter] ${EnableZoneRedundancy}, - [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage='Redirect all traffic made to an app using HTTP to HTTPS.')] + [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage='When the HttpsOnly property is enabled, all HTTP requests to the app are automatically redirected to HTTPS for secure communication. Using the DisableHttpsOnly switch removes this restriction, allowing HTTP traffic without redirection to HTTPS.')] [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] @@ -391,6 +388,11 @@ Example: $consumptionPlan = $PsCmdlet.ParameterSetName -eq "Consumption" $functionAppIsFlexConsumption = $PsCmdlet.ParameterSetName -eq "FlexConsumption" + $flexConsumptionStorageContainerCreated = $false + $flexConsumptionPlanCreated = $false + $appInsightCreated = $false + $functionAppCreatedSuccessfully = $false + $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 @@ -400,35 +402,26 @@ Example: $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") - #$siteConfig.PublicNetworkAccess = 'Disabled' - $functionAppDef.HttpsOnly = (-not $DisableHttpsOnly.IsPresent) + $functionAppDef.HttpsOnly = if ($DisableHttpsOnly.IsPresent) { $false } else { $true } ValidateFunctionAppNameAvailability -Name $Name @params $runtimeJsonDefinition = $null - if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp)) + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) { - if ($functionAppIsFlexConsumption) + if (-not $FunctionsVersion) { - $OSType = "Linux" $FunctionsVersion = $DefaultFunctionsVersion + Write-Warning "FunctionsVersion not specified. Setting default value to '$FunctionsVersion'. $SetDefaultValueParameterWarningMessage" } - else - { - if (-not $FunctionsVersion) - { - $FunctionsVersion = $DefaultFunctionsVersion - Write-Warning "FunctionsVersion not specified. Setting default value to '$FunctionsVersion'. $SetDefaultValueParameterWarningMessage" - } - ValidateFunctionsVersion -FunctionsVersion $FunctionsVersion + ValidateFunctionsVersion -FunctionsVersion $FunctionsVersion - if (-not $OSType) - { - $OSType = GetDefaultOSType -Runtime $Runtime - Write-Warning "OSType not specified. Setting default value to '$OSType'. $SetDefaultValueParameterWarningMessage" - } + if (-not $OSType) + { + $OSType = GetDefaultOSType -Runtime $Runtime + Write-Warning "OSType not specified. Setting default value to '$OSType'. $SetDefaultValueParameterWarningMessage" } $runtimeJsonDefinition = GetStackDefinitionForRuntime -FunctionsVersion $FunctionsVersion -Runtime $Runtime -RuntimeVersion $RuntimeVersion -OSType $OSType @@ -445,26 +438,23 @@ Example: } - if (-not $functionAppIsFlexConsumption) + # Add app settings + if ($runtimeJsonDefinition.AppSettingsDictionary.Count -gt 0) { - # Add app settings - if ($runtimeJsonDefinition.AppSettingsDictionary.Count -gt 0) + foreach ($keyName in $runtimeJsonDefinition.AppSettingsDictionary.Keys) { - foreach ($keyName in $runtimeJsonDefinition.AppSettingsDictionary.Keys) - { - $value = $runtimeJsonDefinition.AppSettingsDictionary[$keyName] - $appSettings.Add((NewAppSetting -Name $keyName -Value $value)) - } + $value = $runtimeJsonDefinition.AppSettingsDictionary[$keyName] + $appSettings.Add((NewAppSetting -Name $keyName -Value $value)) } + } - # Add site config properties - if ($runtimeJsonDefinition.SiteConfigPropertiesDictionary.Count -gt 0) + # Add site config properties + if ($runtimeJsonDefinition.SiteConfigPropertiesDictionary.Count -gt 0) + { + foreach ($PropertyName in $runtimeJsonDefinition.SiteConfigPropertiesDictionary.Keys) { - foreach ($PropertyName in $runtimeJsonDefinition.SiteConfigPropertiesDictionary.Keys) - { - $value = $runtimeJsonDefinition.SiteConfigPropertiesDictionary[$PropertyName] - $siteConfig.$PropertyName = $value - } + $value = $runtimeJsonDefinition.SiteConfigPropertiesDictionary[$PropertyName] + $siteConfig.$PropertyName = $value } } } @@ -619,179 +609,113 @@ Example: $functionAppDef.ManagedEnvironmentId = $managedEnvironment.Id } - if ($functionAppIsFlexConsumption) + try { - $appSettings.Clear() - $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation - $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` - -ZoneRedundant:$EnableZoneRedundancy ` - @params - - # Validate FlexConsumptionLocation - $found = $false - foreach ($region in $flexConsumptionRegions) - { - $regionName = Format-FlexConsumptionLocation -Location $region.Name - - if ($region.Name -eq $FlexConsumptionLocation) - { - $found = $true - break - } - elseif ($regionName -eq $formattedLocation) - { - $found = $true - break - } - } - - if (-not $found) + if ($functionAppIsFlexConsumption) { - $errorMessage = $null - $errorId = $null - if ($EnableZoneRedundancy) + # Reset properties not applicable for Flex Consumption + $siteConfig.NetFrameworkVersion = $null + $functionAppDef.Reserved = $null + $functionAppDef.IsXenon = $null + $appSettings.Clear() + + # Validate Flex Consumption location + $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation + $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` + -ZoneRedundant:$EnableZoneRedundancy ` + @params + + $found = $false + foreach ($region in $flexConsumptionRegions) { - $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support zone redundancy in Flex Consumption. " - $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." - $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" - } - else - { - $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support Flex Consumption. " - $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." - $errorId = "RegionNotSupportedForFlexConsumption" - } + $regionName = Format-FlexConsumptionLocation -Location $region.Name - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId $errorId ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } - - $FlexConsumptionLocation = $formattedLocation - - # Reset properties not applicable for Flex Consumption - $siteConfig.NetFrameworkVersion = $null - $functionAppDef.Reserved = $null - $functionAppDef.IsXenon = $null - - try { - - # Create Flex Consumption App Service Plan - $storageContainerCreated = $false - $flexConsumptionPlanCreated = $false - $planName = New-PlanName -ResourceGroupName $ResourceGroupName - $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` - -ResourceGroupName $ResourceGroupName ` - -Location $FlexConsumptionLocation ` - -EnableZoneRedundancy:$EnableZoneRedundancy ` - @params - - $flexConsumptionPlanCreated = $true - - $functionAppDef.ServerFarmId = $planInfo.Id - $functionAppDef.Location = $FlexConsumptionLocation - - # Validate Deployment Storage - if (-not $DeploymentStorageName) { - $DeploymentStorageName = $StorageAccountName - } - - if (-not $DeploymentStorageContainerName) - { - # Generate a unique container name - $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) - $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 - $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix - } - - # Check if container exists; create if missing - $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params - - $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ErrorAction SilentlyContinue @params - if (-not $container) - { - Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." - $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ContainerPropertyPublicAccess None ` - @params - $storageContainerCreated = $true - } - - # Blob URL - $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" - $functionAppDef.StorageType = "blobContainer" - $functionAppDef.StorageValue = $blobContainerUrl - - # Validate DeploymentStorageAuthType - if (-not $DeploymentStorageAuthType) - { - $DeploymentStorageAuthType = 'StorageAccountConnectionString' - } - - $functionAppDef.AuthenticationType = $DeploymentStorageAuthType - - # Set deployment storage authentication - if ($DeploymentStorageAuthType -eq "SystemAssignedIdentity") - { - if ($DeploymentStorageAuthValue) + if ($region.Name -eq $FlexConsumptionLocation) { - $errorMessage = "-DeploymentStorageAuthValue is only valid when -DeploymentStorageAuthType is UserAssignedIdentity or StorageAccountConnectionString." - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId $errorId ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + $found = $true + break } - } - elseif ($DeploymentStorageAuthType -eq "StorageAccountConnectionString") - { - if (-not $DeploymentStorageAuthValue) + elseif ($regionName -eq $formattedLocation) { - Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." - $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params + $found = $true + break } - - $DEPLOYMENT_STORAGE_CONNECTION_STRING = 'DEPLOYMENT_STORAGE_CONNECTION_STRING' - - $functionAppDef.AuthenticationStorageAccountConnectionStringName = $DEPLOYMENT_STORAGE_CONNECTION_STRING - $appSettings.Add((NewAppSetting -Name $DEPLOYMENT_STORAGE_CONNECTION_STRING -Value $DeploymentStorageAuthValue)) } - elseif ($DeploymentStorageAuthType -eq "UserAssignedIdentity") + + if (-not $found) { - if (-not $DeploymentStorageAuthValue) + $errorMessage = $null + $errorId = $null + if ($EnableZoneRedundancy.IsPresent) { - $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 = "The specified location '$FlexConsumptionLocation' doesn't support zone redundancy in Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." + $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" + } + else + { + $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." + $errorId = "RegionNotSupportedForFlexConsumption" } - # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity - $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params - $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } - # Parse the version from LinuxFxVersion - $runtimeName = $runtimeJsonDefinition.siteConfigPropertiesDictionary["LinuxFxVersion"].Split("|")[0] - $runtimeVersion = $runtimeJsonDefinition.siteConfigPropertiesDictionary["LinuxFxVersion"].Split("|")[1] + $FlexConsumptionLocation = $formattedLocation - # Set runtime information - $functionAppDef.RuntimeName = $runtimeName - $functionAppDef.RuntimeVersion = $runtimeVersion + # Validate runtime and runtime version + $runtimeInfo = $null + if (-not [string]::IsNullOrEmpty($RuntimeVersion)) + { + # If not version is not found, the helper function will error out. + $runtimeInfo = Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -Version $RuntimeVersion + } + else + { + $runtimeInfo = Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -Version $RuntimeVersion -DefaultOrLatest:$true + $RuntimeVersion = $runtimeInfo.Version + Write-Warning "RuntimeVersion not specified. Setting default value to '$RuntimeVersion'. $SetDefaultValueParameterWarningMessage" + } - if ($AlwaysReady) + # TODO: Validate end of life for runtime version + # if ($runtimeInfo.EndOfLifeDate) + # { + # $today = Get-Today + # $sixMonthsFromToday = (Get-Today).AddMonths(6) + # $endOfLifeDate = $runtimeInfo.EndOfLifeDate + # $formattedEOLDate = ([DateTime]$endOfLifeDate).ToString("MMMM dd yyyy") + + # $defaultRuntimeVersion = GetDefaultOrLatestRuntimeVersion -SupportedRuntimes $supportedRuntimes ` + # -Runtime $Runtime ` + # -FunctionsExtensionVersion $functionsExtensionVersion + + # if ($endOfLifeDate -le $today) + # { + # $errorMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion has reached end-of-life " + # $errorMsg += "on $formattedEOLDate and is no longer supported. Learn more: aka.ms/FunctionsStackUpgrade." + + # $exception = [System.InvalidOperationException]::New($errorMsg) + # ThrowTerminatingError -ErrorId "RuntimeVersionEndOfLife" ` + # -ErrorMessage $errorMsg ` + # -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + # -Exception $exception + # } + # elseif ($endOfLifeDate -lt $sixMonthsFromToday) + # { + # $warningMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion will reach end-of-life on $formattedEOLDate" + # $warningMsg += " and will no longer be supported. Learn more: aka.ms/FunctionsStackUpgrade." + # Write-Warning $warningMsg + # } + # } + + # Validate and set AlwaysReady configuration + if ($AlwaysReady -and $AlwaysReady.Count -gt 0) { - # Validate AlwaysReady $NAME = 'name' $INSTANCECOUNT = 'instanceCount' @@ -802,9 +726,9 @@ Example: $errorMessage = "Each hashtable in AlwaysReady must contain '$NAME' and '$INSTANCECOUNT' keys." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyConfiguration" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } # Validate that Name is a non-empty string @@ -813,9 +737,9 @@ Example: $errorMessage = "Name in AlwaysReady must be a non-empty string." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyName" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } # Validate that InstanceCount is a non-negative integer @@ -824,9 +748,9 @@ Example: $errorMessage = "InstanceCount in AlwaysReady must be a valid integer." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } if ([int]$entry[$INSTANCECOUNT] -lt 0) @@ -834,9 +758,9 @@ Example: $errorMessage = "InstanceCount in AlwaysReady must be a non-negative integer." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } } @@ -844,12 +768,10 @@ Example: } # Set scaling information - # TODO: Set default values if not provided? Currently they are optional parameters. - # If not provided, the service will use its own defaults. - # TODO: Validate MaximumInstanceCount and InstanceMemoryMB ranges - Need Thiago's input on valid ranges. if ($MaximumInstanceCount -gt 0) { - $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $MaximumInstanceCount + $maximumInstanceCountValue = ValidateMaximumInstanceCount -SkuMaximumInstanceCount $runtimeInfo.Sku.maximumInstanceCount -MaximumInstanceCount $MaximumInstanceCount + $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $maximumInstanceCountValue } if ($InstanceMemoryMB -gt 0) @@ -861,189 +783,319 @@ Example: { $functionAppDef.HttpPerInstanceConcurrency = $HttpPerInstanceConcurrency } - } - catch - { - # TODO: We need a similar cleanup logic for when we fail to create the function app. - if ($flexConsumptionPlanCreated) - { - Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params - } - if ($storageContainerCreated) - { - Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params - } - $errorMessage = "Failed to create Flex Consumption Function App. Exception: $_" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "FailedToCreateFlexConsumptionFunctionApp" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } - } + try { - # Validate storage account and get connection string - $connectionString = GetConnectionString -StorageAccountName $StorageAccountName @params - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) + # Create Flex Consumption App Service Plan + $planName = New-PlanName -ResourceGroupName $ResourceGroupName + $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` + -ResourceGroupName $ResourceGroupName ` + -Location $FlexConsumptionLocation ` + -EnableZoneRedundancy:$EnableZoneRedundancy ` + @params - if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) - { - $appSettings.Add((NewAppSetting -Name 'FUNCTIONS_EXTENSION_VERSION' -Value "~$FunctionsVersion")) - } + $flexConsumptionPlanCreated = $true - # If plan is not consumption, elastic premium or a container app environment, set always on - $planIsElasticPremium = $servicePlan.SkuTier -eq 'ElasticPremium' - if ((-not $consumptionPlan) -and (-not $planIsElasticPremium) -and (-not $Environment) -and (-not $functionAppIsFlexConsumption)) - { - $siteConfig.AlwaysOn = $true - } + $functionAppDef.ServerFarmId = $planInfo.Id + $functionAppDef.Location = $FlexConsumptionLocation - # If plan is Elastic Premium or Consumption (Windows or Linux), we need these app settings - if ($planIsElasticPremium -or $consumptionPlan) - { - $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTAZUREFILECONNECTIONSTRING' -Value $connectionString)) + # Validate Deployment Storage + if (-not $DeploymentStorageName) { + $DeploymentStorageName = $StorageAccountName + } - $shareName = GetShareName -FunctionAppName $Name - $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTSHARE' -Value $shareName)) - } + if (-not $DeploymentStorageContainerName) + { + # Generate a unique container name + $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + } - # Set up Dashboard if no ApplicationInsights - if ($DisableApplicationInsights -and (-not $functionAppIsFlexConsumption)) - { - $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) - } + # Check if container exists; create if missing + $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params - # Set up Application Insights - # TODO: Need to figure out how to get the app insight connection string - if (-not $DisableApplicationInsights) - { - if ($ApplicationInsightsKey) - { - $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $ApplicationInsightsKey)) - } - elseif ($ApplicationInsightsName) - { - $appInsightsProject = GetApplicationInsightsProject -Name $ApplicationInsightsName @params - if (-not $appInsightsProject) + $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ErrorAction SilentlyContinue @params + if (-not $container) + { + Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." + $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + @params + $flexConsumptionStorageContainerCreated = $true + } + + # Blob URL + $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" + $functionAppDef.StorageType = "blobContainer" + $functionAppDef.StorageValue = $blobContainerUrl + + # Validate DeploymentStorageAuthType + if (-not $DeploymentStorageAuthType) + { + $DeploymentStorageAuthType = 'StorageAccountConnectionString' + } + + $functionAppDef.AuthenticationType = $DeploymentStorageAuthType + + # Set deployment storage authentication + if ($DeploymentStorageAuthType -eq "SystemAssignedIdentity") + { + if ($DeploymentStorageAuthValue) + { + $errorMessage = "-DeploymentStorageAuthValue is only valid when -DeploymentStorageAuthType is UserAssignedIdentity or StorageAccountConnectionString." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + } + elseif ($DeploymentStorageAuthType -eq "StorageAccountConnectionString") + { + if (-not $DeploymentStorageAuthValue) + { + Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." + $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params + } + + $DEPLOYMENT_STORAGE_CONNECTION_STRING = 'DEPLOYMENT_STORAGE_CONNECTION_STRING' + + $functionAppDef.AuthenticationStorageAccountConnectionStringName = $DEPLOYMENT_STORAGE_CONNECTION_STRING + $appSettings.Add((NewAppSetting -Name $DEPLOYMENT_STORAGE_CONNECTION_STRING -Value $DeploymentStorageAuthValue)) + } + elseif ($DeploymentStorageAuthType -eq "UserAssignedIdentity") + { + if (-not $DeploymentStorageAuthValue) + { + $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 + } + + # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params + $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id + } + + # Set runtime information + $functionAppDef.RuntimeName = $runtimeInfo.Sku.functionAppConfigProperties.runtime.name + $functionAppDef.RuntimeVersion = $runtimeInfo.Sku.functionAppConfigProperties.runtime.version + } + catch { - $errorMessage = "Failed to get application insights project name '$ApplicationInsightsName'. Please make sure the project exist." + # TODO: We need a similar cleanup logic for when we fail to create the function app. + if ($flexConsumptionPlanCreated) + { + Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params + } + if ($flexConsumptionStorageContainerCreated) + { + Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params + } + + $errorMessage = "Failed to create Flex Consumption Function App. Exception: $_" $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "ApplicationInsightsProjectNotFound" ` + ThrowTerminatingError -ErrorId "FailedToCreateFlexConsumptionFunctionApp" ` -ErrorMessage $errorMessage ` -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception } - - #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) - $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $appInsightsProject.ConnectionString)) } - else + + # Validate storage account and get connection string + $connectionString = GetConnectionString -StorageAccountName $StorageAccountName @params + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsStorage' -Value $connectionString)) + + if (-not ($functionAppIsCustomDockerImage -or $environmentForContainerApp -or $functionAppIsFlexConsumption)) { - Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose - $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` - -ResourceName $Name ` - -Location $functionAppDef.Location ` - @params - if ($newAppInsightsProject) - { - #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $newAppInsightsProject.InstrumentationKey)) - $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) - } - else - { - $warningMessage = "Unable to create the Application Insights for the function app. Creation of Application Insights will help you monitor and diagnose your function apps in the Azure Portal. `r`n" - $warningMessage += "Use the 'New-AzApplicationInsights' cmdlet or the Azure Portal to create a new Application Insights project. After that, use the 'Update-AzFunctionApp' cmdlet to update Application Insights for your function app." - Write-Warning $warningMessage - } + $appSettings.Add((NewAppSetting -Name 'FUNCTIONS_EXTENSION_VERSION' -Value "~$FunctionsVersion")) } - } - if ($Tag.Count -gt 0) - { - $resourceTag = NewResourceTag -Tag $Tag - $functionAppDef.Tag = $resourceTag - } + # If plan is not consumption, elastic premium or a container app environment, set always on + $planIsElasticPremium = $servicePlan.SkuTier -eq 'ElasticPremium' + if ((-not $consumptionPlan) -and (-not $planIsElasticPremium) -and (-not $Environment) -and (-not $functionAppIsFlexConsumption)) + { + $siteConfig.AlwaysOn = $true + } - # Add user app settings - if ($AppSetting.Count -gt 0) - { - foreach ($keyName in $AppSetting.Keys) + # If plan is Elastic Premium or Consumption (Windows or Linux), we need these app settings + if ($planIsElasticPremium -or $consumptionPlan) { - $appSettings.Add((NewAppSetting -Name $keyName -Value $AppSetting[$keyName])) + $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTAZUREFILECONNECTIONSTRING' -Value $connectionString)) + + $shareName = GetShareName -FunctionAppName $Name + $appSettings.Add((NewAppSetting -Name 'WEBSITE_CONTENTSHARE' -Value $shareName)) } - } - # Set function app managed identity - if ($IdentityType) - { - $functionAppDef.IdentityType = $IdentityType + # Set up Dashboard if no ApplicationInsights + if ($DisableApplicationInsights -and (-not $functionAppIsFlexConsumption)) + { + $appSettings.Add((NewAppSetting -Name 'AzureWebJobsDashboard' -Value $connectionString)) + } - if ($IdentityType -eq "UserAssigned") + # Set up Application Insights + if (-not $DisableApplicationInsights) { - # Set UserAssigned managed identiy - if (-not $IdentityID) + if ($ApplicationInsightsKey) { - $errorMessage = "IdentityID is required for UserAssigned identity" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "IdentityIDIsRequiredForUserAssignedIdentity" ` + $appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $ApplicationInsightsKey)) + } + elseif ($ApplicationInsightsName) + { + $appInsightsProject = GetApplicationInsightsProject -Name $ApplicationInsightsName @params + if (-not $appInsightsProject) + { + $errorMessage = "Failed to get application insights project name '$ApplicationInsightsName'. Please make sure the project exist." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "ApplicationInsightsProjectNotFound" ` -ErrorMessage $errorMessage ` -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception + } + #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $appInsightsProject.ConnectionString)) + } + else + { + Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose + $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` + -ResourceName $Name ` + -Location $functionAppDef.Location ` + @params + if ($newAppInsightsProject) + { + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) + $appInsightCreated = $true + } + else + { + $warningMessage = "Unable to create the Application Insights for the function app. Creation of Application Insights will help you monitor and diagnose your function apps in the Azure Portal. `r`n" + $warningMessage += "Use the 'New-AzApplicationInsights' cmdlet or the Azure Portal to create a new Application Insights project. After that, use the 'Update-AzFunctionApp' cmdlet to update Application Insights for your function app." + Write-Warning $warningMessage + } } + } - $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + if ($Tag.Count -gt 0) + { + $resourceTag = NewResourceTag -Tag $Tag + $functionAppDef.Tag = $resourceTag } - } - # Set app settings and site configuration - $siteConfig.AppSetting = $appSettings - $functionAppDef.Config = $siteConfig - $PSBoundParameters.Add("SiteEnvelope", $functionAppDef) | Out-Null + # Add user app settings + if ($AppSetting.Count -gt 0) + { + foreach ($keyName in $AppSetting.Keys) + { + $appSettings.Add((NewAppSetting -Name $keyName -Value $AppSetting[$keyName])) + } + } - if ($PsCmdlet.ShouldProcess($Name, "Creating function app")) - { - # Save the ErrorActionPreference - $currentErrorActionPreference = $ErrorActionPreference - $ErrorActionPreference = 'Stop' + # Set function app managed identity + if ($IdentityType) + { + $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 - $exceptionThrown = $false + } - try - { - Az.Functions.internal\New-AzFunctionApp @PSBoundParameters + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } } - catch + + # Set app settings and site configuration + $siteConfig.AppSetting = $appSettings + $functionAppDef.Config = $siteConfig + $PSBoundParameters.Add("SiteEnvelope", $functionAppDef) | Out-Null + + if ($PsCmdlet.ShouldProcess($Name, "Creating function app")) { - $exceptionThrown = $true + # Save the ErrorActionPreference + $currentErrorActionPreference = $ErrorActionPreference + $ErrorActionPreference = 'Stop' - $errorMessage = GetErrorMessage -Response $_ + $exceptionThrown = $false - if ($errorMessage) + try { - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "FailedToCreateFunctionApp" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + Az.Functions.internal\New-AzFunctionApp @PSBoundParameters + $functionAppCreatedSuccessfully = $true } + catch + { + $exceptionThrown = $true - throw $_ + $errorMessage = GetErrorMessage -Response $_ + + if ($errorMessage) + { + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToCreateFunctionApp" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + throw $_ + } + finally + { + # Reset the ErrorActionPreference + $ErrorActionPreference = $currentErrorActionPreference + + if (-not $exceptionThrown) + { + if ($consumptionPlan -and $OSIsLinux) + { + $message = "Your Linux function app '$Name', that uses a consumption plan has been successfully created but is not active until content is published using Azure Portal or the Functions Core Tools." + Write-Verbose $message -Verbose + } + } + } } - finally + } + finally + { + # Cleanup created resources in case of failure + if (-not $functionAppCreatedSuccessfully) { - # Reset the ErrorActionPreference - $ErrorActionPreference = $currentErrorActionPreference - } + if ($flexConsumptionPlanCreated) + { + Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params + } + if ($flexConsumptionStorageContainerCreated) + { + Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params + } - if (-not $exceptionThrown) - { - if ($consumptionPlan -and $OSIsLinux) + if ($appInsightCreated -and ($null -ne $newAppInsightsProject)) { - $message = "Your Linux function app '$Name', that uses a consumption plan has been successfully created but is not active until content is published using Azure Portal or the Functions Core Tools." - Write-Verbose $message -Verbose + $ApplicationInsightsName = $newAppInsightsProject.Name + Remove-AzApplicationInsights -ResourceGroupName $ResourceGroupName -Name $ApplicationInsightsName @params + #Az.Functions.internal\Remove-AzAppInsights } } } From 4c44cb6af562eaf89f00bde95bea7c0389ced00c Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 10:24:37 -0800 Subject: [PATCH 44/76] Consolidate validation logic for the Flex region --- ...et-AzFunctionAppFlexConsumptionRuntime.ps1 | 3 + .../custom/HelperFunctions.ps1 | 133 +++++++++++++++++- .../custom/New-AzFunctionApp.ps1 | 87 +++++------- 3 files changed, 162 insertions(+), 61 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 index be2e5de688bb..e7fa676b07cd 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -32,6 +32,9 @@ function Get-AzFunctionAppFlexConsumptionRuntime { RegisterFunctionsTabCompleters + # Validate Flex Consumption location + Validate-FlexConsumptionLocation -Location $Location + switch ($PSCmdlet.ParameterSetName) { 'AllRuntimes' { # Return all runtimes diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 9e0b5c977fe3..f944adc92c7e 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -1859,6 +1859,7 @@ function GetFunctionAppStackDefinition $apiEndPoint = $null $params = @{} + $apiVersion = '2020-10-01' if ($StackType -eq "PremiumAndConsumption") { @@ -1866,17 +1867,25 @@ function GetFunctionAppStackDefinition stackOsType = 'All' removeDeprecatedStacks = 'true' } - $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version=2020-10-01" + + $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/functionAppStacks?api-version={0}" -f $apiVersion } elseif ($StackType -eq "FlexConsumption") { - $ApiVersion = '2020-10-01' $removeDeprecatedStacks = $true $removeHiddenStacks = $true - $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/locations/{0}/functionAppStacks?api-version={1}&removeHiddenStacks={2}&removeDeprecatedStacks={3}&stack={4}" -f ` - $Location, $ApiVersion, $removeHiddenStacks.ToString().ToLower(), $removeDeprecatedStacks.ToString().ToLower(), $Runtime.ToString().ToLower() + + $apiEndPoint = $resourceManagerUrl + + "providers/Microsoft.Web/locations/{0}/functionAppStacks?api-version={1}&removeHiddenStacks={2}&removeDeprecatedStacks={3}&stack={4}&sku=FC1" -f ` + $Location, + $apiVersion, + $removeHiddenStacks.ToString().ToLower(), + $removeDeprecatedStacks.ToString().ToLower(), + $Runtime.ToString().ToLower() } + Write-Debug "$DEBUG_PREFIX Target API endpoint: $apiEndPoint" + $maxNumberOfTries = 3 $currentCount = 1 @@ -3130,7 +3139,8 @@ function ValidateMaximumInstanceCount $max = [int]$SkuMaximumInstanceCount.highestMaximumInstanceCount $default = [int]$SkuMaximumInstanceCount.defaultValue - if ($MaximumInstanceCount -gt 0) { + if ($MaximumInstanceCount -gt 0) + { # Validate range if ($MaximumInstanceCount -lt $min -or $MaximumInstanceCount -gt $max) { $errorMessage = "Invalid MaximumInstanceCount '{0}'. Allowed range for this runtime is {1} - {2}. " + @@ -3149,4 +3159,115 @@ function ValidateMaximumInstanceCount } return $MaximumInstanceCount -} \ No newline at end of file +} + +function Test-FlexConsumptionLocation { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + [CmdletBinding()] + param( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $Location, + + [Parameter(Mandatory = $false)] + [System.Management.Automation.SwitchParameter] + $ZoneRedundant, + + $SubscriptionId, + $HttpPipelineAppend, + $HttpPipelinePrepend + ) + + $paramsToRemove = @( + "Location" + "ZoneRedundant" + ) + foreach ($paramName in $paramsToRemove) + { + if ($PSBoundParameters.ContainsKey($paramName)) + { + $PSBoundParameters.Remove($paramName) | Out-Null + } + } + + # Validate Flex Consumption location + $formattedLocation = Format-FlexConsumptionLocation -Location $Location + $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters + + $found = $false + foreach ($region in $flexConsumptionRegions) + { + $regionName = Format-FlexConsumptionLocation -Location $region.Name + + if ($region.Name -eq $FlexConsumptionLocation) + { + $found = $true + break + } + elseif ($regionName -eq $formattedLocation) + { + $found = $true + break + } + } + + return $found +} + +function Validate-FlexConsumptionLocation +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $Location, + + [Parameter(Mandatory = $false)] + [System.Management.Automation.SwitchParameter] + $ZoneRedundant, + + $SubscriptionId, + $HttpPipelineAppend, + $HttpPipelinePrepend + ) + + $paramsToRemove = @( + "Location" + "ZoneRedundant" + ) + foreach ($paramName in $paramsToRemove) + { + if ($PSBoundParameters.ContainsKey($paramName)) + { + $PSBoundParameters.Remove($paramName) | Out-Null + } + } + + $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters + + if (-not $isRegionSupported) + { + $errorMessage = $null + $errorId = $null + if ($ZoneRedundant.IsPresent) + { + $errorMessage = "The specified location '$Location' doesn't support zone redundancy in Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." + $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" + } + else + { + $errorMessage = "The specified location '$Location' doesn't support Flex Consumption. " + $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." + $errorId = "RegionNotSupportedForFlexConsumption" + } + + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } +} diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 5303645883db..0784e84035bc 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -619,54 +619,32 @@ Example: $functionAppDef.IsXenon = $null $appSettings.Clear() - # Validate Flex Consumption location - $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation - $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` - -ZoneRedundant:$EnableZoneRedundancy ` - @params - - $found = $false - foreach ($region in $flexConsumptionRegions) - { - $regionName = Format-FlexConsumptionLocation -Location $region.Name - - if ($region.Name -eq $FlexConsumptionLocation) - { - $found = $true - break - } - elseif ($regionName -eq $formattedLocation) - { - $found = $true - break - } - } - - if (-not $found) - { - $errorMessage = $null - $errorId = $null - if ($EnableZoneRedundancy.IsPresent) - { - $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support zone redundancy in Flex Consumption. " - $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." - $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" - } - else - { - $errorMessage = "The specified location '$FlexConsumptionLocation' doesn't support Flex Consumption. " - $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." - $errorId = "RegionNotSupportedForFlexConsumption" - } + # # Validate Flex Consumption location + # $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation + # $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` + # -ZoneRedundant:$EnableZoneRedundancy ` + # @params + + # $found = $false + # foreach ($region in $flexConsumptionRegions) + # { + # $regionName = Format-FlexConsumptionLocation -Location $region.Name - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId $errorId ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } + # if ($region.Name -eq $FlexConsumptionLocation) + # { + # $found = $true + # break + # } + # elseif ($regionName -eq $formattedLocation) + # { + # $found = $true + # break + # } + # } - $FlexConsumptionLocation = $formattedLocation + # Validate Flex Consumption location + Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation ZoneRedundant:$EnableZoneRedundancy @params + $FlexConsumptionLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation # Validate runtime and runtime version $runtimeInfo = $null @@ -1065,14 +1043,14 @@ Example: { # Reset the ErrorActionPreference $ErrorActionPreference = $currentErrorActionPreference + } - if (-not $exceptionThrown) + if (-not $exceptionThrown) + { + if ($consumptionPlan -and $OSIsLinux) { - if ($consumptionPlan -and $OSIsLinux) - { - $message = "Your Linux function app '$Name', that uses a consumption plan has been successfully created but is not active until content is published using Azure Portal or the Functions Core Tools." - Write-Verbose $message -Verbose - } + $message = "Your Linux function app '$Name', that uses a consumption plan has been successfully created but is not active until content is published using Azure Portal or the Functions Core Tools." + Write-Verbose $message -Verbose } } } @@ -1084,7 +1062,7 @@ Example: { if ($flexConsumptionPlanCreated) { - Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params + Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params -Force } if ($flexConsumptionStorageContainerCreated) { @@ -1094,8 +1072,7 @@ Example: if ($appInsightCreated -and ($null -ne $newAppInsightsProject)) { $ApplicationInsightsName = $newAppInsightsProject.Name - Remove-AzApplicationInsights -ResourceGroupName $ResourceGroupName -Name $ApplicationInsightsName @params - #Az.Functions.internal\Remove-AzAppInsights + Az.Functions.internal\Remove-AzAppInsights -ResourceGroupName $ResourceGroupName -ResourceName $ApplicationInsightsName @params } } } From 61a9c11a2a6f7051c6496fc27071bd7ffc5ba579 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 11:18:21 -0800 Subject: [PATCH 45/76] Update tests to use the latest runtime and remove duplicate coverage --- .../test/New-AzFunctionApp.Tests.ps1 | 55 +++++++------------ 1 file changed, 20 insertions(+), 35 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 449b1c9c5298..9c2b01a2a563 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -212,13 +212,11 @@ Describe 'New-AzFunctionApp' { $runtimeVersionNotSupported = @{ "Linux" = @{ "4" = @{ - "Node" = "10" "Python" = "3.6" } } "Windows" = @{ "4" = @{ - "Node" = "10" "PowerShell" = "6.2" } } @@ -320,6 +318,12 @@ Describe 'New-AzFunctionApp' { $planName = $env.planNameWorkerTypeLinux Write-Verbose "Plan name: $planName" -Verbose + $runtime = "python" + Write-Verbose "runtime: $runtime" -Verbose + + $runtimeVersion = "3.13" + Write-Verbose "Runtime version: $runtimeVersion" -Verbose + try { Write-Verbose "Creating Linux function app with Python runtime" -Verbose @@ -327,15 +331,15 @@ Describe 'New-AzFunctionApp' { -ResourceGroupName $resourceGroupName ` -PlanName $planName ` -StorageAccount $storageAccountName ` - -Runtime Python ` - -RuntimeVersion "3.12" ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 Write-Verbose "Validating function app properties..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" - $functionApp.Runtime | Should -Be "Python" - $functionApp.SiteConfig.LinuxFxVersion | Should -Be "Python|3.12" + $functionApp.Runtime | Should -Be $runtime + $functionApp.SiteConfig.LinuxFxVersion | Should -Be "$runtime|$runtimeVersion" Write-Verbose "Validating app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName @@ -611,6 +615,12 @@ Describe 'New-AzFunctionApp' { $location = $env.location Write-Verbose "Location: $location" -Verbose + $runtime = "dotnet" + Write-Verbose "Runtime: $runtime" -Verbose + + $runtimeVersion = 8 + Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + try { Write-Verbose "Creating a DotNet function app in consumption for Linux" -Verbose @@ -618,16 +628,16 @@ Describe 'New-AzFunctionApp' { -ResourceGroupName $resourceGroupName ` -Location $location ` -StorageAccount $storageAccountName ` - -Runtime DotNet ` - -RuntimeVersion 6 ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` -OSType Linux Write-Verbose "Validating function app properties..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" - $functionApp.Runtime | Should -Be "DotNet" - $functionApp.SiteConfig.LinuxFxVersion | Should -Be "dotnet|6.0" + $functionApp.Runtime | Should -Be $runtime + $functionApp.SiteConfig.LinuxFxVersion | Should -Be "$runtime|$runtimeVersion" } finally { @@ -721,18 +731,6 @@ Describe 'New-AzFunctionApp' { "LinuxFxVersion" = "Node|22" } } - @{ - "Name" = $env.functionNamePowerShell - "Runtime" = "PowerShell" - "RuntimeVersion" = "7.4" - "StorageAccountName" = $env.storageAccountLinux - "ResourceGroupName" = $env.resourceGroupNameLinuxConsumption - "Location" = $env.location - "OSType" = "Linux" - "ExpectedSiteConfig" = @{ - "LinuxFxVersion" = "PowerShell|7.4" - } - } # Premium function app service plan @{ "Name" = $env.functionNameDotNetIsolated @@ -749,19 +747,6 @@ Describe 'New-AzFunctionApp' { "FUNCTIONS_WORKER_RUNTIME" = "dotnet-isolated" } } - @{ - "Name" = $env.functionNameJava - "Runtime" = "Java" - "RuntimeVersion" = "21" - "StorageAccountName" = $env.storageAccountWindows - "ResourceGroupName" = $env.resourceGroupNameWindowsPremium - "PlanName" = $env.planNameWorkerTypeWindows - "OSType" = "Windows" - "ExpectedSiteConfig" = @{ - "JavaVersion" = "21" - "netFrameworkVersion" = "v6.0" - } - } @{ "Name" = $env.functionNameCustomHandler "Runtime" = "Custom" From 401418cbe146950e788b73372e7a6484883f534e Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 14:04:12 -0800 Subject: [PATCH 46/76] Update New-AzFunctionApp.Tests --- ...unctionAppFlexConsumptionRuntime.Tests.ps1 | 216 ++++++++++++++++++ .../test/New-AzFunctionApp.Tests.ps1 | 6 +- 2 files changed, 220 insertions(+), 2 deletions(-) create mode 100644 src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 new file mode 100644 index 000000000000..cdc8c085bac4 --- /dev/null +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 @@ -0,0 +1,216 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzFunctionAppFlexConsumptionRuntime')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzFunctionAppFlexConsumptionRuntime.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { + + BeforeAll { + $testLocation = 'East Asia' + } + + It 'Should get all available runtimes for Flex Consumption' { + $runtimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation + + $runtimes | Should -Not -BeNullOrEmpty + $runtimes | Should -BeOfType [System.Object] + + # Verify common runtime properties exist + $runtimes[0] | Should -HaveProperty 'Name' + $runtimes[0] | Should -HaveProperty 'Version' + $runtimes[0] | Should -HaveProperty 'IsDefault' + $runtimes[0] | Should -HaveProperty 'EndOfLifeDate' + $runtimes[0] | Should -HaveProperty 'Sku' + + # Verify expected runtimes are available for Flex Consumption + $runtimeNames = $runtimes | Select-Object -ExpandProperty Name -Unique + $runtimeNames | Should -Contain 'dotnet-isolated' + $runtimeNames | Should -Contain 'node' + $runtimeNames | Should -Contain 'python' + $runtimeNames | Should -Contain 'java' + } + + It 'Should get specific runtime versions for dotnet-isolated' { + $dotnetRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' + + $dotnetRuntimes | Should -Not -BeNullOrEmpty + $dotnetRuntimes | ForEach-Object { + $_.Name | Should -Be 'dotnet-isolated' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + } + + # Should contain common .NET versions + $versions = $dotnetRuntimes | Select-Object -ExpandProperty Version + $versions | Should -Contain '8.0' + } + + It 'Should get specific runtime versions for node' { + $nodeRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' + + $nodeRuntimes | Should -Not -BeNullOrEmpty + $nodeRuntimes | ForEach-Object { + $_.Name | Should -Be 'node' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + } + + # Should contain common Node.js versions (updated to actual supported versions) + $versions = $nodeRuntimes | Select-Object -ExpandProperty Version + $versions | Should -Contain '20' + $versions | Should -Contain '22' + } + + It 'Should get specific runtime versions for python' { + $pythonRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + + $pythonRuntimes | Should -Not -BeNullOrEmpty + $pythonRuntimes | ForEach-Object { + $_.Name | Should -Be 'python' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + } + + # Should contain common Python versions + $versions = $pythonRuntimes | Select-Object -ExpandProperty Version + $versions | Should -Contain '3.10' + $versions | Should -Contain '3.11' + $versions | Should -Contain '3.12' + $versions | Should -Contain '3.13' + } + + It 'Should get specific runtime versions for java' { + $javaRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' + + $javaRuntimes | Should -Not -BeNullOrEmpty + $javaRuntimes | ForEach-Object { + $_.Name | Should -Be 'java' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + } + + # Should contain common Java versions (updated to actual supported versions) + $versions = $javaRuntimes | Select-Object -ExpandProperty Version + $versions | Should -Contain '17' + $versions | Should -Contain '21' + } + + It 'Should get specific runtime and version combination' { + $specificRuntime = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' -Version '8.0' + + $specificRuntime | Should -Not -BeNullOrEmpty + $specificRuntime.Name | Should -Be 'dotnet-isolated' + $specificRuntime.Version | Should -Be '8.0' + $specificRuntime | Should -HaveProperty 'IsDefault' + $specificRuntime | Should -HaveProperty 'EndOfLifeDate' + $specificRuntime.Sku.skuCode | Should -Be 'FC1' + } + + It 'Should get default or latest version for runtime' { + $defaultRuntime = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -DefaultOrLatest + + $defaultRuntime | Should -Not -BeNullOrEmpty + $defaultRuntime.Name | Should -Be 'node' + $defaultRuntime.Version | Should -Not -BeNullOrEmpty + + # Should return only one runtime (the default/latest) + $defaultRuntime | Should -HaveCount 1 + + # Should have IsDefault set to True for default runtime + $defaultRuntime.IsDefault | Should -Be $true + } + + It 'Should validate runtime objects have correct structure' { + $runtimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + + $runtimes | Should -Not -BeNullOrEmpty + + foreach ($runtime in $runtimes) { + # Required properties + $runtime | Should -HaveProperty 'Name' + $runtime | Should -HaveProperty 'Version' + $runtime | Should -HaveProperty 'IsDefault' + $runtime | Should -HaveProperty 'EndOfLifeDate' + $runtime | Should -HaveProperty 'Sku' + + # Validate property types and values + $runtime.Name | Should -Be 'python' + $runtime.Version | Should -Not -BeNullOrEmpty + $runtime.IsDefault | Should -BeOfType [System.Boolean] + $runtime.EndOfLifeDate | Should -Not -BeNullOrEmpty + $runtime.Sku | Should -Not -BeNull + $runtime.Sku.skuCode | Should -Be 'FC1' + + # Validate Sku object has expected properties + $runtime.Sku | Should -HaveProperty 'skuCode' + $runtime.Sku | Should -HaveProperty 'instanceMemoryMB' + $runtime.Sku | Should -HaveProperty 'maximumInstanceCount' + $runtime.Sku | Should -HaveProperty 'functionAppConfigProperties' + } + } + + It 'Should validate EndOfLifeDate is a valid date' { + $pythonRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + + foreach ($runtime in $pythonRuntimes) { + # EndOfLifeDate should be parseable as DateTime + { [DateTime]::Parse($runtime.EndOfLifeDate) } | Should -Not -Throw + + # EndOfLifeDate should be in the future (for current versions) + $eolDate = [DateTime]::Parse($runtime.EndOfLifeDate) + $eolDate | Should -BeGreaterThan (Get-Date) + } + } + + It 'Should have at least one default version per runtime (excluding custom)' { + $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation + $runtimeNames = $allRuntimes | Select-Object -ExpandProperty Name -Unique + + foreach ($runtimeName in $runtimeNames) { + # Skip 'custom' runtime as it may not have default versions + if ($runtimeName -eq 'custom') { + continue + } + + $runtimeVersions = $allRuntimes | Where-Object { $_.Name -eq $runtimeName } + $defaultVersions = $runtimeVersions | Where-Object { $_.IsDefault -eq $true } + + $defaultVersions | Should -Not -BeNullOrEmpty -Because "Runtime '$runtimeName' should have at least one default version" + } + } + + It 'Should handle invalid runtime gracefully' { + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'invalidruntime' } | Should -Throw + } + + It 'Should handle invalid version gracefully' { + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '999.0' } | Should -Throw + } + + It 'Should handle invalid location gracefully' { + { Get-AzFunctionAppFlexConsumptionRuntime -Location 'Invalid Location' } | Should -Throw + } + + It 'Should validate parameter combinations work correctly' { + # Test that all parameter sets work without errors + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '20' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -DefaultOrLatest } | Should -Not -Throw + } +} diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 9c2b01a2a563..ca28f031e907 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -433,7 +433,7 @@ Describe 'New-AzFunctionApp' { Write-Verbose "Validating storage account connection string suffix..." -Verbose $expectedSuffix = GetStorageAccountEndpointSuffix - foreach ($appSettingName in @("AzureWebJobsStorage", "AzureWebJobsDashboard", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING")) + foreach ($appSettingName in @("AzureWebJobsStorage", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING")) { $applicationSettings[$appSettingName] | Should Match $expectedSuffix } @@ -621,6 +621,8 @@ Describe 'New-AzFunctionApp' { $runtimeVersion = 8 Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + $expectedLinuxFxVersion = "DOTNET|8.0" + try { Write-Verbose "Creating a DotNet function app in consumption for Linux" -Verbose @@ -637,7 +639,7 @@ Describe 'New-AzFunctionApp' { $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName $functionApp.OSType | Should -Be "Linux" $functionApp.Runtime | Should -Be $runtime - $functionApp.SiteConfig.LinuxFxVersion | Should -Be "$runtime|$runtimeVersion" + $functionApp.SiteConfig.LinuxFxVersion | Should -Be $expectedLinuxFxVersion } finally { From 40332c2f40daa4b5070726ae4654eb3cde335f37 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 18:38:52 -0800 Subject: [PATCH 47/76] Update tests to latest version --- ...t-AzFunctionAppAvailableLocation.Tests.ps1 | 37 +++++++++---------- ...unctionAppFlexConsumptionRuntime.Tests.ps1 | 32 +++++++--------- .../test/New-AzFunctionApp.Tests.ps1 | 11 ++++-- 3 files changed, 38 insertions(+), 42 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 index fad4799d0d06..3923842787e3 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Tests.ps1 @@ -351,28 +351,25 @@ Describe 'Get-AzFunctionAppAvailableLocation' { ValidateAvailableLocation -ActualRegions $actualRegions -ExpectedRegions $expectedRegions } - foreach ($osType in @('Linux', 'Windows')) - { - It "Validate -PlanType FlexConsumption -OSType $osType -ZoneRedundant fails" { + It "Validate -PlanType FlexConsumption -OSType Windows -ZoneRedundant fails" { - $expectedErrorMessage = "ZoneRedundant parameter is only applicable for FlexConsumption plan type." - $expectedErrorId = "ZoneRedundantIsOnlyApplicableForFlexConsumption" + $expectedErrorMessage = "ZoneRedundant parameter is only applicable for FlexConsumption plan type." + $expectedErrorId = "ZoneRedundantIsOnlyApplicableForFlexConsumption" - $myError = $null - try - { - Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -OSType $osType -ErrorAction Stop - } - catch - { - Write-Verbose "Catch the expected exception" -Verbose - $myError = $_ - } - - Write-Verbose "Validate FullyQualifiedErrorId" -Verbose - $myError.FullyQualifiedErrorId | Should Be $expectedErrorId - Write-Verbose "Validate Exception.Message" -Verbose - $myError.Exception.Message | Should Match $expectedErrorMessage + $myError = $null + try + { + Get-AzFunctionAppAvailableLocation -PlanType Premium -OSType Windows -ZoneRedundant -ErrorAction Stop + } + catch + { + Write-Verbose "Catch the expected exception" -Verbose + $myError = $_ } + + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose + $myError.FullyQualifiedErrorId | Should Be $expectedErrorId + Write-Verbose "Validate Exception.Message" -Verbose + $myError.Exception.Message | Should Match $expectedErrorMessage } } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 index cdc8c085bac4..c9e8009ecb0b 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 @@ -27,11 +27,11 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimes | Should -BeOfType [System.Object] # Verify common runtime properties exist - $runtimes[0] | Should -HaveProperty 'Name' - $runtimes[0] | Should -HaveProperty 'Version' - $runtimes[0] | Should -HaveProperty 'IsDefault' - $runtimes[0] | Should -HaveProperty 'EndOfLifeDate' - $runtimes[0] | Should -HaveProperty 'Sku' + $runtimes[0].Name | Should -Not -BeNullOrEmpty + $runtimes[0].Version | Should -Not -BeNullOrEmpty + $runtimes[0].IsDefault | Should -BeOfType [System.Boolean] + $runtimes[0].EndOfLifeDate | Should -Not -BeNullOrEmpty + $runtimes[0].Sku | Should -Not -BeNull # Verify expected runtimes are available for Flex Consumption $runtimeNames = $runtimes | Select-Object -ExpandProperty Name -Unique @@ -39,6 +39,7 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimeNames | Should -Contain 'node' $runtimeNames | Should -Contain 'python' $runtimeNames | Should -Contain 'java' + $runtimeNames | Should -Contain 'custom' } It 'Should get specific runtime versions for dotnet-isolated' { @@ -116,8 +117,8 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $specificRuntime | Should -Not -BeNullOrEmpty $specificRuntime.Name | Should -Be 'dotnet-isolated' $specificRuntime.Version | Should -Be '8.0' - $specificRuntime | Should -HaveProperty 'IsDefault' - $specificRuntime | Should -HaveProperty 'EndOfLifeDate' + $specificRuntime.IsDefault | Should -BeOfType [System.Boolean] + $specificRuntime.EndOfLifeDate | Should -Not -BeNullOrEmpty $specificRuntime.Sku.skuCode | Should -Be 'FC1' } @@ -141,14 +142,7 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimes | Should -Not -BeNullOrEmpty foreach ($runtime in $runtimes) { - # Required properties - $runtime | Should -HaveProperty 'Name' - $runtime | Should -HaveProperty 'Version' - $runtime | Should -HaveProperty 'IsDefault' - $runtime | Should -HaveProperty 'EndOfLifeDate' - $runtime | Should -HaveProperty 'Sku' - - # Validate property types and values + # Required properties validation $runtime.Name | Should -Be 'python' $runtime.Version | Should -Not -BeNullOrEmpty $runtime.IsDefault | Should -BeOfType [System.Boolean] @@ -157,10 +151,10 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtime.Sku.skuCode | Should -Be 'FC1' # Validate Sku object has expected properties - $runtime.Sku | Should -HaveProperty 'skuCode' - $runtime.Sku | Should -HaveProperty 'instanceMemoryMB' - $runtime.Sku | Should -HaveProperty 'maximumInstanceCount' - $runtime.Sku | Should -HaveProperty 'functionAppConfigProperties' + $runtime.Sku.skuCode | Should -Not -BeNullOrEmpty + $runtime.Sku.instanceMemoryMB | Should -Not -BeNullOrEmpty + $runtime.Sku.maximumInstanceCount | Should -Not -BeNullOrEmpty + $runtime.Sku.functionAppConfigProperties | Should -Not -BeNull } } diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index ca28f031e907..31278c00ecc8 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -673,6 +673,8 @@ Describe 'New-AzFunctionApp' { $runtimeVersion = 7.4 Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose + $appSettingName = "APPLICATIONINSIGHTS_CONNECTION_STRING" + try { Write-Verbose "Creating function app with -DisableApplicationInsights" -Verbose @@ -690,9 +692,9 @@ Describe 'New-AzFunctionApp' { $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be "PowerShell" - Write-Verbose "Validating that the app setting 'APPINSIGHTS_INSTRUMENTATIONKEY' does not exist..." -Verbose + Write-Verbose "Validating that the app setting '$appSettingName' does not exist..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName - $applicationSettings.ContainsKey("APPINSIGHTS_INSTRUMENTATIONKEY") | Should -Be $false + $applicationSettings.ContainsKey($appSettingName) | Should -Be $false } finally { @@ -863,7 +865,10 @@ Describe 'New-AzFunctionApp' { Write-Verbose "Validating FUNCTIONS_EXTENSION_VERSION and app settings..." -Verbose $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $resourceGroupName - $applicationSettings.FUNCTIONS_EXTENSION_VERSION | Should be "~$functionsVersion" + $applicationSettings.FUNCTIONS_EXTENSION_VERSION | Should -Be "~$functionsVersion" + + Write-Verbose "Validating that APPLICATIONINSIGHTS_CONNECTION_STRING is set..." -Verbose + $applicationSettings.APPLICATIONINSIGHTS_CONNECTION_STRING | Should -Not -BeNullOrEmpty if ($testCase.ContainsKey("ExpectedSiteConfig")) { From 47dc66087a841ceb6947a1fd0c9a98f68db1df30 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 18:42:22 -0800 Subject: [PATCH 48/76] Add test hook for Flex Consumption stack data --- .../custom/HelperFunctions.ps1 | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index f944adc92c7e..df86905db55e 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -1819,7 +1819,7 @@ function GetFunctionAppStackDefinition if ($StackType -eq "PremiumAndConsumption") { Write-Debug "$DEBUG_PREFIX Running on test mode. Using built in json file definition." - $json = Get-BuiltInFunctionAppStacksDefinition -DoNotShowWarning + $json = GetBuiltInFunctionAppStacksDefinition -DoNotShowWarning return $json } } @@ -2905,11 +2905,29 @@ function Get-FlexFunctionAppRuntime # Map dotnet-isolated -> dotnet for this endpoint $runtimeForAPI = if ($Runtime -eq 'dotnet-isolated') { 'dotnet' } else { $Runtime } + $json = $null + # Format location for Flex Consumption (remove spaces and make lowercase) $formattedLocation = Format-FlexConsumptionLocation -Location $Location + if ($env:FunctionsTestMode -and $env:FunctionsUseFlexStackTestData) + { + # Test hook to use mock Flex Consumption stacks during playback mode. + if ($formattedLocation -ne "eastasia") + { + $message = "In test mode, only 'East Asia' location is supported for Flex Consumption stack definitions." + throw $message + } + + $filePath = Join-Path -Path $PSScriptRoot "FunctionsStackFlexData/$formattedLocation/$runtimeForAPI.json" + $json = Get-Content $filePath -Raw -ErrorAction Stop + } + # Get Flex Consumption Function App Runtime Definitions - $json = GetFunctionAppStackDefinition -StackType FlexConsumption -Location $formattedLocation -Runtime $runtimeForAPI + else + { + $json = GetFunctionAppStackDefinition -StackType FlexConsumption -Location $formattedLocation -Runtime $runtimeForAPI + } if (-not $json) { From ad7ce8be75243e71cd4cc8dd298ace4f513a8751 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 18:45:08 -0800 Subject: [PATCH 49/76] Reorder runtimes alphabetically, except Custom --- .../custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 index e7fa676b07cd..8937356bd439 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -13,7 +13,7 @@ function Get-AzFunctionAppFlexConsumptionRuntime { [Parameter(ParameterSetName='ByVersion', Mandatory=$true, HelpMessage='The Flex Consumption function app runtime.')] [Parameter(ParameterSetName='AllVersions', Mandatory=$true)] [Parameter(ParameterSetName='DefaultOrLatest', Mandatory=$true)] - [ValidateSet("DotNet-Isolated", "Node", "Java", "Python", "PowerShell", "Custom")] + [ValidateSet("DotNet-Isolated", "Node", "Java", "PowerShell", "Python", "Custom")] [ValidateNotNullOrEmpty()] [System.String] ${Runtime}, @@ -38,7 +38,7 @@ function Get-AzFunctionAppFlexConsumptionRuntime { switch ($PSCmdlet.ParameterSetName) { 'AllRuntimes' { # Return all runtimes - foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "Python", "PowerShell", "Custom")) + foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "PowerShell", "Python", "Custom")) { Get-FlexFunctionAppRuntime -Location $Location -Runtime $runtimeName } From 1986ac3d5b931077cfe73caa4c8c8a2acd5299f7 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 18:53:17 -0800 Subject: [PATCH 50/76] Update apps to latest runtimes; set test hook flag --- src/Functions/Functions.Autorest/test/utils.ps1 | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 3b62e3745507..404c3055348a 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -38,6 +38,7 @@ function setupEnv() { # This is requried to support playback mode (given that we need to have the same values in teh payload for each function app creation) # Currently this flag is used to have a constant share name when creation an app $env:FunctionsTestMode = $true + $env:FunctionsUseFlexStackTestData = $true <# $localEnvFilePath = Join-Path $PSScriptRoot 'localEnv.json' @@ -181,8 +182,8 @@ function setupEnv() { StorageAccountName = $storageAccountWindows OSType = "Windows" Runtime = "DotNet" - RuntimeVersion = 6 - Name = "Functions-DotNet-6-" + (RandomString -len 6) + RuntimeVersion = 8 + Name = "Functions-DotNet-8-" + (RandomString -len 6) FunctionsVersion = 4 }, @{ @@ -191,8 +192,8 @@ function setupEnv() { Location = $location OSType = "Linux" Runtime = "Python" - RuntimeVersion = "3.10" - Name = "Functions-Python-310-" + (RandomString -len 6) + RuntimeVersion = "3.12" + Name = "Functions-Python-312-" + (RandomString -len 6) FunctionsVersion = 4 } ) @@ -269,6 +270,7 @@ function setupEnv() { function cleanupEnv() { $env:FunctionsTestMode = $null + $env:FunctionsUseFlexStackTestData = $null # Clean test resources Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsPremium @@ -276,4 +278,3 @@ function cleanupEnv() { Remove-AzResourceGroup -Name $env.resourceGroupNameWindowsConsumption Remove-AzResourceGroup -Name $env.resourceGroupNameLinuxConsumption } - From 77f426658e2e9739096f993928754ca9bcd394bb Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 19:04:37 -0800 Subject: [PATCH 51/76] Add runtime stack definitions for Flex --- .../EastAsia/custom.json | 104 ++++++ .../EastAsia/dotnet.json | 259 ++++++++++++++ .../FunctionsStackFlexData/EastAsia/java.json | 181 ++++++++++ .../FunctionsStackFlexData/EastAsia/node.json | 174 ++++++++++ .../EastAsia/powershell.json | 95 +++++ .../EastAsia/python.json | 324 ++++++++++++++++++ 6 files changed, 1137 insertions(+) create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/custom.json create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/dotnet.json create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/java.json create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/node.json create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/powershell.json create mode 100644 src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/python.json diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/custom.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/custom.json new file mode 100644 index 000000000000..97a1c8b0410a --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/custom.json @@ -0,0 +1,104 @@ +{ + "id": null, + "name": "custom", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": "Custom Handler", + "value": "custom", + "preferredOs": "windows", + "majorVersions": [ + { + "displayText": "Custom Handler", + "value": "custom", + "minorVersions": [ + { + "displayText": "Custom Handler", + "value": "custom", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "", + "isPreview": false, + "appInsightsSettings": { + "isSupported": true + }, + "remoteDebuggingSupported": false, + "gitHubActionSettings": { + "isSupported": false + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "custom" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "" + }, + "supportedFunctionsExtensionVersions": [ + "~4", + "~3", + "~2" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + }, + { + "version": "~3", + "isDeprecated": true, + "isDefault": false + }, + { + "version": "~2", + "isDeprecated": true, + "isDefault": false + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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/FunctionsStackFlexData/EastAsia/dotnet.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/dotnet.json new file mode 100644 index 000000000000..2c73cc307168 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/dotnet.json @@ -0,0 +1,259 @@ +{ + "id": null, + "name": "dotnet", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": ".NET", + "value": "dotnet", + "preferredOs": "windows", + "majorVersions": [ + { + "displayText": ".NET 10 Isolated (Preview)", + "value": "dotnet10isolated", + "minorVersions": [ + { + "displayText": ".NET 10 Isolated (Preview)", + "value": "10 (LTS), isolated worker model (Preview)", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "DOTNET-ISOLATED|10.0", + "isPreview": false, + "isDefault": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "10.0.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated", + "WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED": "1" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "DOTNET-ISOLATED|10.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": false + } + ], + "Sku": [ + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Fri Nov 10 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + }, + { + "displayText": ".NET 9 Isolated", + "value": "dotnet9isolated", + "minorVersions": [ + { + "displayText": ".NET 9 Isolated", + "value": "9 (STS), isolated worker model", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "DOTNET-ISOLATED|9.0", + "isDefault": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "9.0.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated", + "WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED": "1" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "DOTNET-ISOLATED|9.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": false + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Tue May 12 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + }, + { + "displayText": ".NET 8 Isolated", + "value": "dotnet8isolated", + "minorVersions": [ + { + "displayText": ".NET 8 Isolated", + "value": "8 (LTS), isolated worker model", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "DOTNET-ISOLATED|8.0", + "isHidden": false, + "isDefault": true, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "8.0.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated", + "WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED": "1" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "DOTNET-ISOLATED|8.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + } + ] + } +} diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/java.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/java.json new file mode 100644 index 000000000000..eac6e195142c --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/java.json @@ -0,0 +1,181 @@ +{ + "id": null, + "name": "java", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": "Java", + "value": "java", + "preferredOs": "windows", + "majorVersions": [ + { + "displayText": "Java 21", + "value": "21", + "minorVersions": [ + { + "displayText": "Java 21", + "value": "21.0", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Java|21", + "isPreview": false, + "isHidden": false, + "isAutoUpdate": true, + "isDefault": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "21" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Java|21" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Fri Sep 01 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + }, + { + "displayText": "Java 17", + "value": "17", + "minorVersions": [ + { + "displayText": "Java 17", + "value": "17.0", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Java|17", + "isPreview": false, + "isHidden": false, + "isAutoUpdate": true, + "isDefault": true, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "17" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Java|17" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Wed Sep 01 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + } + ] + } +} diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/node.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/node.json new file mode 100644 index 000000000000..da37ac4ebc41 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/node.json @@ -0,0 +1,174 @@ +{ + "id": null, + "name": "node", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": "Node.js", + "value": "node", + "preferredOs": "windows", + "majorVersions": [ + { + "displayText": "Node.js 22", + "value": "22", + "minorVersions": [ + { + "displayText": "Node.js 22", + "value": "22 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Node|22", + "isDefault": true, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "22.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Node|22" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Fri Apr 30 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + }, + { + "displayText": "Node.js 20", + "value": "20", + "minorVersions": [ + { + "displayText": "Node.js 20 LTS", + "value": "20 LTS", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Node|20", + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "20.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Node|20" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Thu Apr 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + } + ] + } +} diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/powershell.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/powershell.json new file mode 100644 index 000000000000..146f0754e8f7 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/powershell.json @@ -0,0 +1,95 @@ +{ + "id": null, + "name": "powershell", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": "PowerShell Core", + "value": "powershell", + "preferredOs": "windows", + "majorVersions": [ + { + "displayText": "PowerShell 7", + "value": "7", + "minorVersions": [ + { + "displayText": "PowerShell 7.4", + "value": "7.4", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "PowerShell|7.4", + "isDefault": true, + "isPreview": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "powershell" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "PowerShell|7.4" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + } + ] + } +} diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/python.json b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/python.json new file mode 100644 index 000000000000..f823fcabc493 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/FunctionsStackFlexData/EastAsia/python.json @@ -0,0 +1,324 @@ +{ + "id": null, + "name": "python", + "type": "Microsoft.Web/locations/functionAppStacks?stackOsType=All", + "location": "eastasia", + "properties": { + "displayText": "Python", + "value": "python", + "preferredOs": "linux", + "majorVersions": [ + { + "displayText": "Python 3", + "value": "3", + "minorVersions": [ + { + "displayText": "Python 3.13", + "value": "3.13", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.13", + "remoteDebuggingSupported": false, + "isPreview": true, + "isDefault": false, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.13" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.13" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Wed Oct 31 2029 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + }, + { + "displayText": "Python 3.12", + "value": "3.12", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.12", + "remoteDebuggingSupported": false, + "isPreview": false, + "isDefault": true, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.12" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.12" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Tue Oct 31 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + }, + { + "displayText": "Python 3.11", + "value": "3.11", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.11", + "remoteDebuggingSupported": false, + "isPreview": false, + "isDefault": true, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.11" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.11" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Sun Oct 31 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + }, + { + "displayText": "Python 3.10", + "value": "3.10", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.10", + "remoteDebuggingSupported": false, + "isPreview": false, + "isDefault": true, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.10" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.10" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "Sku": [ + { + "skuCode": "Y1" + }, + { + "skuCode": "Dedicated" + }, + { + "skuCode": "ElasticPremium" + }, + { + "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" + } + } + } + ], + "endOfLifeDate": "Sat Oct 31 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + } + } + } + ] + } + ] + } +} From 592055cd2b5973f108539006e20acddfa337982f Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 22:16:14 -0800 Subject: [PATCH 52/76] Update validate Flex Consumption location logic --- .../custom/HelperFunctions.ps1 | 155 +++++++++++++----- 1 file changed, 117 insertions(+), 38 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index df86905db55e..bbd09e3bffca 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -3179,10 +3179,10 @@ function ValidateMaximumInstanceCount return $MaximumInstanceCount } -function Test-FlexConsumptionLocation { +function Test-FlexConsumptionLocation +{ [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - [CmdletBinding()] - param( + param ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] @@ -3190,24 +3190,8 @@ function Test-FlexConsumptionLocation { [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] - $ZoneRedundant, - - $SubscriptionId, - $HttpPipelineAppend, - $HttpPipelinePrepend - ) - - $paramsToRemove = @( - "Location" - "ZoneRedundant" + $ZoneRedundant ) - foreach ($paramName in $paramsToRemove) - { - if ($PSBoundParameters.ContainsKey($paramName)) - { - $PSBoundParameters.Remove($paramName) | Out-Null - } - } # Validate Flex Consumption location $formattedLocation = Format-FlexConsumptionLocation -Location $Location @@ -3233,6 +3217,60 @@ function Test-FlexConsumptionLocation { return $found } +# function Test-FlexConsumptionLocation { +# [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] +# [CmdletBinding()] +# param( +# [Parameter(Mandatory = $true)] +# [ValidateNotNullOrEmpty()] +# [String] +# $Location, + +# [Parameter(Mandatory = $false)] +# [System.Management.Automation.SwitchParameter] +# $ZoneRedundant, + +# $SubscriptionId, +# $HttpPipelineAppend, +# $HttpPipelinePrepend +# ) + +# $paramsToRemove = @( +# "Location" +# "ZoneRedundant" +# ) +# foreach ($paramName in $paramsToRemove) +# { +# if ($PSBoundParameters.ContainsKey($paramName)) +# { +# $PSBoundParameters.Remove($paramName) | Out-Null +# } +# } + +# # Validate Flex Consumption location +# $formattedLocation = Format-FlexConsumptionLocation -Location $Location +# $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters + +# $found = $false +# foreach ($region in $flexConsumptionRegions) +# { +# $regionName = Format-FlexConsumptionLocation -Location $region.Name + +# if ($region.Name -eq $FlexConsumptionLocation) +# { +# $found = $true +# break +# } +# elseif ($regionName -eq $formattedLocation) +# { +# $found = $true +# break +# } +# } + +# return $found +# } + function Validate-FlexConsumptionLocation { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] @@ -3244,26 +3282,10 @@ function Validate-FlexConsumptionLocation [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] - $ZoneRedundant, - - $SubscriptionId, - $HttpPipelineAppend, - $HttpPipelinePrepend + $ZoneRedundant ) - $paramsToRemove = @( - "Location" - "ZoneRedundant" - ) - foreach ($paramName in $paramsToRemove) - { - if ($PSBoundParameters.ContainsKey($paramName)) - { - $PSBoundParameters.Remove($paramName) | Out-Null - } - } - - $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters + $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant if (-not $isRegionSupported) { @@ -3289,3 +3311,60 @@ function Validate-FlexConsumptionLocation -Exception $exception } } + +# function Validate-FlexConsumptionLocation +# { +# [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] +# param ( +# [Parameter(Mandatory = $true)] +# [ValidateNotNullOrEmpty()] +# [String] +# $Location, + +# [Parameter(Mandatory = $false)] +# [System.Management.Automation.SwitchParameter] +# $ZoneRedundant, + +# $SubscriptionId, +# $HttpPipelineAppend, +# $HttpPipelinePrepend +# ) + +# $paramsToRemove = @( +# "Location" +# "ZoneRedundant" +# ) +# foreach ($paramName in $paramsToRemove) +# { +# if ($PSBoundParameters.ContainsKey($paramName)) +# { +# $PSBoundParameters.Remove($paramName) | Out-Null +# } +# } + +# $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters + +# if (-not $isRegionSupported) +# { +# $errorMessage = $null +# $errorId = $null +# if ($ZoneRedundant.IsPresent) +# { +# $errorMessage = "The specified location '$Location' doesn't support zone redundancy in Flex Consumption. " +# $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." +# $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" +# } +# else +# { +# $errorMessage = "The specified location '$Location' doesn't support Flex Consumption. " +# $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." +# $errorId = "RegionNotSupportedForFlexConsumption" +# } + +# $exception = [System.InvalidOperationException]::New($errorMessage) +# ThrowTerminatingError -ErrorId $errorId ` +# -ErrorMessage $errorMessage ` +# -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` +# -Exception $exception +# } +# } From d9a2178a15736e8df7930f29e36dc3e5cf683959 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 6 Nov 2025 23:23:48 -0800 Subject: [PATCH 53/76] Update tests --- ...unctionAppFlexConsumptionRuntime.Tests.ps1 | 220 ++++++++++++++++-- 1 file changed, 195 insertions(+), 25 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 index c9e8009ecb0b..e7d915cee624 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 @@ -30,7 +30,6 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimes[0].Name | Should -Not -BeNullOrEmpty $runtimes[0].Version | Should -Not -BeNullOrEmpty $runtimes[0].IsDefault | Should -BeOfType [System.Boolean] - $runtimes[0].EndOfLifeDate | Should -Not -BeNullOrEmpty $runtimes[0].Sku | Should -Not -BeNull # Verify expected runtimes are available for Flex Consumption @@ -39,85 +38,161 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimeNames | Should -Contain 'node' $runtimeNames | Should -Contain 'python' $runtimeNames | Should -Contain 'java' + $runtimeNames | Should -Contain 'powershell' $runtimeNames | Should -Contain 'custom' + + # Verify we have the expected total count (13 runtimes based on actual data) + $runtimes | Should -HaveCount 13 } It 'Should get specific runtime versions for dotnet-isolated' { $dotnetRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' $dotnetRuntimes | Should -Not -BeNullOrEmpty + $dotnetRuntimes | Should -HaveCount 3 + $dotnetRuntimes | ForEach-Object { $_.Name | Should -Be 'dotnet-isolated' $_.Version | Should -Not -BeNullOrEmpty $_.IsDefault | Should -BeOfType [System.Boolean] $_.Sku.skuCode | Should -Be 'FC1' + $_.EndOfLifeDate | Should -Not -BeNullOrEmpty } - # Should contain common .NET versions - $versions = $dotnetRuntimes | Select-Object -ExpandProperty Version - $versions | Should -Contain '8.0' + # Verify exact versions available + $versions = $dotnetRuntimes | Select-Object -ExpandProperty Version | Sort-Object + $versions | Should -Be @('10.0', '8.0', '9.0') + + # Verify default version + $defaultVersion = $dotnetRuntimes | Where-Object { $_.IsDefault -eq $true } + $defaultVersion | Should -HaveCount 1 + $defaultVersion.Version | Should -Be '8.0' } It 'Should get specific runtime versions for node' { $nodeRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' $nodeRuntimes | Should -Not -BeNullOrEmpty + $nodeRuntimes | Should -HaveCount 2 + $nodeRuntimes | ForEach-Object { $_.Name | Should -Be 'node' $_.Version | Should -Not -BeNullOrEmpty $_.IsDefault | Should -BeOfType [System.Boolean] $_.Sku.skuCode | Should -Be 'FC1' + $_.EndOfLifeDate | Should -Not -BeNullOrEmpty + } + + # Verify exact versions available + $versions = $nodeRuntimes | Select-Object -ExpandProperty Version | Sort-Object + $versions | Should -Be @('20', '22') + + # Verify default version + $defaultVersion = $nodeRuntimes | Where-Object { $_.IsDefault -eq $true } + $defaultVersion | Should -HaveCount 1 + $defaultVersion.Version | Should -Be '22' + } + + It 'Should get specific runtime versions for java' { + $javaRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' + + $javaRuntimes | Should -Not -BeNullOrEmpty + $javaRuntimes | Should -HaveCount 2 + + $javaRuntimes | ForEach-Object { + $_.Name | Should -Be 'java' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + $_.EndOfLifeDate | Should -Not -BeNullOrEmpty } - # Should contain common Node.js versions (updated to actual supported versions) - $versions = $nodeRuntimes | Select-Object -ExpandProperty Version - $versions | Should -Contain '20' - $versions | Should -Contain '22' + # Verify exact versions available + $versions = $javaRuntimes | Select-Object -ExpandProperty Version | Sort-Object + $versions | Should -Be @('17', '21') + + # Verify default version + $defaultVersion = $javaRuntimes | Where-Object { $_.IsDefault -eq $true } + $defaultVersion | Should -HaveCount 1 + $defaultVersion.Version | Should -Be '17' + } + + It 'Should get specific runtime versions for powershell' { + $powershellRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'powershell' + + $powershellRuntimes | Should -Not -BeNullOrEmpty + $powershellRuntimes | Should -HaveCount 1 + + $powershellRuntimes | ForEach-Object { + $_.Name | Should -Be 'powershell' + $_.Version | Should -Not -BeNullOrEmpty + $_.IsDefault | Should -BeOfType [System.Boolean] + $_.Sku.skuCode | Should -Be 'FC1' + $_.EndOfLifeDate | Should -Not -BeNullOrEmpty + } + + # Verify exact version available + $powershellRuntimes[0].Version | Should -Be '7.4' + $powershellRuntimes[0].IsDefault | Should -Be $true } It 'Should get specific runtime versions for python' { $pythonRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' $pythonRuntimes | Should -Not -BeNullOrEmpty + $pythonRuntimes | Should -HaveCount 4 + $pythonRuntimes | ForEach-Object { $_.Name | Should -Be 'python' $_.Version | Should -Not -BeNullOrEmpty $_.IsDefault | Should -BeOfType [System.Boolean] $_.Sku.skuCode | Should -Be 'FC1' + $_.EndOfLifeDate | Should -Not -BeNullOrEmpty } - # Should contain common Python versions - $versions = $pythonRuntimes | Select-Object -ExpandProperty Version - $versions | Should -Contain '3.10' - $versions | Should -Contain '3.11' - $versions | Should -Contain '3.12' - $versions | Should -Contain '3.13' + # Verify exact versions available + $versions = $pythonRuntimes | Select-Object -ExpandProperty Version | Sort-Object + $versions | Should -Be @('3.10', '3.11', '3.12', '3.13') + + # Verify default versions (Python has multiple defaults) + $defaultVersions = $pythonRuntimes | Where-Object { $_.IsDefault -eq $true } + $defaultVersions | Should -HaveCount 3 + $defaultVersions.Version | Sort-Object | Should -Be @('3.10', '3.11', '3.12') + + # Verify 3.13 is not default + $nonDefaultVersion = $pythonRuntimes | Where-Object { $_.Version -eq '3.13' } + $nonDefaultVersion.IsDefault | Should -Be $false } - It 'Should get specific runtime versions for java' { - $javaRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' + It 'Should get specific runtime versions for custom' { + $customRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'custom' - $javaRuntimes | Should -Not -BeNullOrEmpty - $javaRuntimes | ForEach-Object { - $_.Name | Should -Be 'java' + $customRuntimes | Should -Not -BeNullOrEmpty + $customRuntimes | Should -HaveCount 1 + + $customRuntimes | ForEach-Object { + $_.Name | Should -Be 'custom' $_.Version | Should -Not -BeNullOrEmpty $_.IsDefault | Should -BeOfType [System.Boolean] $_.Sku.skuCode | Should -Be 'FC1' } - # Should contain common Java versions (updated to actual supported versions) - $versions = $javaRuntimes | Select-Object -ExpandProperty Version - $versions | Should -Contain '17' - $versions | Should -Contain '21' + # Verify exact version available + $customRuntimes[0].Version | Should -Be '1.0' + $customRuntimes[0].IsDefault | Should -Be $false + + # Custom runtime has no EndOfLifeDate + $customRuntimes[0].EndOfLifeDate | Should -BeNullOrEmpty } It 'Should get specific runtime and version combination' { $specificRuntime = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' -Version '8.0' $specificRuntime | Should -Not -BeNullOrEmpty + $specificRuntime | Should -HaveCount 1 $specificRuntime.Name | Should -Be 'dotnet-isolated' $specificRuntime.Version | Should -Be '8.0' - $specificRuntime.IsDefault | Should -BeOfType [System.Boolean] + $specificRuntime.IsDefault | Should -Be $true $specificRuntime.EndOfLifeDate | Should -Not -BeNullOrEmpty $specificRuntime.Sku.skuCode | Should -Be 'FC1' } @@ -188,6 +263,96 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { } } + It 'Should validate specific EndOfLife dates match expected values' { + $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation + + # Test specific known EndOfLife dates (based on actual data) + $dotnet8 = $allRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' -and $_.Version -eq '8.0' } + $dotnet8.EndOfLifeDate | Should -Be '11/9/2026' + + $dotnet10 = $allRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' -and $_.Version -eq '10.0' } + $dotnet10.EndOfLifeDate | Should -Be '11/9/2028' + + $node22 = $allRuntimes | Where-Object { $_.Name -eq 'node' -and $_.Version -eq '22' } + $node22.EndOfLifeDate | Should -Be '4/29/2027' + + $java17 = $allRuntimes | Where-Object { $_.Name -eq 'java' -and $_.Version -eq '17' } + $java17.EndOfLifeDate | Should -Be '8/31/2027' + + $java21 = $allRuntimes | Where-Object { $_.Name -eq 'java' -and $_.Version -eq '21' } + $java21.EndOfLifeDate | Should -Be '8/31/2028' + + $powershell74 = $allRuntimes | Where-Object { $_.Name -eq 'powershell' -and $_.Version -eq '7.4' } + $powershell74.EndOfLifeDate | Should -Be '11/9/2026' + + $python311 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.11' } + $python311.EndOfLifeDate | Should -Be '10/30/2027' + + $python312 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.12' } + $python312.EndOfLifeDate | Should -Be '10/30/2028' + + $python313 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.13' } + $python313.EndOfLifeDate | Should -Be '10/30/2029' + } + + It 'Should validate long-term supported versions (expire on or after 11/9/2026)' { + $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation + $cutoffDate = [DateTime]'11/9/2026' + + # Test long-term supported versions + $longTermRuntimes = $allRuntimes | Where-Object { + ($_.Name -eq 'custom') -or + ([DateTime]::Parse($_.EndOfLifeDate) -ge $cutoffDate) + } + + $longTermRuntimes | Should -Not -BeNullOrEmpty + + # Verify expected long-term versions + $dotnetLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' } + $dotnetLongTerm.Version | Sort-Object | Should -Be @('10.0', '8.0') # 9.0 expires before cutoff + + $nodeLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'node' } + $nodeLongTerm.Version | Should -Be '22' # 20 expires before cutoff + + $javaLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'java' } + $javaLongTerm.Version | Sort-Object | Should -Be @('17', '21') # Both qualify + + $powershellLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'powershell' } + $powershellLongTerm.Version | Should -Be '7.4' # Expires exactly on cutoff + + $pythonLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'python' } + $pythonLongTerm.Version | Sort-Object | Should -Be @('3.11', '3.12', '3.13') # 3.10 expires before cutoff + + $customLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'custom' } + $customLongTerm.Version | Should -Be '1.0' # No expiration + } + + It 'Should get specific runtime and version for all long-term versions' { + # Test specific long-term runtime/version combinations + $testCases = @( + @{ Runtime = 'dotnet-isolated'; Version = '8.0'; IsDefault = $true }, + @{ Runtime = 'dotnet-isolated'; Version = '10.0'; IsDefault = $false }, + @{ Runtime = 'node'; Version = '22'; IsDefault = $true }, + @{ Runtime = 'java'; Version = '17'; IsDefault = $true }, + @{ Runtime = 'java'; Version = '21'; IsDefault = $false }, + @{ Runtime = 'powershell'; Version = '7.4'; IsDefault = $true }, + @{ Runtime = 'python'; Version = '3.11'; IsDefault = $true }, + @{ Runtime = 'python'; Version = '3.12'; IsDefault = $true }, + @{ Runtime = 'python'; Version = '3.13'; IsDefault = $false }, + @{ Runtime = 'custom'; Version = '1.0'; IsDefault = $false } + ) + + foreach ($testCase in $testCases) { + $result = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime $testCase.Runtime -Version $testCase.Version + $result | Should -Not -BeNullOrEmpty + $result | Should -HaveCount 1 + $result.Name | Should -Be $testCase.Runtime + $result.Version | Should -Be $testCase.Version + $result.IsDefault | Should -Be $testCase.IsDefault + $result.Sku.skuCode | Should -Be 'FC1' + } + } + It 'Should handle invalid runtime gracefully' { { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'invalidruntime' } | Should -Throw } @@ -204,7 +369,12 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { # Test that all parameter sets work without errors { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' } | Should -Not -Throw - { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '20' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '22' } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -DefaultOrLatest } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' -Version '3.12' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'powershell' -Version '7.4' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' -Version '21' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' -Version '10.0' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'custom' -Version '1.0' } | Should -Not -Throw } } From 5cfd793fcd9571defa9749230637cb0713e4cba2 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 7 Nov 2025 11:02:24 -0800 Subject: [PATCH 54/76] Update tests to latest version --- ...unctionAppFlexConsumptionRuntime.Tests.ps1 | 324 +++++++----------- 1 file changed, 120 insertions(+), 204 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 index e7d915cee624..7b2cac769708 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppFlexConsumptionRuntime.Tests.ps1 @@ -18,6 +18,7 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { BeforeAll { $testLocation = 'East Asia' + $cutoffDate = [DateTime]'11/9/2026' } It 'Should get all available runtimes for Flex Consumption' { @@ -40,149 +41,62 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $runtimeNames | Should -Contain 'java' $runtimeNames | Should -Contain 'powershell' $runtimeNames | Should -Contain 'custom' - - # Verify we have the expected total count (13 runtimes based on actual data) - $runtimes | Should -HaveCount 13 - } - - It 'Should get specific runtime versions for dotnet-isolated' { - $dotnetRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' - - $dotnetRuntimes | Should -Not -BeNullOrEmpty - $dotnetRuntimes | Should -HaveCount 3 - - $dotnetRuntimes | ForEach-Object { - $_.Name | Should -Be 'dotnet-isolated' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' - $_.EndOfLifeDate | Should -Not -BeNullOrEmpty - } - - # Verify exact versions available - $versions = $dotnetRuntimes | Select-Object -ExpandProperty Version | Sort-Object - $versions | Should -Be @('10.0', '8.0', '9.0') - - # Verify default version - $defaultVersion = $dotnetRuntimes | Where-Object { $_.IsDefault -eq $true } - $defaultVersion | Should -HaveCount 1 - $defaultVersion.Version | Should -Be '8.0' - } - - It 'Should get specific runtime versions for node' { - $nodeRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' - - $nodeRuntimes | Should -Not -BeNullOrEmpty - $nodeRuntimes | Should -HaveCount 2 - - $nodeRuntimes | ForEach-Object { - $_.Name | Should -Be 'node' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' - $_.EndOfLifeDate | Should -Not -BeNullOrEmpty - } - - # Verify exact versions available - $versions = $nodeRuntimes | Select-Object -ExpandProperty Version | Sort-Object - $versions | Should -Be @('20', '22') - - # Verify default version - $defaultVersion = $nodeRuntimes | Where-Object { $_.IsDefault -eq $true } - $defaultVersion | Should -HaveCount 1 - $defaultVersion.Version | Should -Be '22' } - It 'Should get specific runtime versions for java' { - $javaRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' - - $javaRuntimes | Should -Not -BeNullOrEmpty - $javaRuntimes | Should -HaveCount 2 + It 'Should get current runtime stack versions with extended support' { + $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation - $javaRuntimes | ForEach-Object { - $_.Name | Should -Be 'java' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' - $_.EndOfLifeDate | Should -Not -BeNullOrEmpty + # Test current supported runtime stack versions + $currentStackRuntimes = $allRuntimes | Where-Object { + ($_.Name -eq 'custom') -or + ([DateTime]::Parse($_.EndOfLifeDate) -ge $cutoffDate) } - # Verify exact versions available - $versions = $javaRuntimes | Select-Object -ExpandProperty Version | Sort-Object - $versions | Should -Be @('17', '21') - - # Verify default version - $defaultVersion = $javaRuntimes | Where-Object { $_.IsDefault -eq $true } - $defaultVersion | Should -HaveCount 1 - $defaultVersion.Version | Should -Be '17' - } - - It 'Should get specific runtime versions for powershell' { - $powershellRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'powershell' - - $powershellRuntimes | Should -Not -BeNullOrEmpty - $powershellRuntimes | Should -HaveCount 1 + $currentStackRuntimes | Should -Not -BeNullOrEmpty - $powershellRuntimes | ForEach-Object { - $_.Name | Should -Be 'powershell' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' - $_.EndOfLifeDate | Should -Not -BeNullOrEmpty - } + # Verify expected current stack versions (10 total) + $currentStackRuntimes | Should -HaveCount 10 - # Verify exact version available - $powershellRuntimes[0].Version | Should -Be '7.4' - $powershellRuntimes[0].IsDefault | Should -Be $true - } - - It 'Should get specific runtime versions for python' { - $pythonRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + # Test each runtime has expected current stack versions + $dotnetCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' } + $dotnetCurrent.Version | Sort-Object | Should -Be @('10.0', '8.0') # Latest supported versions - $pythonRuntimes | Should -Not -BeNullOrEmpty - $pythonRuntimes | Should -HaveCount 4 + $nodeCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'node' } + $nodeCurrent.Version | Should -Be '22' # Current LTS version - $pythonRuntimes | ForEach-Object { - $_.Name | Should -Be 'python' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' - $_.EndOfLifeDate | Should -Not -BeNullOrEmpty - } + $javaCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'java' } + $javaCurrent.Version | Sort-Object | Should -Be @('17', '21') # Current supported versions - # Verify exact versions available - $versions = $pythonRuntimes | Select-Object -ExpandProperty Version | Sort-Object - $versions | Should -Be @('3.10', '3.11', '3.12', '3.13') + $powershellCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'powershell' } + $powershellCurrent.Version | Should -Be '7.4' # Current stable version - # Verify default versions (Python has multiple defaults) - $defaultVersions = $pythonRuntimes | Where-Object { $_.IsDefault -eq $true } - $defaultVersions | Should -HaveCount 3 - $defaultVersions.Version | Sort-Object | Should -Be @('3.10', '3.11', '3.12') + $pythonCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'python' } + $pythonCurrent.Version | Sort-Object | Should -Be @('3.11', '3.12', '3.13') # Latest supported versions - # Verify 3.13 is not default - $nonDefaultVersion = $pythonRuntimes | Where-Object { $_.Version -eq '3.13' } - $nonDefaultVersion.IsDefault | Should -Be $false + $customCurrent = $currentStackRuntimes | Where-Object { $_.Name -eq 'custom' } + $customCurrent.Version | Should -Be '1.0' # Always current for custom } - It 'Should get specific runtime versions for custom' { - $customRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'custom' - - $customRuntimes | Should -Not -BeNullOrEmpty - $customRuntimes | Should -HaveCount 1 + It 'Should validate default runtime versions for current stack' { + # Test default versions for each runtime (focusing on current/recommended versions) + $testCases = @( + @{ Runtime = 'dotnet-isolated'; Version = '8.0'; IsDefault = $true; Description = 'LTS version' }, + @{ Runtime = 'node'; Version = '22'; IsDefault = $true; Description = 'Current LTS' }, + @{ Runtime = 'java'; Version = '17'; IsDefault = $true; Description = 'LTS version' }, + @{ Runtime = 'powershell'; Version = '7.4'; IsDefault = $true; Description = 'Current stable' }, + @{ Runtime = 'python'; Version = '3.12'; IsDefault = $true; Description = 'Latest stable' }, + @{ Runtime = 'custom'; Version = '1.0'; IsDefault = $false; Description = 'Custom handler' } + ) - $customRuntimes | ForEach-Object { - $_.Name | Should -Be 'custom' - $_.Version | Should -Not -BeNullOrEmpty - $_.IsDefault | Should -BeOfType [System.Boolean] - $_.Sku.skuCode | Should -Be 'FC1' + foreach ($testCase in $testCases) { + $result = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime $testCase.Runtime -Version $testCase.Version + $result | Should -Not -BeNullOrEmpty -Because "Should find $($testCase.Runtime) $($testCase.Version) ($($testCase.Description))" + $result | Should -HaveCount 1 + $result.Name | Should -Be $testCase.Runtime + $result.Version | Should -Be $testCase.Version + $result.IsDefault | Should -Be $testCase.IsDefault + $result.Sku.skuCode | Should -Be 'FC1' } - - # Verify exact version available - $customRuntimes[0].Version | Should -Be '1.0' - $customRuntimes[0].IsDefault | Should -Be $false - - # Custom runtime has no EndOfLifeDate - $customRuntimes[0].EndOfLifeDate | Should -BeNullOrEmpty } It 'Should get specific runtime and version combination' { @@ -202,7 +116,7 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { $defaultRuntime | Should -Not -BeNullOrEmpty $defaultRuntime.Name | Should -Be 'node' - $defaultRuntime.Version | Should -Not -BeNullOrEmpty + $defaultRuntime.Version | Should -Be '22' # Current default # Should return only one runtime (the default/latest) $defaultRuntime | Should -HaveCount 1 @@ -212,6 +126,7 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { } It 'Should validate runtime objects have correct structure' { + # Test with python as it has multiple versions $runtimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' $runtimes | Should -Not -BeNullOrEmpty @@ -233,16 +148,29 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { } } - It 'Should validate EndOfLifeDate is a valid date' { - $pythonRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' + It 'Should validate EndOfLifeDate for current runtime stack versions' { + # Focus on current supported runtime stack versions + $currentStackVersions = @( + 'dotnet-isolated|8.0', 'dotnet-isolated|10.0', + 'node|22', + 'java|17', 'java|21', + 'powershell|7.4', + 'python|3.11', 'python|3.12', 'python|3.13' + ) - foreach ($runtime in $pythonRuntimes) { + foreach ($runtimeVersionPair in $currentStackVersions) { + $parts = $runtimeVersionPair -split '\|' + $runtime = $parts[0] + $version = $parts[1] + + $result = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime $runtime -Version $version + # EndOfLifeDate should be parseable as DateTime - { [DateTime]::Parse($runtime.EndOfLifeDate) } | Should -Not -Throw + { [DateTime]::Parse($result.EndOfLifeDate) } | Should -Not -Throw -Because "$runtime $version should have valid EndOfLifeDate" - # EndOfLifeDate should be in the future (for current versions) - $eolDate = [DateTime]::Parse($runtime.EndOfLifeDate) - $eolDate | Should -BeGreaterThan (Get-Date) + # EndOfLifeDate should be in the future for current versions + $eolDate = [DateTime]::Parse($result.EndOfLifeDate) + $eolDate | Should -BeGreaterOrEqual $cutoffDate -Because "$runtime $version should be part of current runtime stack" } } @@ -263,72 +191,8 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { } } - It 'Should validate specific EndOfLife dates match expected values' { - $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation - - # Test specific known EndOfLife dates (based on actual data) - $dotnet8 = $allRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' -and $_.Version -eq '8.0' } - $dotnet8.EndOfLifeDate | Should -Be '11/9/2026' - - $dotnet10 = $allRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' -and $_.Version -eq '10.0' } - $dotnet10.EndOfLifeDate | Should -Be '11/9/2028' - - $node22 = $allRuntimes | Where-Object { $_.Name -eq 'node' -and $_.Version -eq '22' } - $node22.EndOfLifeDate | Should -Be '4/29/2027' - - $java17 = $allRuntimes | Where-Object { $_.Name -eq 'java' -and $_.Version -eq '17' } - $java17.EndOfLifeDate | Should -Be '8/31/2027' - - $java21 = $allRuntimes | Where-Object { $_.Name -eq 'java' -and $_.Version -eq '21' } - $java21.EndOfLifeDate | Should -Be '8/31/2028' - - $powershell74 = $allRuntimes | Where-Object { $_.Name -eq 'powershell' -and $_.Version -eq '7.4' } - $powershell74.EndOfLifeDate | Should -Be '11/9/2026' - - $python311 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.11' } - $python311.EndOfLifeDate | Should -Be '10/30/2027' - - $python312 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.12' } - $python312.EndOfLifeDate | Should -Be '10/30/2028' - - $python313 = $allRuntimes | Where-Object { $_.Name -eq 'python' -and $_.Version -eq '3.13' } - $python313.EndOfLifeDate | Should -Be '10/30/2029' - } - - It 'Should validate long-term supported versions (expire on or after 11/9/2026)' { - $allRuntimes = Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation - $cutoffDate = [DateTime]'11/9/2026' - - # Test long-term supported versions - $longTermRuntimes = $allRuntimes | Where-Object { - ($_.Name -eq 'custom') -or - ([DateTime]::Parse($_.EndOfLifeDate) -ge $cutoffDate) - } - - $longTermRuntimes | Should -Not -BeNullOrEmpty - - # Verify expected long-term versions - $dotnetLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'dotnet-isolated' } - $dotnetLongTerm.Version | Sort-Object | Should -Be @('10.0', '8.0') # 9.0 expires before cutoff - - $nodeLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'node' } - $nodeLongTerm.Version | Should -Be '22' # 20 expires before cutoff - - $javaLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'java' } - $javaLongTerm.Version | Sort-Object | Should -Be @('17', '21') # Both qualify - - $powershellLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'powershell' } - $powershellLongTerm.Version | Should -Be '7.4' # Expires exactly on cutoff - - $pythonLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'python' } - $pythonLongTerm.Version | Sort-Object | Should -Be @('3.11', '3.12', '3.13') # 3.10 expires before cutoff - - $customLongTerm = $longTermRuntimes | Where-Object { $_.Name -eq 'custom' } - $customLongTerm.Version | Should -Be '1.0' # No expiration - } - - It 'Should get specific runtime and version for all long-term versions' { - # Test specific long-term runtime/version combinations + It 'Should get specific runtime and version for all current stack versions' { + # Test specific current runtime stack combinations $testCases = @( @{ Runtime = 'dotnet-isolated'; Version = '8.0'; IsDefault = $true }, @{ Runtime = 'dotnet-isolated'; Version = '10.0'; IsDefault = $false }, @@ -361,20 +225,72 @@ Describe 'Get-AzFunctionAppFlexConsumptionRuntime' { { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '999.0' } | Should -Throw } + It 'Should throw RuntimeVersionNotSupportedInFlexConsumption for unsupported runtime versions' { + # Test cases for unsupported runtime versions that should trigger the specific error + $unsupportedVersionCases = @( + @{ Runtime = 'powershell'; Version = '9.0'; SupportedVersions = '7.4' }, + @{ Runtime = 'node'; Version = '18'; SupportedVersions = '20, 22' }, + @{ Runtime = 'python'; Version = '3.8'; SupportedVersions = '3.10, 3.11, 3.12, 3.13' }, + @{ Runtime = 'java'; Version = '11'; SupportedVersions = '17, 21' }, + @{ Runtime = 'dotnet-isolated'; Version = '6.0'; SupportedVersions = '8.0, 9.0, 10.0' } + ) + + foreach ($testCase in $unsupportedVersionCases) { + $errorThrown = $null + try { + Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime $testCase.Runtime -Version $testCase.Version -ErrorAction Stop + } + catch { + $errorThrown = $_ + } + + # Validate that an error was thrown + $errorThrown | Should -Not -BeNull -Because "Should throw error for unsupported $($testCase.Runtime) version $($testCase.Version)" + + # Validate the FullyQualifiedErrorId + $errorThrown.FullyQualifiedErrorId | Should -Be 'RuntimeVersionNotSupportedInFlexConsumption' -Because "Should have correct error ID for $($testCase.Runtime) $($testCase.Version)" + + # Validate the error message contains expected information + $errorThrown.Exception.Message | Should -Match "Invalid version $($testCase.Version) for runtime $($testCase.Runtime)" -Because "Error message should contain version and runtime info" + $errorThrown.Exception.Message | Should -Match "function apps on the Flex Consumption plan" -Because "Error message should specify Flex Consumption plan" + $errorThrown.Exception.Message | Should -Match "Supported versions for runtime $($testCase.Runtime)" -Because "Error message should list supported versions" + } + } + It 'Should handle invalid location gracefully' { { Get-AzFunctionAppFlexConsumptionRuntime -Location 'Invalid Location' } | Should -Throw } It 'Should validate parameter combinations work correctly' { - # Test that all parameter sets work without errors + # Test that all parameter sets work without errors (using current stack versions) { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -Version '22' } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'node' -DefaultOrLatest } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'python' -Version '3.12' } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'powershell' -Version '7.4' } | Should -Not -Throw - { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' -Version '21' } | Should -Not -Throw - { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' -Version '10.0' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'java' -Version '17' } | Should -Not -Throw + { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'dotnet-isolated' -Version '8.0' } | Should -Not -Throw { Get-AzFunctionAppFlexConsumptionRuntime -Location $testLocation -Runtime 'custom' -Version '1.0' } | Should -Not -Throw } + + It "Get-AzFunctionAppFlexConsumptionRuntime should throw RegionNotSupportedForFlexConsumption for invalid region" { + + $myError = $null + $errorId = "RegionNotSupportedForFlexConsumption" + $invalidLocation = "invalidregion" + + try + { + Get-AzFunctionAppFlexConsumptionRuntime -Location $invalidLocation -ErrorAction Stop + } + catch + { + Write-Verbose "Catch the expected exception" -Verbose + $myError = $_ + } + + Write-Verbose "Validate FullyQualifiedErrorId" -Verbose + $myError.FullyQualifiedErrorId | Should Be $errorId + } } From 504bfeb807ab2dccbecd660ff864264b35eabafd Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Fri, 7 Nov 2025 11:28:06 -0800 Subject: [PATCH 55/76] Remove stub test files --- .../test/Get-AzFunctionAppSetting.Tests.ps1 | 25 ------------------- .../test/Remove-AzFunctionAppPlan.Tests.ps1 | 25 ------------------- .../Remove-AzFunctionAppSetting.Tests.ps1 | 25 ------------------- .../test/Restart-AzFunctionApp.Tests.ps1 | 25 ------------------- .../test/Start-AzFunctionApp.Tests.ps1 | 25 ------------------- .../test/Stop-AzFunctionApp.Tests.ps1 | 25 ------------------- .../test/Update-AzFunctionApp.Tests.ps1 | 25 ------------------- .../test/Update-AzFunctionAppPlan.Tests.ps1 | 25 ------------------- .../Update-AzFunctionAppSetting.Tests.ps1 | 25 ------------------- 9 files changed, 225 deletions(-) delete mode 100644 src/Functions/Functions.Autorest/test/Get-AzFunctionAppSetting.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Remove-AzFunctionAppPlan.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Remove-AzFunctionAppSetting.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Restart-AzFunctionApp.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Start-AzFunctionApp.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Stop-AzFunctionApp.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Update-AzFunctionApp.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Update-AzFunctionAppPlan.Tests.ps1 delete mode 100644 src/Functions/Functions.Autorest/test/Update-AzFunctionAppSetting.Tests.ps1 diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppSetting.Tests.ps1 b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppSetting.Tests.ps1 deleted file mode 100644 index 1aef5169a306..000000000000 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppSetting.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-AzFunctionAppSetting')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzFunctionAppSetting.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Get-AzFunctionAppSetting' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppPlan.Tests.ps1 b/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppPlan.Tests.ps1 deleted file mode 100644 index 02171b9cb682..000000000000 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppPlan.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzFunctionAppPlan')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzFunctionAppPlan.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Remove-AzFunctionAppPlan' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppSetting.Tests.ps1 b/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppSetting.Tests.ps1 deleted file mode 100644 index a827ebdd4618..000000000000 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionAppSetting.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzFunctionAppSetting')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzFunctionAppSetting.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Remove-AzFunctionAppSetting' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Restart-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Restart-AzFunctionApp.Tests.ps1 deleted file mode 100644 index c55c6303ad4f..000000000000 --- a/src/Functions/Functions.Autorest/test/Restart-AzFunctionApp.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Restart-AzFunctionApp')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Restart-AzFunctionApp.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Restart-AzFunctionApp' { - It 'RestartByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Start-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Start-AzFunctionApp.Tests.ps1 deleted file mode 100644 index 4b307ca3a5a3..000000000000 --- a/src/Functions/Functions.Autorest/test/Start-AzFunctionApp.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Start-AzFunctionApp')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzFunctionApp.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Start-AzFunctionApp' { - It 'StartByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Stop-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Stop-AzFunctionApp.Tests.ps1 deleted file mode 100644 index 133c29d7c6e9..000000000000 --- a/src/Functions/Functions.Autorest/test/Stop-AzFunctionApp.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Stop-AzFunctionApp')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Stop-AzFunctionApp.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Stop-AzFunctionApp' { - It 'StopByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Update-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/Update-AzFunctionApp.Tests.ps1 deleted file mode 100644 index cf701da928d9..000000000000 --- a/src/Functions/Functions.Autorest/test/Update-AzFunctionApp.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Update-AzFunctionApp')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzFunctionApp.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Update-AzFunctionApp' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Update-AzFunctionAppPlan.Tests.ps1 b/src/Functions/Functions.Autorest/test/Update-AzFunctionAppPlan.Tests.ps1 deleted file mode 100644 index 33458707bd2f..000000000000 --- a/src/Functions/Functions.Autorest/test/Update-AzFunctionAppPlan.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Update-AzFunctionAppPlan')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzFunctionAppPlan.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Update-AzFunctionAppPlan' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} diff --git a/src/Functions/Functions.Autorest/test/Update-AzFunctionAppSetting.Tests.ps1 b/src/Functions/Functions.Autorest/test/Update-AzFunctionAppSetting.Tests.ps1 deleted file mode 100644 index 18b53d864c24..000000000000 --- a/src/Functions/Functions.Autorest/test/Update-AzFunctionAppSetting.Tests.ps1 +++ /dev/null @@ -1,25 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Update-AzFunctionAppSetting')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzFunctionAppSetting.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Update-AzFunctionAppSetting' { - It 'ByName' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } - - It 'ByObjectInput' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw - } -} From c4af5a7b695b10509cd0b9faaa6073c50015650d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 8 Nov 2025 17:21:08 -0800 Subject: [PATCH 56/76] Save the latest implementation for creating a Flex app --- ...et-AzFunctionAppFlexConsumptionRuntime.ps1 | 2 +- .../custom/HelperFunctions.ps1 | 273 ++++++++---------- .../custom/New-AzFunctionApp.ps1 | 216 +++++++------- 3 files changed, 235 insertions(+), 256 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 index 8937356bd439..5cb18965487d 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppFlexConsumptionRuntime.ps1 @@ -38,7 +38,7 @@ function Get-AzFunctionAppFlexConsumptionRuntime { switch ($PSCmdlet.ParameterSetName) { 'AllRuntimes' { # Return all runtimes - foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "PowerShell", "Python", "Custom")) + foreach ($runtimeName in $FlexConsumptionSupportedRuntimes) { Get-FlexFunctionAppRuntime -Location $Location -Runtime $runtimeName } diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index bbd09e3bffca..785cee5c1f71 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -41,6 +41,7 @@ $constants["ReservedFunctionAppSettingNames"] = @( $constants["SetDefaultValueParameterWarningMessage"] = "This default value is subject to change over time. Please set this value explicitly to ensure the behavior is not accidentally impacted by future changes." $constants["DEBUG_PREFIX"] = '[Stacks API] - ' $constants["DefaultCentauriImage"] = 'mcr.microsoft.com/azure-functions/dotnet8-quickstart-demo:1.0' +$constants["FlexConsumptionSupportedRuntimes"] = @('DotNet-Isolated', 'Custom', 'Node', 'Python', 'Java', 'PowerShell') foreach ($variableName in $constants.Keys) { @@ -541,7 +542,16 @@ function AddFunctionAppSettings # Add application settings and runtime $App.ApplicationSettings = ConvertWebAppApplicationSettingToHashtable -ApplicationSetting $settings -RedactAppSettings - $App.Runtime = GetRuntime -Settings $settings -AppKind $App.kind + + # Add runtime + $App.Runtime = if ((-not [string]::IsNullOrEmpty($App.RuntimeName)) -and ($RuntimeToFormattedName.ContainsKey($App.RuntimeName))) + { + $RuntimeToFormattedName[$App.RuntimeName] + } + else + { + GetRuntime -Settings $settings -AppKind $App.kind + } # Get the app site config $config = GetAzWebAppConfig -Name $App.Name -ResourceGroupName $App.ResourceGroup @PSBoundParameters @@ -1094,32 +1104,14 @@ function GetStackDefinitionForRuntime if ($runtimeJsonDefinition.EndOfLifeDate) { - $today = Get-Today - $sixMonthsFromToday = (Get-Today).AddMonths(6) - $endOfLifeDate = $runtimeJsonDefinition.EndOfLifeDate - $formattedEOLDate = ([DateTime]$endOfLifeDate).ToString("MMMM dd yyyy") - $defaultRuntimeVersion = GetDefaultOrLatestRuntimeVersion -SupportedRuntimes $supportedRuntimes ` -Runtime $Runtime ` -FunctionsExtensionVersion $functionsExtensionVersion - if ($endOfLifeDate -le $today) - { - $errorMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion has reached end-of-life " - $errorMsg += "on $formattedEOLDate and is no longer supported. Learn more: aka.ms/FunctionsStackUpgrade." - - $exception = [System.InvalidOperationException]::New($errorMsg) - ThrowTerminatingError -ErrorId "RuntimeVersionEndOfLife" ` - -ErrorMessage $errorMsg ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } - elseif ($endOfLifeDate -lt $sixMonthsFromToday) - { - $warningMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion will reach end-of-life on $formattedEOLDate" - $warningMsg += " and will no longer be supported. Learn more: aka.ms/FunctionsStackUpgrade." - Write-Warning $warningMsg - } + Validate-EndOfLifeDate -EndOfLifeDate $runtimeJsonDefinition.EndOfLifeDate ` + -Runtime $Runtime ` + -RuntimeVersion $RuntimeVersion ` + -DefaultRuntimeVersion $defaultRuntimeVersion } return $runtimeJsonDefinition @@ -1872,8 +1864,8 @@ function GetFunctionAppStackDefinition } elseif ($StackType -eq "FlexConsumption") { + $removeHiddenStacks = if ($env:FunctionsTestMode) { $false } else { $true } $removeDeprecatedStacks = $true - $removeHiddenStacks = $true $apiEndPoint = $resourceManagerUrl + "providers/Microsoft.Web/locations/{0}/functionAppStacks?api-version={1}&removeHiddenStacks={2}&removeDeprecatedStacks={3}&stack={4}&sku=FC1" -f ` @@ -2568,7 +2560,8 @@ function Get-Today { function New-PlanName { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [System.String] @@ -2584,7 +2577,8 @@ function New-PlanName function New-FlexConsumptionAppPlan { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [System.String] @@ -2678,7 +2672,8 @@ function New-FlexConsumptionAppPlan function Get-StorageAccountInfo { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [System.String] $Name, @@ -2754,7 +2749,8 @@ function Get-StorageAccountInfo function Get-ConnectionString { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( $StorageAccountInfo ) @@ -2810,7 +2806,8 @@ function Format-FlexConsumptionLocation function Resolve-UserAssignedIdentity { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [System.String] $IdentityResourceId, @@ -2877,7 +2874,8 @@ function Resolve-UserAssignedIdentity function Get-FlexFunctionAppRuntime { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(ParameterSetName = 'AllVersions', Mandatory = $true)] [Parameter(ParameterSetName = 'ByVersion', Mandatory = $true)] [Parameter(ParameterSetName = 'DefaultOrLatest', Mandatory = $true)] @@ -3067,7 +3065,7 @@ function Get-FlexFunctionAppRuntime } } -function ValidateIntanceMemoryMB +function Validate-InstanceMemoryMB { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param @@ -3122,15 +3120,17 @@ function ValidateIntanceMemoryMB { # If not provided, set to default size $InstanceMemoryMB = [int]$defaultSize + Write-Warning "InstanceMemoryMB not specified. Setting default value to '$InstanceMemoryMB'. $SetDefaultValueParameterWarningMessage" } return $InstanceMemoryMB } -function ValidateMaximumInstanceCount +function Validate-MaximumInstanceCount { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [PSCustomObject] $SkuMaximumInstanceCount, # expects keys: lowestMaximumInstanceCount, highestMaximumInstanceCount, defaultValue @@ -3174,6 +3174,7 @@ function ValidateMaximumInstanceCount { # If not provided, set to default $MaximumInstanceCount = $default + Write-Warning "MaximumInstanceCount not specified. Setting default value to '$MaximumInstanceCount'. $SetDefaultValueParameterWarningMessage" } return $MaximumInstanceCount @@ -3182,7 +3183,8 @@ function ValidateMaximumInstanceCount function Test-FlexConsumptionLocation { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] @@ -3191,18 +3193,36 @@ function Test-FlexConsumptionLocation [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] $ZoneRedundant + # , + + # $SubscriptionId, + # $HttpPipelineAppend, + # $HttpPipelinePrepend ) + # $paramsToRemove = @( + # "Location" + # "ZoneRedundant" + # ) + # foreach ($paramName in $paramsToRemove) + # { + # if ($PSBoundParameters.ContainsKey($paramName)) + # { + # $PSBoundParameters.Remove($paramName) | Out-Null + # } + # } + # Validate Flex Consumption location $formattedLocation = Format-FlexConsumptionLocation -Location $Location - $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters + #$flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters + $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant $found = $false foreach ($region in $flexConsumptionRegions) { $regionName = Format-FlexConsumptionLocation -Location $region.Name - if ($region.Name -eq $FlexConsumptionLocation) + if ($region.Name -eq $Location) { $found = $true break @@ -3217,64 +3237,11 @@ function Test-FlexConsumptionLocation return $found } -# function Test-FlexConsumptionLocation { -# [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] -# [CmdletBinding()] -# param( -# [Parameter(Mandatory = $true)] -# [ValidateNotNullOrEmpty()] -# [String] -# $Location, - -# [Parameter(Mandatory = $false)] -# [System.Management.Automation.SwitchParameter] -# $ZoneRedundant, - -# $SubscriptionId, -# $HttpPipelineAppend, -# $HttpPipelinePrepend -# ) - -# $paramsToRemove = @( -# "Location" -# "ZoneRedundant" -# ) -# foreach ($paramName in $paramsToRemove) -# { -# if ($PSBoundParameters.ContainsKey($paramName)) -# { -# $PSBoundParameters.Remove($paramName) | Out-Null -# } -# } - -# # Validate Flex Consumption location -# $formattedLocation = Format-FlexConsumptionLocation -Location $Location -# $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters - -# $found = $false -# foreach ($region in $flexConsumptionRegions) -# { -# $regionName = Format-FlexConsumptionLocation -Location $region.Name - -# if ($region.Name -eq $FlexConsumptionLocation) -# { -# $found = $true -# break -# } -# elseif ($regionName -eq $formattedLocation) -# { -# $found = $true -# break -# } -# } - -# return $found -# } - function Validate-FlexConsumptionLocation { [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] - param ( + param + ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] @@ -3283,8 +3250,26 @@ function Validate-FlexConsumptionLocation [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] $ZoneRedundant - ) - + # , + + # $SubscriptionId, + # $HttpPipelineAppend, + # $HttpPipelinePrepend + ) + + # $paramsToRemove = @( + # "Location" + # "ZoneRedundant" + # ) + # foreach ($paramName in $paramsToRemove) + # { + # if ($PSBoundParameters.ContainsKey($paramName)) + # { + # $PSBoundParameters.Remove($paramName) | Out-Null + # } + # } + + #$isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant if (-not $isRegionSupported) @@ -3312,59 +3297,49 @@ function Validate-FlexConsumptionLocation } } -# function Validate-FlexConsumptionLocation -# { -# [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] -# param ( -# [Parameter(Mandatory = $true)] -# [ValidateNotNullOrEmpty()] -# [String] -# $Location, - -# [Parameter(Mandatory = $false)] -# [System.Management.Automation.SwitchParameter] -# $ZoneRedundant, - -# $SubscriptionId, -# $HttpPipelineAppend, -# $HttpPipelinePrepend -# ) - -# $paramsToRemove = @( -# "Location" -# "ZoneRedundant" -# ) -# foreach ($paramName in $paramsToRemove) -# { -# if ($PSBoundParameters.ContainsKey($paramName)) -# { -# $PSBoundParameters.Remove($paramName) | Out-Null -# } -# } - -# $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters - -# if (-not $isRegionSupported) -# { -# $errorMessage = $null -# $errorId = $null -# if ($ZoneRedundant.IsPresent) -# { -# $errorMessage = "The specified location '$Location' doesn't support zone redundancy in Flex Consumption. " -# $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant' for the list of supported locations." -# $errorId = "RegionNotSupportedForZoneRedundancyInFlexConsumption" -# } -# else -# { -# $errorMessage = "The specified location '$Location' doesn't support Flex Consumption. " -# $errorMessage += "Use: 'Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption' for the list of supported locations." -# $errorId = "RegionNotSupportedForFlexConsumption" -# } - -# $exception = [System.InvalidOperationException]::New($errorMessage) -# ThrowTerminatingError -ErrorId $errorId ` -# -ErrorMessage $errorMessage ` -# -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -# -Exception $exception -# } -# } +function Validate-EndOfLifeDate +{ + [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] + param + ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [DateTime] + $EndOfLifeDate, + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $Runtime, + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $RuntimeVersion, + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [String] + $DefaultRuntimeVersion + ) + + $today = Get-Today + $sixMonthsFromToday = (Get-Today).AddMonths(6) + $endOfLifeDate = [DateTime]::Parse($EndOfLifeDate) + $formattedEOLDate = $endOfLifeDate.ToString("MMMM dd yyyy") + + if ($endOfLifeDate -le $today) + { + $errorMsg = "Use $Runtime $DefaultRuntimeVersion as $Runtime $RuntimeVersion has reached end-of-life " + $errorMsg += "on $formattedEOLDate and is no longer supported. Learn more: aka.ms/FunctionsStackUpgrade." + + $exception = [System.InvalidOperationException]::New($errorMsg) + ThrowTerminatingError -ErrorId "RuntimeVersionEndOfLife" ` + -ErrorMessage $errorMsg ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + elseif ($endOfLifeDate -lt $sixMonthsFromToday) + { + $warningMsg = "Use $Runtime $DefaultRuntimeVersion as $Runtime $RuntimeVersion will reach end-of-life on $formattedEOLDate" + $warningMsg += " and will no longer be supported. Learn more: aka.ms/FunctionsStackUpgrade." + Write-Warning $warningMsg + } +} diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 0784e84035bc..b1266285fe74 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -230,12 +230,12 @@ Example: [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Maximum instance count for Flex Consumption.')] [ValidateRange(40, 1000)] [int] - ${MaximumInstanceCount} = 100, + ${MaximumInstanceCount}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Per-instance memory in MB for Flex Consumption instances.')] [ValidateSet(512, 2048, 4096)] [int] - ${InstanceMemoryMB} = 2048, + ${InstanceMemoryMB}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage='The maximum number of concurrent HTTP trigger invocations per instance.')] [ValidateRange(1, 1000)] @@ -246,14 +246,6 @@ Example: [System.Management.Automation.SwitchParameter] ${EnableZoneRedundancy}, - [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage='When the HttpsOnly property is enabled, all HTTP requests to the app are automatically redirected to HTTPS for secure communication. Using the DisableHttpsOnly switch removes this restriction, allowing HTTP traffic without redirection to HTTPS.')] - [Parameter(ParameterSetName="Consumption")] - [Parameter(ParameterSetName="CustomDockerImage")] - [Parameter(ParameterSetName="EnvironmentForContainerApp")] - [Parameter(ParameterSetName="FlexConsumption")] - [System.Management.Automation.SwitchParameter] - ${DisableHttpsOnly}, - [Parameter(Mandatory=$true, ParameterSetName="EnvironmentForContainerApp", HelpMessage='Name of the container app environment.')] [ValidateNotNullOrEmpty()] [System.String] @@ -402,8 +394,6 @@ Example: $params = GetParameterKeyValues -PSBoundParametersDictionary $PSBoundParameters ` -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") - $functionAppDef.HttpsOnly = if ($DisableHttpsOnly.IsPresent) { $false } else { $true } - ValidateFunctionAppNameAvailability -Name $Name @params $runtimeJsonDefinition = $null @@ -643,74 +633,72 @@ Example: # } # Validate Flex Consumption location - Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation ZoneRedundant:$EnableZoneRedundancy @params + #Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation -ZoneRedundant:$EnableZoneRedundancy @params + Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation -ZoneRedundant:$EnableZoneRedundancy $FlexConsumptionLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation # Validate runtime and runtime version - $runtimeInfo = $null - if (-not [string]::IsNullOrEmpty($RuntimeVersion)) + if (-not ($FlexConsumptionSupportedRuntimes -contains $Runtime)) { - # If not version is not found, the helper function will error out. - $runtimeInfo = Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -Version $RuntimeVersion + $errorId = "InvalidRuntimeForFlexConsumption" + $message += "The specified Runtime '$Runtime' is not valid for Flex Consumption. " + $message += "Supported runtimes are: $($FlexConsumptionSupportedRuntimes -join ', '). Learn more about supported runtimes and versions for Flex Consumption: aka.ms/FunctionsStackUpgrade." + $exception = [System.InvalidOperationException]::New($message) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $message ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } - else + + $runtimeInfo = $null + $hasDefaultVersion = $false + + if ([string]::IsNullOrEmpty($RuntimeVersion)) { - $runtimeInfo = Get-FlexFunctionAppRuntime -Location $Location -Runtime $Runtime -Version $RuntimeVersion -DefaultOrLatest:$true + $runtimeInfo = Get-FlexFunctionAppRuntime -Location $FlexConsumptionLocation -Runtime $Runtime -DefaultOrLatest:$true + $hasDefaultVersion = $true + $RuntimeVersion = $runtimeInfo.Version Write-Warning "RuntimeVersion not specified. Setting default value to '$RuntimeVersion'. $SetDefaultValueParameterWarningMessage" } + else + { + # Get runtime info for specified version. If not available, Get-FlexFunctionAppRuntime will error out. + $runtimeInfo = Get-FlexFunctionAppRuntime -Location $FlexConsumptionLocation -Runtime $Runtime -Version $RuntimeVersion + } - # TODO: Validate end of life for runtime version - # if ($runtimeInfo.EndOfLifeDate) - # { - # $today = Get-Today - # $sixMonthsFromToday = (Get-Today).AddMonths(6) - # $endOfLifeDate = $runtimeInfo.EndOfLifeDate - # $formattedEOLDate = ([DateTime]$endOfLifeDate).ToString("MMMM dd yyyy") - - # $defaultRuntimeVersion = GetDefaultOrLatestRuntimeVersion -SupportedRuntimes $supportedRuntimes ` - # -Runtime $Runtime ` - # -FunctionsExtensionVersion $functionsExtensionVersion + # Validate EndOfLifeDate + if ($runtimeInfo.EndOfLifeDate -and (-not $hasDefaultVersion)) + { + $defaultRuntimeInfo = Get-FlexFunctionAppRuntime -Location $FlexConsumptionLocation -Runtime $Runtime -DefaultOrLatest:$true - # if ($endOfLifeDate -le $today) - # { - # $errorMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion has reached end-of-life " - # $errorMsg += "on $formattedEOLDate and is no longer supported. Learn more: aka.ms/FunctionsStackUpgrade." - - # $exception = [System.InvalidOperationException]::New($errorMsg) - # ThrowTerminatingError -ErrorId "RuntimeVersionEndOfLife" ` - # -ErrorMessage $errorMsg ` - # -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - # -Exception $exception - # } - # elseif ($endOfLifeDate -lt $sixMonthsFromToday) - # { - # $warningMsg = "Use $Runtime $defaultRuntimeVersion as $Runtime $RuntimeVersion will reach end-of-life on $formattedEOLDate" - # $warningMsg += " and will no longer be supported. Learn more: aka.ms/FunctionsStackUpgrade." - # Write-Warning $warningMsg - # } - # } + Validate-EndOfLifeDate -EndOfLifeDate $runtimeInfo.EndOfLifeDate ` + -Runtime $Runtime ` + -RuntimeVersion $RuntimeVersion ` + -DefaultRuntimeVersion $defaultRuntimeInfo.Version + } # Validate and set AlwaysReady configuration if ($AlwaysReady -and $AlwaysReady.Count -gt 0) { - $NAME = 'name' - $INSTANCECOUNT = 'instanceCount' + $ALWAYSREADY_NAME = 'name' + $ALWAYSREADY_INSTANCECOUNT = 'instanceCount' foreach ($entry in $AlwaysReady) { - if (-not ($entry.ContainsKey($NAME) -and $entry.ContainsKey($INSTANCECOUNT))) + # Ensure required keys exist + if (-not ($entry.ContainsKey($ALWAYSREADY_NAME) -and $entry.ContainsKey($ALWAYSREADY_INSTANCECOUNT))) { - $errorMessage = "Each hashtable in AlwaysReady must contain '$NAME' and '$INSTANCECOUNT' keys." + $errorMessage = "Each hashtable in AlwaysReady must contain '$ALWAYSREADY_NAME' and '$ALWAYSREADY_INSTANCECOUNT' keys." $exception = [System.InvalidOperationException]::New($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyConfiguration" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } # Validate that Name is a non-empty string - if ([string]::IsNullOrWhiteSpace($entry[$NAME])) + if ([string]::IsNullOrWhiteSpace($entry[$ALWAYSREADY_NAME])) { $errorMessage = "Name in AlwaysReady must be a non-empty string." $exception = [System.InvalidOperationException]::New($errorMessage) @@ -720,42 +708,29 @@ Example: -Exception $exception } - # Validate that InstanceCount is a non-negative integer - if (-not [int]::TryParse($entry[$INSTANCECOUNT], [ref]$null)) - { - $errorMessage = "InstanceCount in AlwaysReady must be a valid integer." - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } + # Validate InstanceCount is a non-negative integer (single-parse + combined check) + [int]$parsedInstanceCount = 0 + $rawInstanceCount = $entry[$ALWAYSREADY_INSTANCECOUNT] - if ([int]$entry[$INSTANCECOUNT] -lt 0) + if (-not ([int]::TryParse($rawInstanceCount, [ref]$parsedInstanceCount) -and $parsedInstanceCount -ge 0)) { $errorMessage = "InstanceCount in AlwaysReady must be a non-negative integer." - $exception = [System.InvalidOperationException]::New($errorMessage) + $exception = [System.InvalidOperationException]::new($errorMessage) ThrowTerminatingError -ErrorId "InvalidAlwaysReadyInstanceCount" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } } - $functionAppDef.ScaleAndConcurrencyAlwaysReady = $AlwaysReady } # Set scaling information - if ($MaximumInstanceCount -gt 0) - { - $maximumInstanceCountValue = ValidateMaximumInstanceCount -SkuMaximumInstanceCount $runtimeInfo.Sku.maximumInstanceCount -MaximumInstanceCount $MaximumInstanceCount - $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $maximumInstanceCountValue - } + $maximumInstanceCountValue = Validate-MaximumInstanceCount -SkuMaximumInstanceCount $runtimeInfo.Sku.maximumInstanceCount -MaximumInstanceCount $MaximumInstanceCount + $functionAppDef.ScaleAndConcurrencyMaximumInstanceCount = $maximumInstanceCountValue - if ($InstanceMemoryMB -gt 0) - { - $functionAppDef.ScaleAndConcurrencyInstanceMemoryMB = $InstanceMemoryMB - } + $instanceMemoryMBValue = Validate-InstanceMemoryMB -SkuInstanceMemoryMB $runtimeInfo.Sku.instanceMemoryMB -InstanceMemoryMB $InstanceMemoryMB + $functionAppDef.ScaleAndConcurrencyInstanceMemoryMB = $instanceMemoryMBValue if ($HttpPerInstanceConcurrency -gt 0) { @@ -766,13 +741,21 @@ Example: # Create Flex Consumption App Service Plan $planName = New-PlanName -ResourceGroupName $ResourceGroupName - $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` - -ResourceGroupName $ResourceGroupName ` - -Location $FlexConsumptionLocation ` - -EnableZoneRedundancy:$EnableZoneRedundancy ` - @params - - $flexConsumptionPlanCreated = $true + if ($WhatIfPreference.IsPresent) + { + Write-Verbose "WhatIf: Creating Flex Consumption App Service Plan '$planName' in resource group '$ResourceGroupName' at location '$FlexConsumptionLocation'..." -Verbose + $planInfo = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan + $planInfo.Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/$ResourceGroupName/providers/Microsoft.Web/serverfarms/$planName" + } + else + { + $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` + -ResourceGroupName $ResourceGroupName ` + -Location $FlexConsumptionLocation ` + -EnableZoneRedundancy:$EnableZoneRedundancy ` + @params + $flexConsumptionPlanCreated = $true + } $functionAppDef.ServerFarmId = $planInfo.Id $functionAppDef.Location = $FlexConsumptionLocation @@ -799,13 +782,21 @@ Example: -ErrorAction SilentlyContinue @params if (-not $container) { - Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." - $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ContainerPropertyPublicAccess None ` - @params - $flexConsumptionStorageContainerCreated = $true + if ($WhatIfPreference.IsPresent) + { + Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." -Verbose + $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.BlobContainer + } + else + { + Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." + $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + @params + $flexConsumptionStorageContainerCreated = $true + } } # Blob URL @@ -946,21 +937,34 @@ Example: } else { - Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose - $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` - -ResourceName $Name ` - -Location $functionAppDef.Location ` - @params - if ($newAppInsightsProject) + if ($WhatIfPreference.IsPresent) { + Write-Verbose "WhatIf: Creating Application Insights '$Name' in resource group '$ResourceGroupName' at location '$($functionAppDef.Location)'..." -Verbose + # Create a mock object for WhatIf to avoid null reference issues + $newAppInsightsProject = New-Object PSObject -Property @{ + ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://placeholder.applicationinsights.azure.com/" + Name = $Name + } $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) - $appInsightCreated = $true } else { - $warningMessage = "Unable to create the Application Insights for the function app. Creation of Application Insights will help you monitor and diagnose your function apps in the Azure Portal. `r`n" - $warningMessage += "Use the 'New-AzApplicationInsights' cmdlet or the Azure Portal to create a new Application Insights project. After that, use the 'Update-AzFunctionApp' cmdlet to update Application Insights for your function app." - Write-Warning $warningMessage + Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose + $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` + -ResourceName $Name ` + -Location $functionAppDef.Location ` + @params + if ($newAppInsightsProject) + { + $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $newAppInsightsProject.ConnectionString)) + $appInsightCreated = $true + } + else + { + $warningMessage = "Unable to create the Application Insights for the function app. Creation of Application Insights will help you monitor and diagnose your function apps in the Azure Portal. `r`n" + $warningMessage += "Use the 'New-AzApplicationInsights' cmdlet or the Azure Portal to create a new Application Insights project. After that, use the 'Update-AzFunctionApp' cmdlet to update Application Insights for your function app." + Write-Warning $warningMessage + } } } } @@ -1058,7 +1062,7 @@ Example: finally { # Cleanup created resources in case of failure - if (-not $functionAppCreatedSuccessfully) + if (-not $functionAppCreatedSuccessfully -and (-not $WhatIfPreference.IsPresent)) { if ($flexConsumptionPlanCreated) { From aa2cc2ad7b7d1bdb7fb4f68ff8f963de038acf91 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 8 Nov 2025 18:52:05 -0800 Subject: [PATCH 57/76] Remove finally block --- .../custom/New-AzFunctionApp.ps1 | 213 ++++++++---------- 1 file changed, 96 insertions(+), 117 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index b1266285fe74..f99905fe17ec 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -737,148 +737,127 @@ Example: $functionAppDef.HttpPerInstanceConcurrency = $HttpPerInstanceConcurrency } - try { + # Create Flex Consumption App Service Plan + $planName = New-PlanName -ResourceGroupName $ResourceGroupName + if ($WhatIfPreference.IsPresent) + { + Write-Verbose "WhatIf: Creating Flex Consumption App Service Plan '$planName' in resource group '$ResourceGroupName' at location '$FlexConsumptionLocation'..." -Verbose + $planInfo = New-Object PSObject -Property @{ + Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/$ResourceGroupName/providers/Microsoft.Web/serverfarms/$planName" + } + } + else + { + $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` + -ResourceGroupName $ResourceGroupName ` + -Location $FlexConsumptionLocation ` + -EnableZoneRedundancy:$EnableZoneRedundancy ` + @params + $flexConsumptionPlanCreated = $true + } + + $functionAppDef.ServerFarmId = $planInfo.Id + $functionAppDef.Location = $FlexConsumptionLocation + + # Validate Deployment Storage + if (-not $DeploymentStorageName) { + $DeploymentStorageName = $StorageAccountName + } - # Create Flex Consumption App Service Plan - $planName = New-PlanName -ResourceGroupName $ResourceGroupName + if (-not $DeploymentStorageContainerName) + { + # Generate a unique container name + $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix + } + + # Check if container exists; create if missing + $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params + + $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ErrorAction SilentlyContinue @params + if (-not $container) + { if ($WhatIfPreference.IsPresent) { - Write-Verbose "WhatIf: Creating Flex Consumption App Service Plan '$planName' in resource group '$ResourceGroupName' at location '$FlexConsumptionLocation'..." -Verbose - $planInfo = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan - $planInfo.Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/$ResourceGroupName/providers/Microsoft.Web/serverfarms/$planName" + Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." -Verbose + $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.BlobContainer } else { - $planInfo = New-FlexConsumptionAppPlan -Name $PlanName ` - -ResourceGroupName $ResourceGroupName ` - -Location $FlexConsumptionLocation ` - -EnableZoneRedundancy:$EnableZoneRedundancy ` - @params - $flexConsumptionPlanCreated = $true + Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." + $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + @params + $flexConsumptionStorageContainerCreated = $true } + } - $functionAppDef.ServerFarmId = $planInfo.Id - $functionAppDef.Location = $FlexConsumptionLocation - - # Validate Deployment Storage - if (-not $DeploymentStorageName) { - $DeploymentStorageName = $StorageAccountName - } + # Blob URL + $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" + $functionAppDef.StorageType = "blobContainer" + $functionAppDef.StorageValue = $blobContainerUrl - if (-not $DeploymentStorageContainerName) - { - # Generate a unique container name - $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) - $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 - $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix - } + # Validate DeploymentStorageAuthType + if (-not $DeploymentStorageAuthType) + { + $DeploymentStorageAuthType = 'StorageAccountConnectionString' + } - # Check if container exists; create if missing - $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params + $functionAppDef.AuthenticationType = $DeploymentStorageAuthType - $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ErrorAction SilentlyContinue @params - if (-not $container) + # Set deployment storage authentication + if ($DeploymentStorageAuthType -eq "SystemAssignedIdentity") + { + if ($DeploymentStorageAuthValue) { - if ($WhatIfPreference.IsPresent) - { - Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." -Verbose - $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.BlobContainer - } - else - { - Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." - $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ContainerPropertyPublicAccess None ` - @params - $flexConsumptionStorageContainerCreated = $true - } + $errorMessage = "-DeploymentStorageAuthValue is only valid when -DeploymentStorageAuthType is UserAssignedIdentity or StorageAccountConnectionString." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId $errorId ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception } - - # Blob URL - $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" - $functionAppDef.StorageType = "blobContainer" - $functionAppDef.StorageValue = $blobContainerUrl - - # Validate DeploymentStorageAuthType - if (-not $DeploymentStorageAuthType) + } + elseif ($DeploymentStorageAuthType -eq "StorageAccountConnectionString") + { + if (-not $DeploymentStorageAuthValue) { - $DeploymentStorageAuthType = 'StorageAccountConnectionString' + Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." + $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params } - $functionAppDef.AuthenticationType = $DeploymentStorageAuthType + $DEPLOYMENT_STORAGE_CONNECTION_STRING = 'DEPLOYMENT_STORAGE_CONNECTION_STRING' - # Set deployment storage authentication - if ($DeploymentStorageAuthType -eq "SystemAssignedIdentity") + $functionAppDef.AuthenticationStorageAccountConnectionStringName = $DEPLOYMENT_STORAGE_CONNECTION_STRING + $appSettings.Add((NewAppSetting -Name $DEPLOYMENT_STORAGE_CONNECTION_STRING -Value $DeploymentStorageAuthValue)) + } + elseif ($DeploymentStorageAuthType -eq "UserAssignedIdentity") + { + if (-not $DeploymentStorageAuthValue) { - if ($DeploymentStorageAuthValue) - { - $errorMessage = "-DeploymentStorageAuthValue is only valid when -DeploymentStorageAuthType is UserAssignedIdentity or StorageAccountConnectionString." - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId $errorId ` + $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 - } } - elseif ($DeploymentStorageAuthType -eq "StorageAccountConnectionString") - { - if (-not $DeploymentStorageAuthValue) - { - Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." - $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params - } - $DEPLOYMENT_STORAGE_CONNECTION_STRING = 'DEPLOYMENT_STORAGE_CONNECTION_STRING' - - $functionAppDef.AuthenticationStorageAccountConnectionStringName = $DEPLOYMENT_STORAGE_CONNECTION_STRING - $appSettings.Add((NewAppSetting -Name $DEPLOYMENT_STORAGE_CONNECTION_STRING -Value $DeploymentStorageAuthValue)) - } - elseif ($DeploymentStorageAuthType -eq "UserAssignedIdentity") - { - if (-not $DeploymentStorageAuthValue) - { - $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 - } - - # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity - $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params - $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id - } - - # Set runtime information - $functionAppDef.RuntimeName = $runtimeInfo.Sku.functionAppConfigProperties.runtime.name - $functionAppDef.RuntimeVersion = $runtimeInfo.Sku.functionAppConfigProperties.runtime.version + # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params + $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id } - catch - { - # TODO: We need a similar cleanup logic for when we fail to create the function app. - if ($flexConsumptionPlanCreated) - { - Remove-AzFunctionAppPlan -ResourceGroupName $ResourceGroupName -Name $planName @params - } - if ($flexConsumptionStorageContainerCreated) - { - Remove-AzBlobContainer -ResourceGroupName $ResourceGroupName -StorageAccountName $DeploymentStorageName -ContainerName $DeploymentStorageContainerName @params - } - $errorMessage = "Failed to create Flex Consumption Function App. Exception: $_" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "FailedToCreateFlexConsumptionFunctionApp" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - } + # Set runtime information + $functionAppDef.RuntimeName = $runtimeInfo.Sku.functionAppConfigProperties.runtime.name + $functionAppDef.RuntimeVersion = $runtimeInfo.Sku.functionAppConfigProperties.runtime.version } # Validate storage account and get connection string From d2f03b43344d771f3c306afb190ef91a77669950 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 00:02:48 -0800 Subject: [PATCH 58/76] Disable randomness in resource names to enable playback --- .../custom/HelperFunctions.ps1 | 10 ++++- .../custom/New-AzFunctionApp.ps1 | 37 ++++++++++++------- 2 files changed, 33 insertions(+), 14 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 785cee5c1f71..a6a8f3482731 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -2568,7 +2568,15 @@ function New-PlanName $ResourceGroupName ) - $suffix = "-" + ([guid]::NewGuid().ToString().Substring(0,4)) + if ($env:FunctionsTestMode) + { + $suffix = "-0000" + } + else + { + $suffix = "-" + ([guid]::NewGuid().ToString().Substring(0,4)) + } + $name = $ResourceGroupName -replace '[^a-zA-Z0-9]', '' $prefix = "ASP-$name" return $prefix.Substring(0, [Math]::Min(35, $prefix.Length)) + $suffix diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index f99905fe17ec..bfc52927b6f3 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -768,17 +768,28 @@ Example: { # Generate a unique container name $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) - $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + $normalizedName = $normalizedName.ToLower() + + if ($env:FunctionsTestMode) + { + $randomSuffix = 0 + } + else + { + $randomSuffix = Get-Random -Minimum 0 -Maximum 9999999 + } + $DeploymentStorageContainerName = "app-package-$normalizedName-{0:D7}" -f $randomSuffix } - # Check if container exists; create if missing $StorageAccountInfo = Get-StorageAccountInfo -Name $DeploymentStorageName @params + # If container does not exist, create it $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ErrorAction SilentlyContinue @params + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ErrorAction SilentlyContinue + @params if (-not $container) { if ($WhatIfPreference.IsPresent) @@ -788,17 +799,16 @@ Example: } else { - Write-Verbose "Container '$DeploymentStorageContainerName' does not exist. Creating..." $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ContainerPropertyPublicAccess None ` - @params + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + @params $flexConsumptionStorageContainerCreated = $true } } - # Blob URL + # Set storage type and value $blobContainerUrl = "$($StorageAccountInfo.PrimaryEndpointBlob)$DeploymentStorageContainerName" $functionAppDef.StorageType = "blobContainer" $functionAppDef.StorageValue = $blobContainerUrl @@ -828,7 +838,7 @@ Example: { if (-not $DeploymentStorageAuthValue) { - Write-Verbose "DeploymentStorageAuthValue was not provided. Generating a connection string for deployment storage..." + # Get connection string for deployment storage $DeploymentStorageAuthValue = GetConnectionString -StorageAccountName $DeploymentStorageName @params } @@ -858,6 +868,7 @@ Example: # Set runtime information $functionAppDef.RuntimeName = $runtimeInfo.Sku.functionAppConfigProperties.runtime.name $functionAppDef.RuntimeVersion = $runtimeInfo.Sku.functionAppConfigProperties.runtime.version + } # Validate storage account and get connection string @@ -928,7 +939,7 @@ Example: } else { - Write-Verbose "Creating new Application Insights project for function app '$Name' in resource group '$ResourceGroupName'." -Verbose + # Create the Application Insights project $newAppInsightsProject = CreateApplicationInsightsProject -ResourceGroupName $resourceGroupName ` -ResourceName $Name ` -Location $functionAppDef.Location ` From f3dc2b8e16e4c369bdec6f5e62343ccecb733f40 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 00:04:34 -0800 Subject: [PATCH 59/76] Add Flex Consumption regression tests --- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 613 ++++++++++++++++++ 1 file changed, 613 insertions(+) create mode 100644 src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 new file mode 100644 index 000000000000..6d10110afe44 --- /dev/null +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -0,0 +1,613 @@ + + +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzFunctionApp-FlexConsumption.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +$env:FunctionsTestMode = $true + +Describe 'New-AzFunctionApp - Flex Consumption' { + + BeforeAll { + + # Save current enviroment variable + $oldFunctionsTestMode = $env:FunctionsTestMode + + # Set environment variables for Flex Consumption tests + $env:FunctionsTestMode = $true + $env:FunctionsUseFlexStackTestData = $true + + # Set Flex Consumption test variables + $flexTestRunId = 110125 + $flexLocation = 'East Asia' + $flexResourceGroupName = "Functions-Flex-RG-" + $flexTestRunId + + # Create resource group and storage accounts for Flex Consumption tests + Write-Verbose "Creating resource group: $flexResourceGroupName in location: $flexLocation" -Verbose + New-AzResourceGroup -Name $flexResourceGroupName -Location $flexLocation | Out-Null + + $StorageAccountInfo=@{} + + # Create one storage account per runtime for Flex Consumption tests. The storage account name must be unique and at most 24 characters long. + foreach ($runtimeName in @("DotNet-Isolated", "Node", "Java", "PowerShell", "Python", "Custom")) + { + $storageAccountName = "funcappflexsa" + $flexTestRunId + $runtimeName.ToLower() + $storageAccountName = $storageAccountName.Substring(0, [Math]::Min($storageAccountName.Length, 24)) + Write-Verbose "Creating storage account: $storageAccountName in resource group: $flexResourceGroupName" -Verbose + New-AzStorageAccount -ResourceGroupName $flexResourceGroupName ` + -Name $storageAccountName ` + -Location $flexLocation ` + -SkuName Standard_GRS ` + -Kind StorageV2 ` + -AllowBlobPublicAccess $false | Out-Null + + $StorageAccountInfo[$runtimeName] = $storageAccountName + } + + # Helper function to validate core Flex Consumption properties + function Test-FlexConsumptionProperties { + param( + [Parameter(Mandatory=$true)] + $FunctionApp, + + [Parameter(Mandatory=$true)] + [hashtable]$ExpectedProperties, + + [Parameter(Mandatory=$true)] + [string]$Runtime, + + [Parameter(Mandatory=$true)] + [string]$Location + ) + + # Validate basic properties + $FunctionApp.Runtime | Should -Be $Runtime + $FunctionApp.Location | Should -Be $Location + $FunctionApp.Kind | Should -Match "functionapp" + $FunctionApp.State | Should -Be "Running" + $FunctionApp.AppServicePlan | Should -Not -BeNullOrEmpty + + # Validate expected properties + foreach ($propertyName in $ExpectedProperties.Keys) + { + Write-Verbose "Checking property: $propertyName" -Verbose + $expectedValue = $ExpectedProperties[$propertyName] + $actualValue = $FunctionApp.$propertyName + + if ($expectedValue -eq $null) { + $actualValue | Should -Be $null + } + else { + $actualValue | Should -Be $expectedValue + } + } + } + + # Helper function to validate app service plan SKU + function Test-FlexConsumptionPlanSku { + param( + [Parameter(Mandatory=$true)] + [string]$PlanName, + + [Parameter(Mandatory=$true)] + [string]$ResourceGroupName, + + [Parameter(Mandatory=$true)] + [string]$ExpectedSku + ) + + Write-Verbose "Validating app service plan SKU..." -Verbose + $plan = Get-AzFunctionAppPlan -Name $PlanName -ResourceGroupName $ResourceGroupName + $plan.SkuName | Should -Be $ExpectedSku + } + + # Helper function to validate app settings + function Test-FlexConsumptionAppSettings { + param( + [Parameter(Mandatory=$true)] + [string]$AppName, + + [Parameter(Mandatory=$true)] + [string]$ResourceGroupName, + + [Parameter(Mandatory=$true)] + [string[]]$ExpectedSettings + ) + + Write-Verbose "Validating app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $AppName -ResourceGroupName $ResourceGroupName + + foreach ($settingName in $ExpectedSettings) + { + Write-Verbose "Checking app setting: $settingName" -Verbose + $applicationSettings[$settingName] | Should -Not -BeNullOrEmpty + } + + return $applicationSettings + } + + # Helper function to cleanup function app + function Remove-TestFunctionApp { + param( + [Parameter(Mandatory=$true)] + [string]$AppName, + + [Parameter(Mandatory=$true)] + [string]$ResourceGroupName + ) + + Write-Verbose "Cleaning up function app: $AppName" -Verbose + $functionApp = Get-AzFunctionApp -Name $AppName -ResourceGroupName $ResourceGroupName -ErrorAction SilentlyContinue + if ($functionApp) { + Remove-AzFunctionApp -Name $AppName -ResourceGroupName $ResourceGroupName -Force -ErrorAction SilentlyContinue + } + } + } + + AfterAll { + # Restore original environment variable + $env:FunctionsTestMode = $oldFunctionsTestMode + $env:FunctionsUseFlexStackTestData = $null + + # Clean up resource group and storage accounts used for Flex Consumption tests + Write-Verbose "Removing resource group: $flexResourceGroupName" -Verbose + Remove-AzResourceGroup -Name $flexResourceGroupName -Force + + Write-Verbose "Done." -Verbose + } + + $expectedAppSettings = @('AzureWebJobsStorage', 'APPLICATIONINSIGHTS_CONNECTION_STRING', 'DEPLOYMENT_STORAGE_CONNECTION_STRING') + + # Test Flex Consumption basic creation for each supported runtime (using default versions) + $flexConsumptionTestCases = @( + @{ + "Name" = "Functions-Flex-DotNetIsolated-" + $flexTestRunId + "Runtime" = "DotNet-Isolated" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["DotNet-Isolated"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "8.0" + "RuntimeName" = "dotnet-isolated" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + }, + @{ + "Name" = "Functions-Flex-Node-" + $flexTestRunId + "Runtime" = "Node" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["Node"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "22" + "RuntimeName" = "node" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + }, + @{ + "Name" = "Functions-Flex-Python-" + $flexTestRunId + "Runtime" = "Python" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["Python"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "3.11" + "RuntimeName" = "python" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + }, + @{ + "Name" = "Functions-Flex-Java-" + $flexTestRunId + "Runtime" = "Java" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["Java"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "17" + "RuntimeName" = "java" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + }, + @{ + "Name" = "Functions-Flex-PowerShell-" + $flexTestRunId + "Runtime" = "PowerShell" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["PowerShell"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "7.4" + "RuntimeName" = "powershell" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + }, + @{ + "Name" = "Functions-Flex-Custom-" + $flexTestRunId + "Runtime" = "Custom" + "RuntimeVersion" = $null # Use default + "StorageAccountName" = $StorageAccountInfo["Custom"] + "ExpectedSku" = "FC1" + "ExpectedAppSettings" = $expectedAppSettings + "ExpectedProperties" = @{ + "RuntimeVersion" = "1.0" + "RuntimeName" = "custom" + "ScaleAndConcurrencyInstanceMemoryMb" = 2048 + "ScaleAndConcurrencyMaximumInstanceCount" = 100 + "ScaleAndConcurrencyHttpPerInstanceConcurrency" = $null + "ScaleAndConcurrencyAlwaysReady" = $null + "StorageType" = "blobcontainer" + "AuthenticationStorageAccountConnectionStringName" = "DEPLOYMENT_STORAGE_CONNECTION_STRING" + "AuthenticationType" = "storageaccountconnectionstring" + "Location" = $flexLocation + } + } + ) + + foreach ($testCase in $flexConsumptionTestCases) { + + $appName = $testCase["Name"] + $runtime = $testCase["Runtime"] + $runtimeVersion = $testCase["RuntimeVersion"] + $storageAccountName = $testCase["StorageAccountName"] + $expectedSku = $testCase["ExpectedSku"] + $expectedAppSettings = $testCase["ExpectedAppSettings"] + $expectedProperties = $testCase["ExpectedProperties"] + + It "Create $runtime Function App with default runtime version and scaling settings hosted in Flex Consumption" { + try { + Write-Verbose "Creating Flex Consumption function app: $appName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + Write-Verbose "Location: $flexLocation" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + $createParams = @{ + Name = $appName + ResourceGroupName = $flexResourceGroupName + StorageAccountName = $storageAccountName + Runtime = $runtime + FlexConsumptionLocation = $flexLocation + } + + # Add RuntimeVersion if specified + if ($runtimeVersion) { + $createParams['RuntimeVersion'] = $runtimeVersion + } + + New-AzFunctionApp @createParams + + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + # Use helper function to validate properties + Test-FlexConsumptionProperties -FunctionApp $functionApp ` + -ExpectedProperties $expectedProperties ` + -Runtime $runtime ` + -Location $flexLocation + + # Validate app service plan SKU + Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSku $expectedSku + + # Validate app settings + Test-FlexConsumptionAppSettings -AppName $appName ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSettings $expectedAppSettings + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + } + + It "Create Python Flex Consumption app with custom scaling settings and Always Ready configuration" { + + # Use the Python test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "Python" } + + $appName = "Functions-Python-Flex-Scaling-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + $runtimeVersion = "3.11" + + $maxInstances = 100 + $instanceMemory = 4096 + $httpConcurrency = 16 + $alwaysReady = @( + @{ + "name" = "http" + "instanceCount" = 2 + } + ) + + Write-Verbose "Creating Flex Consumption app with custom scaling settings" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Runtime: $runtime $runtimeVersion" -Verbose + + try { + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` + -FlexConsumptionLocation $flexLocation ` + -AlwaysReady $alwaysReady ` + -MaximumInstanceCount $maxInstances ` + -InstanceMemoryMB $instanceMemory ` + -HttpPerInstanceConcurrency $httpConcurrency + + Write-Verbose "Validating scaling configuration..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + # Validate core properties using base test case + $functionApp.Runtime | Should -Be $runtime + $functionApp.RuntimeVersion | Should -Be $runtimeVersion + $functionApp.RuntimeName | Should -Be $baseTestCase.ExpectedProperties.RuntimeName + $functionApp.ScaleAndConcurrencyInstanceMemoryMb | Should -Be 4096 + $functionApp.ScaleAndConcurrencyMaximumInstanceCount | Should -Be 100 + $functionApp.ScaleAndConcurrencyHttpPerInstanceConcurrency | Should -Be $null + $functionApp.ScaleAndConcurrencyAlwaysReady[0].InstanceCount | Should -Be 2 + $functionApp.ScaleAndConcurrencyAlwaysReady[0].Name | Should -Be "http" + $functionApp.StorageType | Should -Be "blobcontainer" + $functionApp.AuthenticationStorageAccountConnectionStringName | Should -Be "DEPLOYMENT_STORAGE_CONNECTION_STRING" + $functionApp.AuthenticationType | Should -Be "storageaccountconnectionstring" + $functionApp.Location | Should -Be $flexLocation + $functionApp.State | Should -Be "Running" + + # Validate app service plan and settings + Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSku "FC1" + + Test-FlexConsumptionAppSettings -AppName $appName ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSettings $expectedAppSettings + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + It "Create Node Flex Consumption app with SystemAssigned managed identity for deployment storage" { + + # Use the Node test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "Node" } + + $appName = "Functions-Node-SystemIdentity-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + + Write-Verbose "Creating Flex Consumption app with SystemAssigned identity for deployment storage" -Verbose + + try { + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -DeploymentStorageAuthType "SystemAssignedIdentity" ` + -IdentityType "SystemAssigned" + + Write-Verbose "Validating SystemAssigned identity configuration..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + # Validate basic properties using base test case expectations + $functionApp.Runtime | Should -Be $runtime + $functionApp.RuntimeVersion | Should -Be $baseTestCase.ExpectedProperties.RuntimeVersion + $functionApp.RuntimeName | Should -Be $baseTestCase.ExpectedProperties.RuntimeName + $functionApp.ScaleAndConcurrencyInstanceMemoryMb | Should -Be $baseTestCase.ExpectedProperties.ScaleAndConcurrencyInstanceMemoryMb + $functionApp.ScaleAndConcurrencyMaximumInstanceCount | Should -Be $baseTestCase.ExpectedProperties.ScaleAndConcurrencyMaximumInstanceCount + $functionApp.ScaleAndConcurrencyHttpPerInstanceConcurrency | Should -Be $null + $functionApp.ScaleAndConcurrencyAlwaysReady | Should -Be $null + $functionApp.StorageType | Should -Be "blobcontainer" + $functionApp.Location | Should -Be $flexLocation + $functionApp.State | Should -Be "Running" + + # Validate deployment storage authentication type + $functionApp.AuthenticationType | Should -Be "systemassignedidentity" + + # Validate managed identity + $functionApp.IdentityType | Should -Be "SystemAssigned" + $functionApp.IdentityPrincipalId | Should -Not -BeNullOrEmpty + + # Validate app service plan + Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSku "FC1" + + # Validate app settings (should NOT have DEPLOYMENT_STORAGE_CONNECTION_STRING for SystemAssigned) + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $flexResourceGroupName + $applicationSettings['AzureWebJobsStorage'] | Should -Not -BeNullOrEmpty + $applicationSettings['APPLICATIONINSIGHTS_CONNECTION_STRING'] | Should -Not -BeNullOrEmpty + $applicationSettings.ContainsKey('DEPLOYMENT_STORAGE_CONNECTION_STRING') | Should -Be $false + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + It "Create PowerShell Flex Consumption app with custom tags and app settings" { + + # Use the PowerShell test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "PowerShell" } + + $appName = "Functions-PS-CustomConfig-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + + $customTags = @{ + "Environment" = "Test" + "Project" = "FlexConsumption" + "Owner" = "PowerShell" + } + $customAppSettings = @{ + "CustomSetting1" = "Value1" + "CustomSetting2" = "Value2" + } + + Write-Verbose "Creating Flex Consumption app with custom configuration" -Verbose + + try { + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -Tag $customTags ` + -AppSetting $customAppSettings + + Write-Verbose "Validating custom tags and settings..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + # Validate basic properties using helper and base test case + Test-FlexConsumptionProperties -FunctionApp $functionApp ` + -ExpectedProperties $baseTestCase.ExpectedProperties ` + -Runtime $runtime ` + -Location $flexLocation + + # Validate custom tags + foreach ($tagName in $customTags.Keys) { + $functionApp.Tag.AdditionalProperties[$tagName] | Should -Be $customTags[$tagName] + } + + # Validate app settings + $applicationSettings = Test-FlexConsumptionAppSettings -AppName $appName ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSettings $expectedAppSettings + + # Validate custom app settings + foreach ($settingName in $customAppSettings.Keys) { + $applicationSettings[$settingName] | Should -Be $customAppSettings[$settingName] + } + + # Validate app service plan + Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSku "FC1" + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + It "Create Java Flex Consumption app with disabled Application Insights" { + + # Use the Java test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "Java" } + + $appName = "Functions-Java-NoAppInsights-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + + Write-Verbose "Creating Flex Consumption app with disabled Application Insights" -Verbose + + try { + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -DisableApplicationInsights + + Write-Verbose "Validating Application Insights is disabled..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + # Validate basic properties using helper and base test case + Test-FlexConsumptionProperties -FunctionApp $functionApp ` + -ExpectedProperties $baseTestCase.ExpectedProperties ` + -Runtime $runtime ` + -Location $flexLocation + + # Validate Application Insights connection string is not set + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $flexResourceGroupName + $applicationSettings.ContainsKey("APPLICATIONINSIGHTS_CONNECTION_STRING") | Should -Be $false + + # Validate other app settings are present (excluding APPLICATIONINSIGHTS_CONNECTION_STRING) + $applicationSettings['AzureWebJobsStorage'] | Should -Not -BeNullOrEmpty + $applicationSettings['DEPLOYMENT_STORAGE_CONNECTION_STRING'] | Should -Not -BeNullOrEmpty + + # Validate app service plan + Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` + -ResourceGroupName $flexResourceGroupName ` + -ExpectedSku "FC1" + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + # Test WhatIf scenarios for Flex Consumption + It "Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption" { + + # Use the DotNet-Isolated test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "DotNet-Isolated" } + + $appName = "Functions-DotNet-WhatIf-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + + Write-Verbose "Testing WhatIf for Flex Consumption" -Verbose + + # This should not throw and should not create actual resources + { + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -WhatIf + } | Should -Not -Throw + + # Verify no function app was actually created + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName -ErrorAction SilentlyContinue + $functionApp | Should -BeNull + } +} \ No newline at end of file From 557afe452f0c77b6f06210afbcc43dfced43aff8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 00:31:41 -0800 Subject: [PATCH 60/76] Fix string logic --- .../Functions.Autorest/custom/New-AzFunctionApp.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index bfc52927b6f3..15873d5d0dc2 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -767,7 +767,8 @@ Example: if (-not $DeploymentStorageContainerName) { # Generate a unique container name - $normalizedName = ($Name -replace '[^a-zA-Z0-9]', '').Substring(0, [Math]::Min(32, $Name.Length)) + $tempName = $Name -replace '[^a-zA-Z0-9]', '' + $normalizedName = $tempName.Substring(0, [Math]::Min(32, $tempName.Length)) $normalizedName = $normalizedName.ToLower() if ($env:FunctionsTestMode) @@ -788,7 +789,7 @@ Example: $container = Get-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` -AccountName $DeploymentStorageName ` -ResourceGroupName $ResourceGroupName ` - -ErrorAction SilentlyContinue + -ErrorAction SilentlyContinue ` @params if (-not $container) { From 1bc02757426e505d8de4794e24a8fe5734fd75b9 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:03:48 -0800 Subject: [PATCH 61/76] Update logic for creating Flex Consumption app plan --- .../custom/HelperFunctions.ps1 | 10 +-- .../custom/New-AzFunctionApp.ps1 | 90 ++++++++++++------- 2 files changed, 61 insertions(+), 39 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index a6a8f3482731..4e0d62d8fca0 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -2630,7 +2630,7 @@ function New-FlexConsumptionAppPlan if ($EnableZoneRedundancy.IsPresent) { $servicePlan.ZoneRedundant = $true - $servicePlan.SkuCapability = 3 + $servicePlan.Capacity = 3 } # Add plan definition @@ -2842,7 +2842,7 @@ function Resolve-UserAssignedIdentity $resourceGroup = $matches['ResourceGroup'] $identityName = $matches['IdentityName'] - if ((-not [string]::IsNullOrEmpty($resourceGroup)) -or (-not [string]::IsNullOrEmpty($identityName)) -or (-not [string]::IsNullOrEmpty($subscriptionId))) + if ([string]::IsNullOrEmpty($resourceGroup) -or [string]::IsNullOrEmpty($identityName) -or [string]::IsNullOrEmpty($subscriptionId)) { $errorMessage = "Invalid identity resource ID: '$IdentityResourceId'. Unable to parse resource group name and identity name." $exception = [System.InvalidOperationException]::New($errorMessage) @@ -2853,7 +2853,7 @@ function Resolve-UserAssignedIdentity } # Check if identity exists - $identity = Get-AzUserAssignedIdentity -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroup -ResourceName $identityName -ErrorAction SilentlyContinue + $identity = Get-AzUserAssignedIdentity -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroup -ResourceName $identityName -ErrorAction SilentlyContinue @PSBoundParameters if (-not $identity) { @@ -2872,7 +2872,7 @@ function Resolve-UserAssignedIdentity { $errorMessage = "Invalid resource ID format: '$IdentityResourceId'." $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "StorageAccountHasNoKeyValue" ` + ThrowTerminatingError -ErrorId "InvalidIdentityResourceIdFormat" ` -ErrorMessage $errorMessage ` -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` -Exception $exception @@ -3048,7 +3048,7 @@ function Get-FlexFunctionAppRuntime } 'DefaultOrLatest' { - # Return default/latest version + # Return default/latest version, which ever is the newest one $defaultStack = $stacks | Where-Object { $_.IsDefault } | Sort-Object -Property Version -Descending | Select-Object -First 1 if (-not $defaultStack) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 15873d5d0dc2..f58e36bc2610 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -209,12 +209,14 @@ function New-AzFunctionApp { ${DeploymentStorageContainerName}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Deployment storage authentication type. Allowed values: StorageAccountConnectionString, SystemAssignedIdentity, UserAssignedIdentity')] - [ValidateSet("StorageAccountConnectionString","SystemAssignedIdentity","UserAssignedIdentity")] + [ValidateSet("StorageAccountConnectionString", "SystemAssignedIdentity", "UserAssignedIdentity")] + [ValidateNotNullOrEmpty()] [System.String] ${DeploymentStorageAuthType}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage='Deployment storage authentication value used for the chosen auth type (eg: connection string, or user-assigned identity resource id).')] [System.String] + [ValidateNotNullOrEmpty()] ${DeploymentStorageAuthValue}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage= @@ -224,6 +226,7 @@ function New-AzFunctionApp { Example: @(@{ name = "http"; instanceCount = 2 }).')] + [ValidateNotNullOrEmpty()] [Hashtable[]] ${AlwaysReady}, @@ -609,31 +612,7 @@ Example: $functionAppDef.IsXenon = $null $appSettings.Clear() - # # Validate Flex Consumption location - # $formattedLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation - # $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption ` - # -ZoneRedundant:$EnableZoneRedundancy ` - # @params - - # $found = $false - # foreach ($region in $flexConsumptionRegions) - # { - # $regionName = Format-FlexConsumptionLocation -Location $region.Name - - # if ($region.Name -eq $FlexConsumptionLocation) - # { - # $found = $true - # break - # } - # elseif ($regionName -eq $formattedLocation) - # { - # $found = $true - # break - # } - # } - # Validate Flex Consumption location - #Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation -ZoneRedundant:$EnableZoneRedundancy @params Validate-FlexConsumptionLocation -Location $FlexConsumptionLocation -ZoneRedundant:$EnableZoneRedundancy $FlexConsumptionLocation = Format-FlexConsumptionLocation -Location $FlexConsumptionLocation @@ -800,12 +779,58 @@ Example: } else { - $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` - -AccountName $DeploymentStorageName ` - -ResourceGroupName $ResourceGroupName ` - -ContainerPropertyPublicAccess None ` - @params - $flexConsumptionStorageContainerCreated = $true + # Create blob container + $maxNumberOfTries = 3 + $tries = 1 + $myError = $null + while ($true) + { + try + { + $container = New-AzBlobContainer -ContainerName $DeploymentStorageContainerName ` + -AccountName $DeploymentStorageName ` + -ResourceGroupName $ResourceGroupName ` + -ContainerPropertyPublicAccess None ` + -ErrorAction Stop ` + @params + if ($container) + { + $flexConsumptionStorageContainerCreated = $true + break + } + } + catch + { + # Ignore the failure and continue + $myError = $_ + } + + if ($tries -ge $maxNumberOfTries) + { + break + } + + # Wait for 2^(tries-1) seconds between retries. In this case, it would be 1, 2, and 4 seconds, respectively. + $waitInSeconds = [Math]::Pow(2, $tries - 1) + Start-Sleep -Seconds $waitInSeconds + + $tries++ + } + + if (-not $container) + { + $errorMessage = "Failed to create blob container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'." + if ($myError.Exception.Message) + { + $errorMessage += " Error details: $($myError.Exception.Message)" + } + + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FailedToCreateBlobContainer" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } } } @@ -860,8 +885,6 @@ Example: -Exception $exception } - # $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - # $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity $identity = Resolve-UserAssignedIdentity -IdentityResourceId $DeploymentStorageAuthValue @params $functionAppDef.AuthenticationUserAssignedIdentityResourceId = $identity.Id } @@ -923,7 +946,6 @@ Example: -Exception $exception } - #$appSettings.Add((NewAppSetting -Name 'APPINSIGHTS_INSTRUMENTATIONKEY' -Value $appInsightsProject.InstrumentationKey)) $appSettings.Add((NewAppSetting -Name 'APPLICATIONINSIGHTS_CONNECTION_STRING' -Value $appInsightsProject.ConnectionString)) } else From ffb3d4b1045c88a3477b83121f9f1c522eab76c8 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:12:16 -0800 Subject: [PATCH 62/76] Update Flex Consumption regression tests and add test recording --- ...FunctionApp.FlexConsumption.Recording.json | 11316 ++++++++++++++++ ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 122 +- 2 files changed, 11422 insertions(+), 16 deletions(-) create mode 100644 src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json new file mode 100644 index 000000000000..b2fe95523824 --- /dev/null +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json @@ -0,0 +1,11316 @@ +{ + "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/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-Flex-DotNetIsolated-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "73" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "19423b5e-b651-4b58-8a8d-8aa731c2d8d6" ], + "X-AspNet-Version": [ "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/a2efab65-db41-4121-9329-c246e91b19a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0823d292-1a0b-4c65-a272-24f69b90f291" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030754Z:0823d292-1a0b-4c65-a272-24f69b90f291" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C2648409E75404E815D54C67F5CF08E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:07:53Z" ], + "Date": [ "Mon, 10 Nov 2025 03:07:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bfe78ffd-156a-4c9c-9412-3f301c0354a8" ], + "X-AspNet-Version": [ "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/04568d16-d49a-473f-86bf-6ef017787383" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "30d8fe75-46b0-4f4f-a733-e330f456fede" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T030758Z:30d8fe75-46b0-4f4f-a733-e330f456fede" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DD441E3E2AAD4D7DA4E8306027E60BE5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:07:54Z" ], + "Date": [ "Mon, 10 Nov 2025 03:07:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1917" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"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-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "493dbfeb-b5cd-43e3-9a4e-f083bd052f95" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "305a485e-ae2a-4bb3-bdce-c94c7e06b0fc" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c1e45dfa-417b-46d0-9d9d-c672b3a421d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030829Z:c1e45dfa-417b-46d0-9d9d-c672b3a421d2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 13E903F722A34658A67F794B0684B50F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "493dbfeb-b5cd-43e3-9a4e-f083bd052f95" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a3150ef9-cd97-4306-b888-b1104cb22b13" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8a9e67b9-513d-44a1-96ce-9435af0d4a81" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030829Z:8a9e67b9-513d-44a1-96ce-9435af0d4a81" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4301B6BFCD5E4982BC425CD6288AE20D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "7" ], + "x-ms-client-request-id": [ "f8c94312-8d29-4828-babb-604e66e0fc58" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "10c64295-d2da-49e9-b76c-8a384d9ad5a9", "ed03d766-8421-4c4d-be6d-e248b0ecfc2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "30acc359-7c67-45ea-be28-3de9abea1085" ], + "x-ms-correlation-request-id": [ "30acc359-7c67-45ea-be28-3de9abea1085" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030830Z:30acc359-7c67-45ea-be28-3de9abea1085" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF8642BCC3D24777963BC3670DCD3733 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsflexdotnetisolated11252-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsflexdotnetisolated11252-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "b4de9fca-53e4-4af1-89fc-593ae4dbd483" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "f06e838a-5481-425f-9b13-2ad164861a69" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/06d004e2-b617-4944-a9e8-081b241f677e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "25d42c19-9d4d-44e9-a927-4b96cc224adc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T030831Z:25d42c19-9d4d-44e9-a927-4b96cc224adc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C6618734F4D496590387005EFD88822 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:7d187033-301e-0041-25ef-5183cc000000\\nTime:2025-11-10T03:08:31.3261030Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsflexdotnetisolated11252-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsflexdotnetisolated11252-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE20066DEE5826\"" ], + "x-ms-request-id": [ "23947413-5269-4ebb-8ab0-6f8db25f4811" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cdd3f6a6-408c-402a-bab2-b7801c9de60b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d9e59a03-6d73-41d6-996e-d5e440d9ef9d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030832Z:d9e59a03-6d73-41d6-996e-d5e440d9ef9d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D0565C7F05D344A7A70E04A9C4456FB2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsflexdotnetisolated11252-0000000\",\"name\":\"app-package-functionsflexdotnetisolated11252-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "10" ], + "x-ms-client-request-id": [ "ce8b61d5-8b17-4f2d-8ab4-8d073b766bc8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "684f166b-5739-45cf-b0f4-72d4516d182e", "ebd15d92-ef08-403b-8bae-3832209a7730" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "597006ac-e34e-491a-b888-26a1d78c11ea" ], + "x-ms-correlation-request-id": [ "597006ac-e34e-491a-b888-26a1d78c11ea" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030832Z:597006ac-e34e-491a-b888-26a1d78c11ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2CE23A0A02FB490DA220690BCBBA7074 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:32Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "272c0c69-e4e7-438f-b00d-516e5711d083" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "fa6d6cd6-d018-4432-a5a5-c4a039008263" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/07d6b6f9-2be4-47ff-af8c-354128f16e0e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "359c23df-9235-43ed-8b34-023ba33c3c45" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251110T030833Z:359c23df-9235-43ed-8b34-023ba33c3c45" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 89D6CE5B4705458C9253A84003D6DDD0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:32Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"rD41sAmSsmfoAOtTS/T7YsA85mFIgY9EF86McQ97Q1cMvTa6Xd7g861EwR2Krnv7AmEIClOOD0qm+AStxMTIYg==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "12" ], + "x-ms-client-request-id": [ "49084b9d-6da0-4150-b06c-178c5712ef0f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ec9b9b55-52a0-48b3-b4cc-d15cd7a16c34", "10ea5b90-600f-4f35-8bb0-8c7b0e198fbc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "6ab6247f-8efb-4a74-b6bd-b106c05dcbc6" ], + "x-ms-correlation-request-id": [ "6ab6247f-8efb-4a74-b6bd-b106c05dcbc6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030833Z:6ab6247f-8efb-4a74-b6bd-b106c05dcbc6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9740828DE3B94862BA5CE60616512A2D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:33Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "cfeb82e0-ebe6-41d5-98fd-da9bcd6828d4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6e906120-528f-48fa-8abb-f56388c74722" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7d2339ac-9dcd-4b08-9e7a-6ab72fae2298" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b069b67d-e1d5-4408-b092-cd7a26a457f3" ], + "x-ms-routing-request-id": [ "WESTUS:20251110T030834Z:b069b67d-e1d5-4408-b092-cd7a26a457f3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EA56E71A1C954FE9820CEC093CA52120 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"rD41sAmSsmfoAOtTS/T7YsA85mFIgY9EF86McQ97Q1cMvTa6Xd7g861EwR2Krnv7AmEIClOOD0qm+AStxMTIYg==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/e5d77373-6e8c-47f4-819c-523aa3040bd4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "913120ad-a70f-4b67-b40c-8a80236bbae7" ], + "x-ms-correlation-request-id": [ "913120ad-a70f-4b67-b40c-8a80236bbae7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030848Z:913120ad-a70f-4b67-b40c-8a80236bbae7" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9CF7A5A4AD7040C9A716FDC57273B7A9 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:08:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e9025a70-0000-0200-0000-691157400000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-112525\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-112525\",\r\n \"AppId\": \"0952c105-b3fb-4aa9-b4a5-0821059148ab\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c8b79c55-04cf-4426-9832-d306b0fa62fa\",\r\n \"ConnectionString\": \"InstrumentationKey=c8b79c55-04cf-4426-9832-d306b0fa62fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0952c105-b3fb-4aa9-b4a5-0821059148ab\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-112525\",\r\n \"CreationDate\": \"2025-11-10T03:08:36.8831842+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-112525_0952c105-b3fb-4aa9-b4a5-0821059148ab_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?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://funcappflexsa112525dotne.blob.core.windows.net/app-package-functionsflexdotnetisolated11252-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c8b79c55-04cf-4426-9832-d306b0fa62fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0952c105-b3fb-4aa9-b4a5-0821059148ab\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2013" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EF56A92C35\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "cbab1f00-51ba-4e34-b664-d950bafd71cc" ], + "X-AspNet-Version": [ "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/be68335d-2848-4d08-9122-5797680c661a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "4edd27eb-5fde-432e-88ce-40f42bcf1320" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030911Z:4edd27eb-5fde-432e-88ce-40f42bcf1320" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B3C65246F0724522B94ECD9DA2331634 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:08:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9660" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-DotNetIsolated-112525\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"functions-flex-dotnetisolated-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:08:50.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://funcappflexsa112525dotne.blob.core.windows.net/app-package-functionsflexdotnetisolated11252-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-112525\",\"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-112525\\\\$Functions-Flex-DotNetIsolated-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-dotnetisolated-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "9a458b46-de95-4d67-8575-cbca8d2f7652" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EF63075F15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1c3dea81-d152-49ce-8f7b-ba286ca44ee5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1cdc5490-de77-49a5-b815-054c55d4ad17" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030942Z:1cdc5490-de77-49a5-b815-054c55d4ad17" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CAC040222C604980BBBC7E489CAA6562 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:42Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9642" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-DotNetIsolated-112525\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"functions-flex-dotnetisolated-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:09:11.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525dotne.blob.core.windows.net/app-package-functionsflexdotnetisolated11252-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-112525\",\"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-112525\\\\$Functions-Flex-DotNetIsolated-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "fbc41802-6b5b-40c5-80c3-e2372ecdcf9f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EF63075F15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e4c72357-1a1e-4b44-af74-86bd32a06821" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2286eded-49bd-402d-a4df-34c71f44c3eb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030943Z:2286eded-49bd-402d-a4df-34c71f44c3eb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3A76F02A67904666BF4F6783A121B38D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:42Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9642" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-DotNetIsolated-112525\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"functions-flex-dotnetisolated-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:09:11.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525dotne.blob.core.windows.net/app-package-functionsflexdotnetisolated11252-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-112525\",\"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-112525\\\\$Functions-Flex-DotNetIsolated-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "f89cb9b9-d084-49af-a7da-1c73e5f59f35" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1ec8bd86-f9b8-4c62-a7be-d4261fe14125" ], + "X-AspNet-Version": [ "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/5d25d8b9-bb19-4728-ba67-dcb6c37ad60a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "98a0f4f4-5e0b-41a1-9cdf-cf090e6f63f4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030943Z:98a0f4f4-5e0b-41a1-9cdf-cf090e6f63f4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AE1C1ED1EA824E41A134CAC9B54E9A7E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c8b79c55-04cf-4426-9832-d306b0fa62fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0952c105-b3fb-4aa9-b4a5-0821059148ab\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "d6c288ce-8678-4e7c-a43d-af44896a4a1b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cd50fd02-0d3e-4de6-8d07-b190e4beff45" ], + "X-AspNet-Version": [ "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/a3ca3607-84d2-4352-b87f-48eb51eb007f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dfb37220-121f-4d18-bc28-f1c64404dc06" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030943Z:dfb37220-121f-4d18-bc28-f1c64404dc06" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EE205064294D4EBFB23BB8DD31BCBBE2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "da52767a-591b-4aa1-88ef-2775cb89da12" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6513b317-6b1b-45e4-8757-2e388a0007c4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "834e9128-291b-4691-932e-eaa419fe821f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030944Z:834e9128-291b-4691-932e-eaa419fe821f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6D5D5AD0AFF54D3A90453725C8F1E210 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1826" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "f572878d-714d-41ce-8b78-9217e885d4dc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "838fb174-05c6-45e7-8044-81d16f94ce48" ], + "X-AspNet-Version": [ "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/0027dd23-1a95-4dbd-a915-bafdbc1ca620" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "59096c33-6f21-43eb-b277-75f3589f4de1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030944Z:59096c33-6f21-43eb-b277-75f3589f4de1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E4A8DAB107524066BE337525AE7BE7DF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:44Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c8b79c55-04cf-4426-9832-d306b0fa62fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0952c105-b3fb-4aa9-b4a5-0821059148ab\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "c2d4c594-c115-48fb-be3f-2c6479606b54" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EF63075F15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "26d7bc67-6aef-4515-a81d-48e742177c1e" ], + "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": [ "1dadd4bb-24fd-434b-8cd2-0ef596dc254c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030945Z:1dadd4bb-24fd-434b-8cd2-0ef596dc254c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F9B6244C39F743B78EE0B2A804740ADC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:44Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9642" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-DotNetIsolated-112525\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"functions-flex-dotnetisolated-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:09:11.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525dotne.blob.core.windows.net/app-package-functionsflexdotnetisolated11252-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-112525\",\"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-112525\\\\$Functions-Flex-DotNetIsolated-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-dotnetisolated-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "30b1750e-08c8-4733-871a-521d17c1079c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "e09ef59d-7bc8-45e6-92a9-11e51e173d1b" ], + "X-AspNet-Version": [ "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/743de26f-b453-4183-a3be-c3c53d1518af" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "69f3fba9-7483-4690-9b48-4c13dcdfa3dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030945Z:69f3fba9-7483-4690-9b48-4c13dcdfa3dc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DEC7474CF83446BFB17FDEAF571DACAC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525dotne;AccountKey=1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c8b79c55-04cf-4426-9832-d306b0fa62fa;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=0952c105-b3fb-4aa9-b4a5-0821059148ab\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "0d5c3e42-171c-44db-8da3-b824ffa98f7f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7caa5251-27f1-49b2-a42c-35dce1051d4b" ], + "X-AspNet-Version": [ "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/9126c433-9dd4-4144-8b8c-3b69fa75a58a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3c440312-ef5d-4f93-aa7d-9fb0b17eb01b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T030945Z:3c440312-ef5d-4f93-aa7d-9fb0b17eb01b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7C639B097948446089030F2C8BD0700D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:09:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "10b8e451-0061-4a3c-aabc-79f8562d77e6" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EF63075F15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6b3a0b24-8641-4b31-a59e-07bc1a5fd5c1" ], + "X-AspNet-Version": [ "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/08e0e1b6-edd4-4847-841b-d85d8215e434" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "c4b24bb3-cd17-4b70-bb61-74c4d156db6c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031002Z:c4b24bb3-cd17-4b70-bb61-74c4d156db6c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6427C330CC694E468437331621DBA844 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:09:46Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:02 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Flex-Node-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "63" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "334d3ab1-906f-4e37-84cc-a75b525692a7" ], + "X-AspNet-Version": [ "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/a8472feb-6b32-4ab0-8dad-0ac8e073d1b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "00567f02-b9ef-4fe4-bac3-9ed2f6a20e46" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031003Z:00567f02-b9ef-4fe4-bac3-9ed2f6a20e46" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 67D64C2D778E41AAB8E96C71FF15F192 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:02Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5f134471-6e18-41a4-916b-8baabf6d028e" ], + "X-AspNet-Version": [ "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/011e8638-eebb-4c54-862e-e005ab9ebadd" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "316d970f-2108-4f10-8cf8-721e656c8474" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251110T031009Z:316d970f-2108-4f10-8cf8-721e656c8474" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 47C05E5FB4B645E18D9B48DAC8F492C3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "6e3e0d27-d494-4f92-9691-093590658097" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "62737c3a-ebf7-4f8f-8b67-ba205a9d2c02" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6a2dd949-41b8-4fbf-9f58-7e9cc36b4ed7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031040Z:6a2dd949-41b8-4fbf-9f58-7e9cc36b4ed7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 24A9EBC5A1A549FD97954F29DFF81945 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:40Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "30" ], + "x-ms-client-request-id": [ "6e3e0d27-d494-4f92-9691-093590658097" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "215364be-4ccb-4f9a-81ef-c286e8c57a4c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6f50d462-1d7a-41c5-a833-96558b77639d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031040Z:6f50d462-1d7a-41c5-a833-96558b77639d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E9B70AFA8E92404696C054A5A63562F2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:40Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "31" ], + "x-ms-client-request-id": [ "9fa4e7df-e1b8-4cf1-a0b2-9db2672553c4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "25ac68a3-6d03-4f7e-a76b-3a94b8c4795b", "15d32512-5be3-4df8-adaf-6d478f5d95bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "061943eb-8e23-4f2f-8f83-ce3f72d9c8b1" ], + "x-ms-correlation-request-id": [ "061943eb-8e23-4f2f-8f83-ce3f72d9c8b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031041Z:061943eb-8e23-4f2f-8f83-ce3f72d9c8b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 90B2E22C917E4D6DBA52A298299B3596 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:40Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsflexnode112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsflexnode112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "32" ], + "x-ms-client-request-id": [ "400d3d1c-6ed4-49a4-935c-f747e15c2ed4" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e50bc930-7037-45de-bf9d-9d80f5c82563" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2779fbf2-19f1-41ee-81a8-e97577ee6e50" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "847edf7f-c9e5-4a93-ae19-d8616004f535" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031041Z:847edf7f-c9e5-4a93-ae19-d8616004f535" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 475773EF8B404157993AA430FC301B37 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:41Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:0fe26bdc-b01e-004f-34ef-51aa7c000000\\nTime:2025-11-10T03:10:41.7296288Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsflexnode112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsflexnode112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE2006BB98BE03\"" ], + "x-ms-request-id": [ "7cdd25bc-7d1f-4c07-b782-4c157cccb34b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/68a6bbed-fc44-43a7-a6ca-8c72303a63e1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "f9d88eea-ede8-464a-a1be-d7c96830e5d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031042Z:f9d88eea-ede8-464a-a1be-d7c96830e5d2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 96D97C0B920748C1A16BF533609EF53B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:41Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "452" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsflexnode112525-0000000\",\"name\":\"app-package-functionsflexnode112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "34" ], + "x-ms-client-request-id": [ "5cd7c578-9ab1-40d1-8405-68f66e7946a6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "3a42c509-b68d-4d1d-a2c2-66c39cd686fa", "b8b1ddb0-0cb9-47ae-9523-b984f173fc78" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "0e4f44f1-ede5-47dc-ab36-fd93e81f0ffd" ], + "x-ms-correlation-request-id": [ "0e4f44f1-ede5-47dc-ab36-fd93e81f0ffd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031042Z:0e4f44f1-ede5-47dc-ab36-fd93e81f0ffd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1AAB9BBDC16E456BAD64A462569186EF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:42Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "0396674b-3a6b-4c36-957c-82e92e4fd36d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "24061dd8-489f-4bce-b1e4-b48a288840a0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/4282b56e-9609-4bf3-93a6-3c7d162ebb16" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f60146b7-3302-43ee-9682-e4a5c6aef87f" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251110T031044Z:f60146b7-3302-43ee-9682-e4a5c6aef87f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5A540FA2D38145B8AFE2DAE086563DD2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PSoMKIhTsKMz4F3fR9GFuhC71pJbzjW4q15aUL5JPpSQDijP2HNC4nN3Eckw3/gc+usuAnJwyVah+AStHrTYYQ==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "36" ], + "x-ms-client-request-id": [ "16314296-e7a8-4d1a-a579-70e1be291705" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b468e385-ef6d-4b9f-8350-aa780cf6d906", "e5e26222-7f53-47c6-ba3b-d07e2323767c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "72d93c37-d8f3-46f7-a143-3a74e68e4f60" ], + "x-ms-correlation-request-id": [ "72d93c37-d8f3-46f7-a143-3a74e68e4f60" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031044Z:72d93c37-d8f3-46f7-a143-3a74e68e4f60" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 852308D6A9324970ACE6FDC02A00AD93 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:44Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "37" ], + "x-ms-client-request-id": [ "ff03cc2e-2fa5-4f2d-87f9-03503196117a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e1cc8f13-cece-4e99-baff-4eb9da0c4833" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/00ca7708-87c0-4c9b-9f5d-b2074f537e1e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8334dbab-e4ed-4b37-ace1-b883322b34ab" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031045Z:8334dbab-e4ed-4b37-ace1-b883322b34ab" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 72647A74B40C4F1E933F4562C28AC37E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:10:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PSoMKIhTsKMz4F3fR9GFuhC71pJbzjW4q15aUL5JPpSQDijP2HNC4nN3Eckw3/gc+usuAnJwyVah+AStHrTYYQ==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-Node-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-Node-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/45c57204-5521-4a79-9a6e-415ea6aadfc7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "82718a2f-4f9f-48b9-8d2b-ea2a7dbbb398" ], + "x-ms-correlation-request-id": [ "82718a2f-4f9f-48b9-8d2b-ea2a7dbbb398" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031100Z:82718a2f-4f9f-48b9-8d2b-ea2a7dbbb398" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D20C5CD58B464A25A25E7255302DAA69 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:10:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1614" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e9026d73-0000-0200-0000-691157c40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-Node-112525\",\r\n \"name\": \"Functions-Flex-Node-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-112525\",\r\n \"AppId\": \"2299dd78-ddd8-47b9-91cc-6d17411bc034\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"31376a76-5c00-4420-8793-8c0257436cd8\",\r\n \"ConnectionString\": \"InstrumentationKey=31376a76-5c00-4420-8793-8c0257436cd8;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=2299dd78-ddd8-47b9-91cc-6d17411bc034\",\r\n \"Name\": \"Functions-Flex-Node-112525\",\r\n \"CreationDate\": \"2025-11-10T03:10:47.6335613+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-112525_2299dd78-ddd8-47b9-91cc-6d17411bc034_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsflexnode112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=31376a76-5c00-4420-8793-8c0257436cd8;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=2299dd78-ddd8-47b9-91cc-6d17411bc034\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1989" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFA5C113C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "26fecb54-93d8-480b-a01c-c33e30c1bd7f" ], + "X-AspNet-Version": [ "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/866f32b8-2585-4a94-b7d9-ecbcd197b2e3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "6e2b6078-6490-4b92-bcc7-9c4117d8d492" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031126Z:6e2b6078-6490-4b92-bcc7-9c4117d8d492" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D3536FFF91EA46A7A723C44508B14A3A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9498" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525\",\"name\":\"Functions-Flex-Node-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Node-112525\",\"repositorySiteName\":\"Functions-Flex-Node-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112525.azurewebsites.net\",\"functions-flex-node-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:11:02.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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsflexnode112525-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-112525\",\"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-112525\\\\$Functions-Flex-Node-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-node-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "7fcbd8f7-a363-4b2f-a7b1-4a28d00a67ec" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFB32B526B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e209221e-b530-4c61-b847-901ae141854a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b4ea9196-899d-4a04-b055-07073c5195c4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031156Z:b4ea9196-899d-4a04-b055-07073c5195c4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 69115B8DCC3A4B3080479AAB5963E009 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:56Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9480" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525\",\"name\":\"Functions-Flex-Node-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Node-112525\",\"repositorySiteName\":\"Functions-Flex-Node-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112525.azurewebsites.net\",\"functions-flex-node-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:11:25.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\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsflexnode112525-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-112525\",\"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-112525\\\\$Functions-Flex-Node-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-node-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "07ef347d-529a-431f-933b-7596281625ea" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFB32B526B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9a3d4c93-0ca4-4e69-bd7b-8029ffb9b786" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ee27224d-9351-42a9-8389-5201e40f48ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031157Z:ee27224d-9351-42a9-8389-5201e40f48ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A49B0E2797CB419D8D1154F290BF7F42 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:57Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9480" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525\",\"name\":\"Functions-Flex-Node-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Node-112525\",\"repositorySiteName\":\"Functions-Flex-Node-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112525.azurewebsites.net\",\"functions-flex-node-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:11:25.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\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsflexnode112525-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-112525\",\"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-112525\\\\$Functions-Flex-Node-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-node-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "ceaac98d-60e5-4373-924e-e3ed9655d263" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "47884001-374a-41f5-9837-847d7b9ae62e" ], + "X-AspNet-Version": [ "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/b0b1e40f-7c00-49ea-9e9f-8026366e781d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4b88a2f6-df73-44eb-8f26-5ee9e78382ee" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031157Z:4b88a2f6-df73-44eb-8f26-5ee9e78382ee" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B3639A0F15194B0F9CC4AAA63998F307 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:57Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=31376a76-5c00-4420-8793-8c0257436cd8;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=2299dd78-ddd8-47b9-91cc-6d17411bc034\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "efb9b31f-8963-46ed-8d83-b7851cd603c7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2a36e696-9582-4253-b865-893d1a5c2155" ], + "X-AspNet-Version": [ "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/cd262a4e-8a99-4f73-8a1e-dd26ef93a426" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "40f73c77-3612-49ba-b65b-74f847ad4dbb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031158Z:40f73c77-3612-49ba-b65b-74f847ad4dbb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 13D9FD04962F4C4FAAFC01EB4D6300FC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:57Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/web\",\"name\":\"Functions-Flex-Node-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "ebeca6bf-4b7f-4d75-a166-9b8a5a73c9b5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f296e504-67fe-4beb-bdb8-a4cb7f1b9a9a" ], + "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": [ "e7233e9c-f494-4242-85eb-2c764b32cb5e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031158Z:e7233e9c-f494-4242-85eb-2c764b32cb5e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 207BE38AF0774C77A414F81DFB47E824 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:58Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "b23a8cd6-df64-40cd-b83e-d09be2720245" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "8bdf1687-1dc6-40ba-9c97-1de8aca59f9d" ], + "X-AspNet-Version": [ "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/85d011a4-a67a-4e61-8c8d-ff9ff1173240" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5a912a44-2eee-4dbd-870e-7da748a14005" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031158Z:5a912a44-2eee-4dbd-870e-7da748a14005" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8C941EE742A94D2FB72E7E88A7DF9F05 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:58Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=31376a76-5c00-4420-8793-8c0257436cd8;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=2299dd78-ddd8-47b9-91cc-6d17411bc034\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "1ac18c88-2933-40ff-bf5f-10d5571a3fec" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFB32B526B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "25a1b607-999d-4b68-b2b1-3c45c93cacec" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "11bf401d-4b86-411d-ad6e-dfba0e0dae24" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031159Z:11bf401d-4b86-411d-ad6e-dfba0e0dae24" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 561177DC85174BE1BDAAD97151B0B51C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:59Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9480" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525\",\"name\":\"Functions-Flex-Node-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Node-112525\",\"repositorySiteName\":\"Functions-Flex-Node-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-112525.azurewebsites.net\",\"functions-flex-node-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:11:25.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\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsflexnode112525-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-112525\",\"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-112525\\\\$Functions-Flex-Node-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-node-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "6efb3221-4708-4305-9636-9ca830493ba3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "e5f2c896-0ce1-438a-aa90-2b8917e6728b" ], + "X-AspNet-Version": [ "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/caae17f0-b2cb-4018-bc29-7c03d772fa3b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "adbfd918-66e2-417b-adc9-42ca68c2d6a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031159Z:adbfd918-66e2-417b-adc9-42ca68c2d6a4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B4858D4E48CD4B1186EEF799C40559A7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:59Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=31376a76-5c00-4420-8793-8c0257436cd8;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=2299dd78-ddd8-47b9-91cc-6d17411bc034\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "855e7128-ec4b-42e7-abb4-0bdd2bc8ccda" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2e00991e-13ea-4446-bb61-1da11f4e51fd" ], + "X-AspNet-Version": [ "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/8596a025-7f4d-4d24-9f4b-d79453e3841c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "9aaf60ea-d51b-4c9e-9c99-7933e22dd208" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031200Z:9aaf60ea-d51b-4c9e-9c99-7933e22dd208" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4176A13CB06E426685E69C6C6E7E9FD0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:11:59Z" ], + "Date": [ "Mon, 10 Nov 2025 03:11:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525/config/web\",\"name\":\"Functions-Flex-Node-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Node-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "e21fa88c-9b5b-4017-98e5-70297939ae60" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFB32B526B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "277dc8ec-beab-4fa9-bbad-17c94080c01f" ], + "X-AspNet-Version": [ "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/f74d7585-8de4-45dc-9969-8c76febb6804" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "74799fb9-af4e-4d67-a7be-d3a61463f356" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031217Z:74799fb9-af4e-4d67-a7be-d3a61463f356" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E11CBD9101FB4BCFBCB576B29BE1FB0E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:00Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:16 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Flex-Python-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "65" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0c2f21f8-a2a4-45e0-b296-eed76d88b368" ], + "X-AspNet-Version": [ "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/f328c22b-2983-403f-83b5-e3594f7b93a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9bbd75a0-6598-48e2-8525-98772d4f3b7d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031217Z:9bbd75a0-6598-48e2-8525-98772d4f3b7d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D5ACBDF38A5A4872860D29327258D081 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:17Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0f9475bc-d966-4e24-8e94-17d05c41784f" ], + "X-AspNet-Version": [ "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/55ad2bc5-97f7-4779-96da-68aa676814e1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "68450aeb-539c-4ee1-8fb1-f54fce45c9fe" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031223Z:68450aeb-539c-4ee1-8fb1-f54fce45c9fe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 45FF892D540B48EFB802031E98BA89C5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:18Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "ad28fa95-1c9a-426f-bbca-6bde9c2fe80e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c94b57c8-90c4-4552-9b9d-1d517cc239ce" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f61fdf14-ac8b-4be5-8dd9-0196b1646e70" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031254Z:f61fdf14-ac8b-4be5-8dd9-0196b1646e70" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F61C73211EF641ED963749D5A14CAB31 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:53Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "ad28fa95-1c9a-426f-bbca-6bde9c2fe80e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4f6efe2d-0370-4bde-a4ac-60a07095e8ea" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cb6f4dde-0271-475f-82dc-dade6895fc2b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031254Z:cb6f4dde-0271-475f-82dc-dade6895fc2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 20EF449E288D4C089B35210FC649B58E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:54Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "55" ], + "x-ms-client-request-id": [ "4e6c690f-8d80-415a-8159-6575d6fafa8f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "53e47a40-5153-4fa7-b7d5-b0b53483c592", "24aec1a5-6585-4a27-9fbd-2e8099f2722b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "e7eb6e16-f46c-40ca-99a8-4bd4e1b93988" ], + "x-ms-correlation-request-id": [ "e7eb6e16-f46c-40ca-99a8-4bd4e1b93988" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031255Z:e7eb6e16-f46c-40ca-99a8-4bd4e1b93988" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7DB17220F8B44CB48D542BEB701E15A6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:54Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionsflexpython112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionsflexpython112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "20992ac4-905c-447d-a17c-da04e317e840" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "958bfea6-1ab3-492b-96fc-6eed23602750" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/326951ea-4121-43f1-bf36-f1a045703a85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "688b7321-5c5a-45d4-a2e3-5a5bfada41d4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031255Z:688b7321-5c5a-45d4-a2e3-5a5bfada41d4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9EA2E5DE7F9D421798F4D95DF972F584 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:55Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c2115761-e01e-0007-60ef-510248000000\\nTime:2025-11-10T03:12:55.4556342Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionsflexpython112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionsflexpython112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE20070B52EF97\"" ], + "x-ms-request-id": [ "9d299413-3de6-4e40-8fcb-a1fbd6a1c538" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/de50c776-c7f3-40ae-b205-c2f20307430e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "e3ef2cca-da1e-4221-b29f-53a476c6106f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031256Z:e3ef2cca-da1e-4221-b29f-53a476c6106f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FC68A033742843B490D7C2DF42EC3137 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:55Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "457" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionsflexpython112525-0000000\",\"name\":\"app-package-functionsflexpython112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "58" ], + "x-ms-client-request-id": [ "69b9d3eb-398d-4179-af54-19a0dbcc633b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "7f90f5e8-892d-428c-b8da-6e5ae6b745e6", "b8df6a2e-5d68-4554-abe1-a25cb2489f4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "db13cdde-daa2-4225-87ae-f7e2985c741e" ], + "x-ms-correlation-request-id": [ "db13cdde-daa2-4225-87ae-f7e2985c741e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031256Z:db13cdde-daa2-4225-87ae-f7e2985c741e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 295A14D16D5547C6ADC09A564F7AB1CF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:56Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "90878663-1930-4132-8809-928777a05759" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3cbe602f-d52d-4bce-ae1e-7bfbf3782daf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b470c3c6-1b99-443f-859c-c4236c31b1d1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a51a11ba-6555-404b-9ee3-1d7c1a153593" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031257Z:a51a11ba-6555-404b-9ee3-1d7c1a153593" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E6D3A9D672A240B8A88169877E2EF2BA Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:56Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"BrgsEvquXflai1reYZUZxWNlZ2sOLkfztoZKZvbkVINukFX0XM7rvLsR3kjVe9KsR97iGRuVpl6l+AStpxwapg==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "60" ], + "x-ms-client-request-id": [ "57acc1cf-a31b-4468-9c49-71ad1a9b99ed" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "21d50727-4e5f-444e-a0e3-e30f4f1a940a", "b3dcfd09-b3aa-4537-a50b-8112940cc8a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "32d48b76-3b39-44c2-afe9-ed59f95ba923" ], + "x-ms-correlation-request-id": [ "32d48b76-3b39-44c2-afe9-ed59f95ba923" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031257Z:32d48b76-3b39-44c2-afe9-ed59f95ba923" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9FDFAB531EBE4AA5A3BB8B9C8781167C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:57Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "cbcad220-6907-4340-9679-6f1a71dc0e5e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d9e7cccd-0d25-4044-8e33-5a6e8b4cb26b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a264d678-634e-4abd-9e79-1f92a214e6d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c570fb49-2da9-446b-aa8d-d6c3283f568b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031258Z:c570fb49-2da9-446b-aa8d-d6c3283f568b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2B98DC26F7474975BC14F2399DD6837E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:57Z" ], + "Date": [ "Mon, 10 Nov 2025 03:12:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"BrgsEvquXflai1reYZUZxWNlZ2sOLkfztoZKZvbkVINukFX0XM7rvLsR3kjVe9KsR97iGRuVpl6l+AStpxwapg==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-Python-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-Python-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/f4279215-3b19-4d81-a1ea-60289ed1661b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "0dbcbebb-8c56-43a8-9d83-9adfe77da674" ], + "x-ms-correlation-request-id": [ "0dbcbebb-8c56-43a8-9d83-9adfe77da674" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031313Z:0dbcbebb-8c56-43a8-9d83-9adfe77da674" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1267D229DDF34A8191E95E6B0BD19527 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:12:58Z" ], + "Date": [ "Mon, 10 Nov 2025 03:13:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1626" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e9023777-0000-0200-0000-691158480000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-Python-112525\",\r\n \"name\": \"Functions-Flex-Python-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-112525\",\r\n \"AppId\": \"cdb966be-28a3-4de5-949c-e2ca7866a44e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"44cc0bc3-a7da-47d8-bc19-25288f178a26\",\r\n \"ConnectionString\": \"InstrumentationKey=44cc0bc3-a7da-47d8-bc19-25288f178a26;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=cdb966be-28a3-4de5-949c-e2ca7866a44e\",\r\n \"Name\": \"Functions-Flex-Python-112525\",\r\n \"CreationDate\": \"2025-11-10T03:12:59.6779809+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-112525_cdb966be-28a3-4de5-949c-e2ca7866a44e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionsflexpython112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=44cc0bc3-a7da-47d8-bc19-25288f178a26;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=cdb966be-28a3-4de5-949c-e2ca7866a44e\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1998" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51EFF4E73920\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "97ba726e-2b76-46f1-8e5e-2974668046fe" ], + "X-AspNet-Version": [ "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/5bdc4186-615c-4cd8-a7c1-cf25f420857f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "2c38b057-69e9-4e4e-b200-925f405f2c7e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031338Z:2c38b057-69e9-4e4e-b200-925f405f2c7e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9BDADAE091A849C7AC3BEE9EBA122A5B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:13:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:13:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9538" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525\",\"name\":\"Functions-Flex-Python-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Python-112525\",\"repositorySiteName\":\"Functions-Flex-Python-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112525.azurewebsites.net\",\"functions-flex-python-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:13:15.4433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionsflexpython112525-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-112525\",\"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-112525\\\\$Functions-Flex-Python-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-python-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "6ee595ce-60f1-4213-a696-e2a6f8c73404" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F001C8238B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "79980893-e20f-4a08-8e7d-276709e6049c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a56e962c-7b60-4a7a-bd4f-a8309c2dbd36" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031408Z:a56e962c-7b60-4a7a-bd4f-a8309c2dbd36" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 26DF32CDC349491F89F6B056F070E368 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:08Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9515" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525\",\"name\":\"Functions-Flex-Python-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Python-112525\",\"repositorySiteName\":\"Functions-Flex-Python-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112525.azurewebsites.net\",\"functions-flex-python-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:13:37.8166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionsflexpython112525-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-112525\",\"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-112525\\\\$Functions-Flex-Python-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-python-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "d02b3907-7d18-4806-82b7-b22b93ef23f6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F001C8238B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e24a4c5f-68fd-4a28-a56d-3c7c647e3bc8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "adeff15f-4d44-4af7-a0f4-e7f15a7e2835" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031409Z:adeff15f-4d44-4af7-a0f4-e7f15a7e2835" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 58D1F86903E148EE95AEDE505BEDFC7F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:08Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9515" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525\",\"name\":\"Functions-Flex-Python-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Python-112525\",\"repositorySiteName\":\"Functions-Flex-Python-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112525.azurewebsites.net\",\"functions-flex-python-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:13:37.8166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionsflexpython112525-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-112525\",\"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-112525\\\\$Functions-Flex-Python-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-python-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "d6ca887f-9957-421f-a1e9-83cb6e113478" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c35f98d5-9737-4d83-96b6-4f01928758be" ], + "X-AspNet-Version": [ "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/9fbbf3ee-9246-414b-afa9-1dc313cae319" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1c632881-aad0-4bfa-a5a1-73ce62c64199" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031409Z:1c632881-aad0-4bfa-a5a1-73ce62c64199" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 998269DCB69C4DB994ACE614A95794C4 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:09Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=44cc0bc3-a7da-47d8-bc19-25288f178a26;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=cdb966be-28a3-4de5-949c-e2ca7866a44e\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "c8f1a374-6752-4d8c-a34d-a074c640acc3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "e8b36847-ad1e-4469-824a-780596de1a57" ], + "X-AspNet-Version": [ "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/53e17389-8ed8-4a90-8168-b4b478d58448" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ec50af16-8611-4687-8cc7-ceb3d977023a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031409Z:ec50af16-8611-4687-8cc7-ceb3d977023a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 135B7225F24A4E1F923C3003C10DAC0D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:09Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/web\",\"name\":\"Functions-Flex-Python-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "6df994da-a23c-49e2-8ee8-ed12335dedf9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6a5009c0-844c-47a9-925b-393a32374444" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "63021b95-25d4-4eb1-b643-d6136a2902f5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031410Z:63021b95-25d4-4eb1-b643-d6136a2902f5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D5122427FD824FBA8C904F122414BFA3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "0ae9c4e7-9ce2-41e3-82ae-e71ff22738d5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "aebb1862-4761-4f3e-9f15-b71e9fd17115" ], + "X-AspNet-Version": [ "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/e88c0f76-ca8d-4a22-9093-e63443d0e3d6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "92ea8c1c-1e09-4eab-a4d2-87b621d9a970" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031410Z:92ea8c1c-1e09-4eab-a4d2-87b621d9a970" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9754BBB7826D421CA855BA2CB9774667 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=44cc0bc3-a7da-47d8-bc19-25288f178a26;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=cdb966be-28a3-4de5-949c-e2ca7866a44e\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "e1142ff9-c52d-4976-802b-1991d9c8b75f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F001C8238B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "36b91aaf-d779-4338-a2c4-6ce5cd6a33c2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1647c1a4-f7bd-4681-84b8-a2a7973cc2de" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031411Z:1647c1a4-f7bd-4681-84b8-a2a7973cc2de" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C93346F8F2B1494390B0E6EC1C05CED6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9515" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525\",\"name\":\"Functions-Flex-Python-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Python-112525\",\"repositorySiteName\":\"Functions-Flex-Python-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-112525.azurewebsites.net\",\"functions-flex-python-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:13:37.8166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionsflexpython112525-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-112525\",\"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-112525\\\\$Functions-Flex-Python-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-python-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "cd928746-a963-4e52-a580-8a83b9fd82c7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1af2ffda-79e4-4f2f-8504-ef85919605f1" ], + "X-AspNet-Version": [ "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/a94fa364-d1e4-4a2b-a2bf-1e5435516d39" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9ae248c2-2503-42c0-bd12-ad4a494710f5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031411Z:9ae248c2-2503-42c0-bd12-ad4a494710f5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EFA1AE1EB83540448C992AD0E1E83485 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=44cc0bc3-a7da-47d8-bc19-25288f178a26;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=cdb966be-28a3-4de5-949c-e2ca7866a44e\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "6e3c38e7-decb-4ac5-8329-b66ebcc2c31f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0cc9c928-a6ea-4ed3-96f6-675776fd58fa" ], + "X-AspNet-Version": [ "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/fafb25b0-0495-468e-abda-46e197ba8070" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "96c81018-9963-4bd8-8f73-c6b7f93b8d76" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031412Z:96c81018-9963-4bd8-8f73-c6b7f93b8d76" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 98F31C13524144C999ED17CE0B6A54F3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525/config/web\",\"name\":\"Functions-Flex-Python-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Python-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "06884778-2380-479d-b4b8-055444a1624d" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F001C8238B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6638d828-fe04-412f-a695-848ffe33a3a3" ], + "X-AspNet-Version": [ "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/c8aa92a3-83d9-461d-b0a9-2152f075b70d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "547f423a-79a4-4992-8dbf-0d89c42444ec" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031428Z:547f423a-79a4-4992-8dbf-0d89c42444ec" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9971D9B973B14EF7ADEE5913DC60C687 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:27 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Flex-Java-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "63" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5cbd5613-ab1f-4d9a-be96-bc749265c939" ], + "X-AspNet-Version": [ "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/776e2492-10b7-41c1-aa2c-09a1e5f04fa6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "59946fa9-1305-4e09-9271-d4033b439612" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031429Z:59946fa9-1305-4e09-9271-d4033b439612" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0622F870B31E491A8F2292FD8F7C2FA8 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:28Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "380439be-c736-4dd7-81c8-e4aca661691c" ], + "X-AspNet-Version": [ "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/6a995522-d1a3-4f46-854f-4e34938ec24b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "5346204f-55fc-4a98-84ad-3cfb95a89098" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031433Z:5346204f-55fc-4a98-84ad-3cfb95a89098" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7D32F8148E39445490C06C78E5B9E369 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:14:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:14:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "042fdd60-d9c8-45cf-819b-a51daad44c44" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f806f80d-aa32-4795-8a96-808a6fe42156" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "11e78802-3e65-46e8-8c8c-740c8d032bbe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031503Z:11e78802-3e65-46e8-8c8c-740c8d032bbe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D6AC137A40AD4F1E9DDB79AA97678FF5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "042fdd60-d9c8-45cf-819b-a51daad44c44" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d9b5ebd1-27bb-4ad5-889f-4c02c3be7472" ], + "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": [ "82f010fd-acd4-4ee5-a666-8ea5ad09a73d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031503Z:82f010fd-acd4-4ee5-a666-8ea5ad09a73d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4F6CCA1A13FF4E88AA5360B05AC04AE6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "79" ], + "x-ms-client-request-id": [ "37869dc8-5b55-4d25-b9fc-39277734e623" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b8ce4e5a-c400-4e32-b313-fae47bcadeef", "9e9ca92c-1fa7-463f-83d2-a686ad73311f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5151d3af-072a-41d9-b99b-502543a4157b" ], + "x-ms-correlation-request-id": [ "5151d3af-072a-41d9-b99b-502543a4157b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031504Z:5151d3af-072a-41d9-b99b-502543a4157b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CEC9CCD6B0364F97A3681E6833CD6FD6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsflexjava112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsflexjava112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "a22d7898-54cc-45cc-a74f-d44ecf2460d1" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "037780e3-2c83-42ab-b48f-baaee33022fc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f1132326-38e4-4006-8df1-bfbfcbd233be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "41665f85-5536-441c-92a8-60d45782666e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031505Z:41665f85-5536-441c-92a8-60d45782666e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 795DACFC3090454CB3A8D6BC572C0A2B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:69721bd8-501e-0068-6ff0-510639000000\\nTime:2025-11-10T03:15:05.0063562Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsflexjava112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsflexjava112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE2007588B590E\"" ], + "x-ms-request-id": [ "09d4d6ff-e569-4e94-a55d-c1ddddcf0401" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/46316d6b-ee7d-4b16-ba0f-19cdfb9da4a1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "5eac6c17-447f-4c3f-8644-d2d90eff2a78" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031505Z:5eac6c17-447f-4c3f-8644-d2d90eff2a78" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A445975051874CA4893F3EF1FB72BCBD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:05Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "452" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsflexjava112525-0000000\",\"name\":\"app-package-functionsflexjava112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "82" ], + "x-ms-client-request-id": [ "9392052f-9033-4a7d-a84c-ea3edd96f0b8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "ab9b81b5-56e2-4f90-9574-0b8d9fc88f92", "74aad91f-090a-4567-a184-0779c579ec5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "709b4e3a-66a1-4e95-8c89-791c27c8a847" ], + "x-ms-correlation-request-id": [ "709b4e3a-66a1-4e95-8c89-791c27c8a847" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031506Z:709b4e3a-66a1-4e95-8c89-791c27c8a847" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3784BC7ADDD941F598C432CC33708713 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:05Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "a9ebbb70-6fa4-4c3b-9ffb-a2d1401ed86a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "7d1222f2-e8e6-4489-ab0c-3ee9fe1a166f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/dfee5108-948b-4d18-af05-2c96cce0d559" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9b490f5b-ed0e-4247-a481-399584454418" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031506Z:9b490f5b-ed0e-4247-a481-399584454418" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D2DA0F369AD94114970BB123BCF78D77 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:06Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"w/tfZRpd/NST0hA8VzGcjLV5368xhgsLWNPZwDw/skEc2SfZzh+iU9s2+0pL758tIH55HicTdP37+ASt9K55cA==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "84" ], + "x-ms-client-request-id": [ "4f7c1041-e5a1-40fd-9aa3-f3e2c80fcc74" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "fe540b4d-2aa6-4202-950f-20b957b1beec", "029b71cd-7796-49e0-82f9-3a5c85e24636" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "59c4a949-e708-4bf5-b1cb-b193bdb472c1" ], + "x-ms-correlation-request-id": [ "59c4a949-e708-4bf5-b1cb-b193bdb472c1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031507Z:59c4a949-e708-4bf5-b1cb-b193bdb472c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CB93C2785B16415DAD1BE1E65A1FB966 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:06Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "c27aeab1-563b-4ac0-963b-660d49aedff2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0e0a3659-f767-42fa-9ed9-2ea5d901bb00" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9316b2c2-6ee5-4610-a8ee-42d34ec7f843" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e625e13a-33c3-4d59-9863-5bea2adb883b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031507Z:e625e13a-33c3-4d59-9863-5bea2adb883b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 70EF5148D0694E9294C3ED4870BD9697 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:07Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"w/tfZRpd/NST0hA8VzGcjLV5368xhgsLWNPZwDw/skEc2SfZzh+iU9s2+0pL758tIH55HicTdP37+ASt9K55cA==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-Java-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-Java-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/9f2bcbe7-1ad4-4af9-afe2-3d407c305414" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "99167cea-8dec-4575-a90d-c56eeaec10be" ], + "x-ms-correlation-request-id": [ "99167cea-8dec-4575-a90d-c56eeaec10be" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031522Z:99167cea-8dec-4575-a90d-c56eeaec10be" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 800C38B480C94162AF66A1FF2865542D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:08Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1614" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e902ed92-0000-0200-0000-691158ca0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-Java-112525\",\r\n \"name\": \"Functions-Flex-Java-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-112525\",\r\n \"AppId\": \"6a4594b1-750d-4d77-8e07-85727d41b81f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c0960d22-ea74-4e69-8c5a-a70fd6253620\",\r\n \"ConnectionString\": \"InstrumentationKey=c0960d22-ea74-4e69-8c5a-a70fd6253620;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a4594b1-750d-4d77-8e07-85727d41b81f\",\r\n \"Name\": \"Functions-Flex-Java-112525\",\r\n \"CreationDate\": \"2025-11-10T03:15:10.3167609+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-112525_6a4594b1-750d-4d77-8e07-85727d41b81f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsflexjava112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=c0960d22-ea74-4e69-8c5a-a70fd6253620;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a4594b1-750d-4d77-8e07-85727d41b81f\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1989" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F041B6B74B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3e8a9326-3672-4adc-9323-a15a19aba1d1" ], + "X-AspNet-Version": [ "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/80a59100-222b-4e12-a216-6c236c3a1842" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "cf7c0167-dcc3-4387-8012-eeb1cb25da4d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031548Z:cf7c0167-dcc3-4387-8012-eeb1cb25da4d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9A5EC22302524EEC946AB17969ACB6D3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:15:22Z" ], + "Date": [ "Mon, 10 Nov 2025 03:15:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9503" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525\",\"name\":\"Functions-Flex-Java-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Java-112525\",\"repositorySiteName\":\"Functions-Flex-Java-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112525.azurewebsites.net\",\"functions-flex-java-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:15:24.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\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://funcappflexsa112525java.blob.core.windows.net/app-package-functionsflexjava112525-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-112525\",\"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-112525\\\\$Functions-Flex-Java-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-java-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "60a86f0b-42c1-4bfb-b961-b79eb3f4c46e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F04F55DBA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "503d0de5-cab9-4cb5-850d-c8ef34947bba" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eeac77df-dddb-4c03-8b4f-ea5ed319c131" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031618Z:eeac77df-dddb-4c03-8b4f-ea5ed319c131" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 77B2E38A29AD43A28F976FAC11C2F11B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:18Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9475" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525\",\"name\":\"Functions-Flex-Java-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Java-112525\",\"repositorySiteName\":\"Functions-Flex-Java-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112525.azurewebsites.net\",\"functions-flex-java-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:15:47.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsflexjava112525-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-112525\",\"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-112525\\\\$Functions-Flex-Java-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-java-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "27d66c54-0c69-4770-a74f-874521b94706" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F04F55DBA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5ba0938e-73a8-47b5-973e-ea481b3d1470" ], + "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": [ "480c2c9e-c95d-42c4-baa2-d0df9ed6a596" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031619Z:480c2c9e-c95d-42c4-baa2-d0df9ed6a596" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C219514E98BD49D9BFDB4B00250A6A91 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:19Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9475" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525\",\"name\":\"Functions-Flex-Java-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Java-112525\",\"repositorySiteName\":\"Functions-Flex-Java-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112525.azurewebsites.net\",\"functions-flex-java-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:15:47.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsflexjava112525-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-112525\",\"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-112525\\\\$Functions-Flex-Java-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-java-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "21f67049-292e-4b0c-94cc-407d1a598920" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c66858ec-8efc-4732-aa1a-836177f0590e" ], + "X-AspNet-Version": [ "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/7188d9d4-1fa5-4dd0-8f03-6a64f5488b78" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "349c5790-bdf8-4953-b988-2c84e93039b3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031619Z:349c5790-bdf8-4953-b988-2c84e93039b3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9D3D6905657F420EB89D95E35990211A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:19Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c0960d22-ea74-4e69-8c5a-a70fd6253620;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a4594b1-750d-4d77-8e07-85727d41b81f\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "91" ], + "x-ms-client-request-id": [ "b6162b73-8974-4fb6-bea4-d77c578f3b86" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c710514a-7c22-4900-a5f8-759128c9515f" ], + "X-AspNet-Version": [ "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/599da75f-8305-4932-a73c-86282406c40e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1aa18415-6d46-4811-803d-154a43e2d0b9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031620Z:1aa18415-6d46-4811-803d-154a43e2d0b9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8CF093BB4951482EB5D9060F34CD197E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:19Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/web\",\"name\":\"Functions-Flex-Java-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "ed907cef-88db-4078-ac8f-c1c8f84aa294" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "067ebbf6-db00-4f90-9032-e94dc0a1416c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bf261fdb-7b45-427d-af62-e1cb958c6327" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031621Z:bf261fdb-7b45-427d-af62-e1cb958c6327" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 30F0DCA264CD4B04BFDEFAC1E4071A6E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:20Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "93" ], + "x-ms-client-request-id": [ "485dc1cc-2a7f-459f-b7a5-bcf209c2eedb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7898dd0d-147a-4001-9752-40275c61f577" ], + "X-AspNet-Version": [ "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/e5a9c301-0654-4005-bc4e-9ad4b182df9b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "e7cf4303-1efc-49c3-a501-56aea744925d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031621Z:e7cf4303-1efc-49c3-a501-56aea744925d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C8A0057B58B0475FBAC78B203DBE19D8 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:21Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c0960d22-ea74-4e69-8c5a-a70fd6253620;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a4594b1-750d-4d77-8e07-85727d41b81f\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "fdf6450a-d385-4652-b096-4cb417aea717" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F04F55DBA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b475db10-02b7-4618-9ae5-7ea8bc8b062b" ], + "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": [ "39aa106c-894f-4cf5-8b99-9c728654ec79" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031622Z:39aa106c-894f-4cf5-8b99-9c728654ec79" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 330EAD085B204B39B723467FC64BC8AB Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:21Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9475" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525\",\"name\":\"Functions-Flex-Java-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Java-112525\",\"repositorySiteName\":\"Functions-Flex-Java-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-112525.azurewebsites.net\",\"functions-flex-java-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:15:47.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsflexjava112525-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-112525\",\"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-112525\\\\$Functions-Flex-Java-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-java-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "95" ], + "x-ms-client-request-id": [ "ad17c74c-4038-4c82-a70f-d33b650b43b4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "4e68b135-bdf3-40b6-8d67-1a88f4a0c9c9" ], + "X-AspNet-Version": [ "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/c4cdc565-532a-4735-8a8c-0697ac754467" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "e8a99f68-31c2-45c0-a311-468b46ce300a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031622Z:e8a99f68-31c2-45c0-a311-468b46ce300a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9FC953FE6A2E4C14853CEB6E31EA7693 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:22Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1019" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=c0960d22-ea74-4e69-8c5a-a70fd6253620;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=6a4594b1-750d-4d77-8e07-85727d41b81f\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "96" ], + "x-ms-client-request-id": [ "16f58751-5873-4eae-96b7-c1084d1a2ad9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a1a06a58-9af8-4938-b975-1bc5b8a57dea" ], + "X-AspNet-Version": [ "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/c2166632-405a-4fc0-840b-4ba3361b0a13" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "076f3663-984e-432d-b396-3b817d962e5c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031622Z:076f3663-984e-432d-b396-3b817d962e5c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 997CA82700354F08B39CB08366B65247 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:22Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4155" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525/config/web\",\"name\":\"Functions-Flex-Java-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Java-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "97" ], + "x-ms-client-request-id": [ "26c81027-5b9b-4326-bbf9-0daae0d075b7" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F04F55DBA0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "25013026-7f79-4101-b2c6-f806e64dfe61" ], + "X-AspNet-Version": [ "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/e8db9cfc-56f3-4e02-ab6a-fd93b367d52a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "21468710-bfd6-4628-a649-b6a1e242e16e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031637Z:21468710-bfd6-4628-a649-b6a1e242e16e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BAF855AFEC994C18B790FC6D660EED1F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:23Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:37 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Flex-PowerShell-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "69" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e105a471-7846-4dae-bafb-80a99d1c0292" ], + "X-AspNet-Version": [ "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/013cd390-6a58-4329-9266-b1f32558e1a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "23983f44-24fd-4e85-966f-c91cbd660882" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031638Z:23983f44-24fd-4e85-966f-c91cbd660882" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DCBE2C994DBF499EA5DDD1FF83081265 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:37Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d16dc474-3199-4f93-82e4-7e8aeadd26a2" ], + "X-AspNet-Version": [ "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/3fb3f0ff-40b5-436c-8c7b-e7948c93fd2f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d3333f00-4bbe-4bd9-95a9-54e560978fc6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031641Z:d3333f00-4bbe-4bd9-95a9-54e560978fc6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A70A736FBA28486BB8C63B1F7C270F65 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:16:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:16:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "8a698be7-9690-48e8-a54a-b715dc57bb1b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2f855ce2-6a17-4428-9978-8cbd8cdc60bb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "907e36e1-7f5d-4a91-971f-83dfe2dcb6f1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031712Z:907e36e1-7f5d-4a91-971f-83dfe2dcb6f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E149BB31F1D24C448F487B0A1375DDE4 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "8a698be7-9690-48e8-a54a-b715dc57bb1b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b2e13dc2-a6ab-4bd6-9053-366c70ab9dd9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "03584080-4988-4916-b081-cbe346185f93" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031712Z:03584080-4988-4916-b081-cbe346185f93" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5BE60E458D304D07BC9B0E0DF623CC32 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "103" ], + "x-ms-client-request-id": [ "7322ed75-78dc-4ef5-a1ac-1dd8bb8c24d5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "b4e554bc-d660-468c-a2e8-8c7d98cab8f4", "eb65a0ab-473e-442d-9d80-aa55de00cb1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "099577b5-1ee3-4628-93ee-9cd7522a00d8" ], + "x-ms-correlation-request-id": [ "099577b5-1ee3-4628-93ee-9cd7522a00d8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031713Z:099577b5-1ee3-4628-93ee-9cd7522a00d8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 09DAFC3EBC6149809C92808173E29B2B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionsflexpowershell112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionsflexpowershell112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "eaca9a71-139c-4dab-bab9-f2b68bb2e11b" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a5fe8ba6-3c02-4cc9-b6dc-515baf02c35b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/220c50e1-726e-4b05-871b-b74b1bc450ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f09a3b48-5cec-47c1-9cde-0fd3fe981169" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031713Z:f09a3b48-5cec-47c1-9cde-0fd3fe981169" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5086AA2D19604D73A1856A2B9AF0EF64 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:8361b026-a01e-0076-18f0-517349000000\\nTime:2025-11-10T03:17:13.7768412Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionsflexpowershell112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionsflexpowershell112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE2007A5546CB3\"" ], + "x-ms-request-id": [ "66589708-d0af-4bef-a98d-3e484e677b53" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8b19a7d7-9d47-4054-9a74-9713f722544f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d7c799ae-ffd8-49fa-b1dc-b0181184a547" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031714Z:d7c799ae-ffd8-49fa-b1dc-b0181184a547" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8D9505B4A5024793B052EBB37D89D26E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "465" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionsflexpowershell112525-0000000\",\"name\":\"app-package-functionsflexpowershell112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "106" ], + "x-ms-client-request-id": [ "d9871cfe-2371-469f-8725-1f194868f53c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "4f1ade7c-2dd1-47d4-9f8b-03df274794e7", "7b1d61cb-2863-4266-9fa5-33eb83554106" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "a2953ec4-7b13-4da9-8c17-0675bcce4990" ], + "x-ms-correlation-request-id": [ "a2953ec4-7b13-4da9-8c17-0675bcce4990" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031715Z:a2953ec4-7b13-4da9-8c17-0675bcce4990" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 297E002D92044C3C961CFF37E399D917 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "c2e6bb26-e045-4e2a-8fa0-443b3c8e7e36" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6316019e-6137-4730-9914-97187018fcdd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b07bf5dc-5c9b-4b2d-bad4-2332fb43c72d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6099b7e8-0ea9-44cd-bbb2-3d2d7c5a4ee0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031716Z:6099b7e8-0ea9-44cd-bbb2-3d2d7c5a4ee0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E207B22E990C46A182A8AAF9AFD2E25E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:15Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ZttGCwj1QA0CGPJvk+S6wsBB9AmUj/UXtZg1YT5VHEZGAh2cMTprCDIjm7NBjeiaBxB1R+F9fi5d+AStUv/p2w==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "108" ], + "x-ms-client-request-id": [ "defa576c-7ebe-4f8a-93bd-e1bdf9cbc3d6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "85b76450-8bd8-47c8-b3f2-7d7c3d163151", "1a483438-5708-452c-8d19-aa4af34eaf3f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "6db3ca4f-27c5-4459-a28b-1739e337e44d" ], + "x-ms-correlation-request-id": [ "6db3ca4f-27c5-4459-a28b-1739e337e44d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031716Z:6db3ca4f-27c5-4459-a28b-1739e337e44d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 392EC52AF73D46B985DCBC845FCFDA0A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:16Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "804ea622-7e9f-44ab-933a-f5e3117b8400" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "31d5662d-9551-4549-8335-6c96451cef28" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9a57019-d3ba-4ffc-b6df-6818e2553768" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c7bbd00e-34f3-42a5-85e3-063ee0948ef0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031717Z:c7bbd00e-34f3-42a5-85e3-063ee0948ef0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3A8A572FC9A44BBD96C82A3CB34272F7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:16Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ZttGCwj1QA0CGPJvk+S6wsBB9AmUj/UXtZg1YT5VHEZGAh2cMTprCDIjm7NBjeiaBxB1R+F9fi5d+AStUv/p2w==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/133ac2b2-1f84-4751-a450-2f52d19c9d2e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "112e71d7-e45e-487a-bfda-1a1332fccf97" ], + "x-ms-correlation-request-id": [ "112e71d7-e45e-487a-bfda-1a1332fccf97" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031731Z:112e71d7-e45e-487a-bfda-1a1332fccf97" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0B95392F6DAE41848F60F94B307B559B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:17Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1650" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e9025ca4-0000-0200-0000-6911594a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-PowerShell-112525\",\r\n \"name\": \"Functions-Flex-PowerShell-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-112525\",\r\n \"AppId\": \"30d45ad2-c7bb-4fc0-a037-3c71dc564070\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"25000dae-a007-4685-a3cc-d26a90359f6a\",\r\n \"ConnectionString\": \"InstrumentationKey=25000dae-a007-4685-a3cc-d26a90359f6a;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=30d45ad2-c7bb-4fc0-a037-3c71dc564070\",\r\n \"Name\": \"Functions-Flex-PowerShell-112525\",\r\n \"CreationDate\": \"2025-11-10T03:17:19.4277913+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-112525_30d45ad2-c7bb-4fc0-a037-3c71dc564070_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?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://funcappflexsa112525power.blob.core.windows.net/app-package-functionsflexpowershell112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=25000dae-a007-4685-a3cc-d26a90359f6a;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=30d45ad2-c7bb-4fc0-a037-3c71dc564070\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2005" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F08EF9288B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "aaa80d6d-21a5-4f74-bec1-ea6098e890dd" ], + "X-AspNet-Version": [ "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/b9f18ed5-d2e2-4ff7-96d7-41aa539a17ce" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "99e20d3a-c2f0-4f1f-bcdc-7f189905f834" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031756Z:99e20d3a-c2f0-4f1f-bcdc-7f189905f834" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7F1456F0CA4147CFB280DA49717A7277 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:17:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:17:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9601" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525\",\"name\":\"Functions-Flex-PowerShell-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-PowerShell-112525\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\",\"functions-flex-powershell-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:17:33.8766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionsflexpowershell112525-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-112525\",\"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-112525\\\\$Functions-Flex-PowerShell-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-powershell-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "2c3aa02b-5cd5-44ed-938e-e8ccb077a53c" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F09B93E235\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b5334ccf-7954-4078-810e-f1d2fc141f49" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "44be9dc3-a255-478a-b44c-2e48c5d662cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031826Z:44be9dc3-a255-478a-b44c-2e48c5d662cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 48F5064BF4074B8592AB4B2E0023254D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:26Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9578" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525\",\"name\":\"Functions-Flex-PowerShell-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-PowerShell-112525\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\",\"functions-flex-powershell-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:17:55.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionsflexpowershell112525-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-112525\",\"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-112525\\\\$Functions-Flex-PowerShell-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-powershell-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "79fefb7b-9846-4808-876d-6c17e5345a3c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F09B93E235\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4df098e0-bd0e-4917-826b-ea8801868f6a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ed0c7f0f-a58d-43b8-9155-94314e9031c3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031827Z:ed0c7f0f-a58d-43b8-9155-94314e9031c3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9F2CEF0A93D447C499E07672C7891EF0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:26Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9578" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525\",\"name\":\"Functions-Flex-PowerShell-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-PowerShell-112525\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\",\"functions-flex-powershell-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:17:55.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionsflexpowershell112525-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-112525\",\"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-112525\\\\$Functions-Flex-PowerShell-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-powershell-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "a122bd71-a4a1-4d11-b389-c72fa2a9ea24" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "596183f1-bff0-481f-a980-6b2dfee3d9d7" ], + "X-AspNet-Version": [ "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/f30b1ed5-58e2-4f19-b0b2-1127bab7f64d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d72c67e9-8aa1-4716-a743-fe452ce6f434" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031827Z:d72c67e9-8aa1-4716-a743-fe452ce6f434" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 23A4D26B67F74425A786F0393A21EAA0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:27Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=25000dae-a007-4685-a3cc-d26a90359f6a;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=30d45ad2-c7bb-4fc0-a037-3c71dc564070\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "1bb57781-9b7e-4b9e-8de2-fcbdedd3d001" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7455ecfb-e708-4f90-b730-cd53ebce784b" ], + "X-AspNet-Version": [ "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/c61adeba-5935-401f-8b2f-8ddbac368bfa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "92641df4-6f36-442e-8b5d-0ff751d17cc1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031828Z:92641df4-6f36-442e-8b5d-0ff751d17cc1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CC47B5BC8B86495FBB90D7526A35F898 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:27Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4167" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/web\",\"name\":\"Functions-Flex-PowerShell-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "da6cf032-f56d-48ec-8103-d5f1cf4ada91" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "92bd6dbc-5317-48d9-b1f1-1cbf7571a3fa" ], + "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": [ "69617dd4-06f2-4569-bd6b-4be7381e4213" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031828Z:69617dd4-06f2-4569-bd6b-4be7381e4213" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F28AC6B72CA14AE78BEA84A1FC8A3B34 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:28Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "659dc27b-2bc9-46e1-a707-20444a095af2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "24c29fac-5c28-4c99-beb7-92035d5afae1" ], + "X-AspNet-Version": [ "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/e70712e2-07ec-404f-a6ed-cfe45651f751" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f5dfa17b-a4a0-4274-b858-6b8265881a5e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031828Z:f5dfa17b-a4a0-4274-b858-6b8265881a5e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A86E3036BC0A4294B3394155511108E6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:28Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=25000dae-a007-4685-a3cc-d26a90359f6a;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=30d45ad2-c7bb-4fc0-a037-3c71dc564070\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "ec40cfdd-de1a-446f-8be3-63a8a1021a07" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F09B93E235\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "04267ccd-2070-4556-b4fa-d3955cb897c7" ], + "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": [ "9b212364-31ba-4230-a7dc-e0ace8f752dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031829Z:9b212364-31ba-4230-a7dc-e0ace8f752dc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8AB9AED7779E4519A11B7BD462D66EEA Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9578" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525\",\"name\":\"Functions-Flex-PowerShell-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-PowerShell-112525\",\"repositorySiteName\":\"Functions-Flex-PowerShell-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-112525.azurewebsites.net\",\"functions-flex-powershell-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:17:55.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionsflexpowershell112525-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-112525\",\"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-112525\\\\$Functions-Flex-PowerShell-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-powershell-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "f1eb8ac3-ec87-4783-8f15-c3c69ceabe9f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "e1ca6776-0a71-426f-bbbf-3700e95a4678" ], + "X-AspNet-Version": [ "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/5cd3d35c-6ab4-4475-be08-ae0a8560efab" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "086f93b2-ef26-461f-a42c-8354b5ff9ca3" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031829Z:086f93b2-ef26-461f-a42c-8354b5ff9ca3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2DA2C5DDC969437FA132DC8C06F20F82 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1027" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=25000dae-a007-4685-a3cc-d26a90359f6a;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=30d45ad2-c7bb-4fc0-a037-3c71dc564070\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "f1a3d49d-ff65-4e0b-93cb-f7c4a9e378d5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "fe052008-b8ef-40d3-a5b9-78d2877f72cc" ], + "X-AspNet-Version": [ "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/163c69f8-dffb-404a-a3e6-2e4b455e222b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "018c3553-f8d1-4eb5-9f9c-e0564e90cc03" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031830Z:018c3553-f8d1-4eb5-9f9c-e0564e90cc03" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 662458DBF8C64467B5A57B41098C069E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4167" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525/config/web\",\"name\":\"Functions-Flex-PowerShell-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "7d9f470e-8dd7-4528-8f04-4aa85ed58c95" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F09B93E235\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1f3c9da8-562b-447e-8bd6-24b1ad8a300a" ], + "X-AspNet-Version": [ "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/3a04c2f4-6077-46ee-81fc-686a695fcf87" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "c89077fe-b095-4613-9512-d36b05beecc9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031846Z:c89077fe-b095-4613-9512-d36b05beecc9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DCA0907102B849C5931C952116E6D518 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:30Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:45 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Flex-Custom-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "65" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "edc0a33f-6adc-4b00-9da7-a64da0b46fc3" ], + "X-AspNet-Version": [ "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/33a1e29d-ea16-4d01-b34f-c4867838716a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b9875aa1-14dc-4e8b-ad67-e2bad2c022cd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031847Z:b9875aa1-14dc-4e8b-ad67-e2bad2c022cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 76334FF5A4D34EFC936A578D97834F86 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:46Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c60dcc58-3465-40c2-8a5d-6ef6d684a314" ], + "X-AspNet-Version": [ "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/446d691a-6260-407c-8c60-af21f9d85251" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "56f68a65-b544-4211-b11b-3d03270e9658" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031850Z:56f68a65-b544-4211-b11b-3d03270e9658" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8327D27DECCA43E6BB33E977354D6683 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:18:47Z" ], + "Date": [ "Mon, 10 Nov 2025 03:18:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "030df3d9-a70a-41e7-98c3-7453bdd11993" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3c4cf9a7-f960-4cec-8db3-7909e2346da0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d9cc9d4-ccf2-4e31-bbcf-e8959c7bdda1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031920Z:2d9cc9d4-ccf2-4e31-bbcf-e8959c7bdda1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B1BDEAC7F0BF4C0586BB747035B48A60 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:20Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "030df3d9-a70a-41e7-98c3-7453bdd11993" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bf15f7a8-dca8-4a55-bc22-f551f60c2b1e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3726cf19-dc6a-4a71-bda6-6bcb13bab337" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031921Z:3726cf19-dc6a-4a71-bda6-6bcb13bab337" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 55B5600A45E842399C88B304C56643A7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:20Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "127" ], + "x-ms-client-request-id": [ "999d7606-f4d8-429f-8147-4f5aef1691f9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "3bd4de41-7ca4-411c-8c7a-ab1d1c3ebeab", "67d71ae9-a9a2-43fa-8252-06ae9987b92e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "fcf45e5c-d62a-456f-a599-b8cb384d3997" ], + "x-ms-correlation-request-id": [ "fcf45e5c-d62a-456f-a599-b8cb384d3997" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031921Z:fcf45e5c-d62a-456f-a599-b8cb384d3997" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B2A3A10B9EFB41C2BAC8C13741FEB99E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:21Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/blobServices/default/containers/app-package-functionsflexcustom112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/blobServices/default/containers/app-package-functionsflexcustom112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "66c6c427-3d2e-4fdd-9bfa-8b26ec386c3f" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "830492b8-38d2-4c53-8d1d-5d655a521cc5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1b9d2549-a2e0-4900-b9cf-60181505dfd4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7ec581c6-8701-48c7-87b0-4f36f1c2cbbe" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031922Z:7ec581c6-8701-48c7-87b0-4f36f1c2cbbe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4E37F8B0F2C44AF0977FECA10CF22AA6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:22Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:ddd0df81-a01e-0014-64f0-51db4e000000\\nTime:2025-11-10T03:19:22.3647237Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/blobServices/default/containers/app-package-functionsflexcustom112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/blobServices/default/containers/app-package-functionsflexcustom112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE2007F1F7EC70\"" ], + "x-ms-request-id": [ "53b00744-cf53-421f-a75b-a856aa3afbb2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/610e6676-ad97-4d20-b790-45a74441a205" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "1456b58b-a19f-41dd-acad-90313a9e16cd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031923Z:1456b58b-a19f-41dd-acad-90313a9e16cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 255283002B024D4BBC991AF54F631FB0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:22Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "457" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/blobServices/default/containers/app-package-functionsflexcustom112525-0000000\",\"name\":\"app-package-functionsflexcustom112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "130" ], + "x-ms-client-request-id": [ "6ff69204-4fc9-4210-bec4-ab8ac7f88779" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "4b7b6d40-4fb4-4a7d-92e7-d4f3136a49cf", "09d86167-3404-4460-b061-7f6d659d5aa3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "4d1e7e48-8002-46fc-9bbf-b61985de4aea" ], + "x-ms-correlation-request-id": [ "4d1e7e48-8002-46fc-9bbf-b61985de4aea" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031923Z:4d1e7e48-8002-46fc-9bbf-b61985de4aea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B505AABCE091447F99D6BF42495DAA91 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:23Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "0e42aed8-5f9b-463b-81ba-25c59aa60dab" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ea55e9de-277d-483c-9ccf-de57b2e9f64d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bd1c338c-6155-48f0-9b78-71d31c844837" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bdabbdc4-dc4b-46bb-b8d7-408e842ee1e0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031924Z:bdabbdc4-dc4b-46bb-b8d7-408e842ee1e0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4FD42AD1538F4757996219809F10B3A2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:23Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"U2I0LDZd6azfeP53TBV8YF9Gddn4EcMuBVMURzwXSK6+WhGDQcG5el8k45iHRl2wqaEHwHm1yBhC+AStQrdPMQ==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "132" ], + "x-ms-client-request-id": [ "4fc07bf4-8e36-4b65-821a-12bdf0361574" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "8cb1aa98-ab96-41c2-9ab2-7278411a4e5f", "0bbea9b2-94ff-43b6-bc3a-5ef17f63cf93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "22c3f11f-d6da-4fae-8284-5f3a0a34eebb" ], + "x-ms-correlation-request-id": [ "22c3f11f-d6da-4fae-8284-5f3a0a34eebb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031925Z:22c3f11f-d6da-4fae-8284-5f3a0a34eebb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C29F4486A4034499BD7DE8F0B7493B1C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:24Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "78ba19ea-3d3d-4208-a22a-3f88b0636bcd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4cd40470-3411-4c53-9897-21b5004ac2dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4f5d1de7-0e4b-48bd-8ade-904cd5247297" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ea68ec43-bcc8-44c2-ad56-c0b7a1dd60e1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T031925Z:ea68ec43-bcc8-44c2-ad56-c0b7a1dd60e1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C098D13642784CA4A731A86D948A8F9F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:25Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"U2I0LDZd6azfeP53TBV8YF9Gddn4EcMuBVMURzwXSK6+WhGDQcG5el8k45iHRl2wqaEHwHm1yBhC+AStQrdPMQ==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Flex-Custom-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Flex-Custom-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/e0ce2663-03dc-4a83-90ab-bce03b67bfea" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "501b5a11-3d25-4631-b4cc-db08dfd4e881" ], + "x-ms-correlation-request-id": [ "501b5a11-3d25-4631-b4cc-db08dfd4e881" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T031941Z:501b5a11-3d25-4631-b4cc-db08dfd4e881" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9575A2173F864B1C97FC2E44131CC409 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:25Z" ], + "Date": [ "Mon, 10 Nov 2025 03:19:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1626" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e902e4a6-0000-0200-0000-691159cd0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Flex-Custom-112525\",\r\n \"name\": \"Functions-Flex-Custom-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-112525\",\r\n \"AppId\": \"397763eb-1153-401b-ab99-901084c0c490\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"2aedfc85-6bcb-4993-8224-b560d851f901\",\r\n \"ConnectionString\": \"InstrumentationKey=2aedfc85-6bcb-4993-8224-b560d851f901;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=397763eb-1153-401b-ab99-901084c0c490\",\r\n \"Name\": \"Functions-Flex-Custom-112525\",\r\n \"CreationDate\": \"2025-11-10T03:19:28.0811193+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-112525_397763eb-1153-401b-ab99-901084c0c490_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-112525-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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?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://funcappflexsa112525custo.blob.core.windows.net/app-package-functionsflexcustom112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=2aedfc85-6bcb-4993-8224-b560d851f901;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=397763eb-1153-401b-ab99-901084c0c490\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1997" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F0DBF8F880\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "062c353d-380b-4451-9a35-271687ecc3f8" ], + "X-AspNet-Version": [ "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/7a309bd4-cc5a-455e-b8c1-405e56350bb7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "fa33a82c-fbfd-4007-b496-3b444d3f00e5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032006Z:fa33a82c-fbfd-4007-b496-3b444d3f00e5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3EF3D6549C8E428DB5106D06B0B87742 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:19:41Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9537" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525\",\"name\":\"Functions-Flex-Custom-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Custom-112525\",\"repositorySiteName\":\"Functions-Flex-Custom-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112525.azurewebsites.net\",\"functions-flex-custom-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:19:43.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://funcappflexsa112525custo.blob.core.windows.net/app-package-functionsflexcustom112525-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-112525\",\"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-Custom-112525\\\\$Functions-Flex-Custom-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-custom-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "c1aa8e4b-1cde-4e26-a14c-086c6c3b6617" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F0E9305A55\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "eee146a0-6a69-499a-93cd-40ba0f33d3e0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2b78f85d-fe16-4c48-8029-f7e80914d7d6" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032037Z:2b78f85d-fe16-4c48-8029-f7e80914d7d6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 67C2B67E71A844A4A1E9A863E1F6207B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:36Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9514" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525\",\"name\":\"Functions-Flex-Custom-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Custom-112525\",\"repositorySiteName\":\"Functions-Flex-Custom-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112525.azurewebsites.net\",\"functions-flex-custom-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:20:06.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\":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://funcappflexsa112525custo.blob.core.windows.net/app-package-functionsflexcustom112525-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-112525\",\"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-Custom-112525\\\\$Functions-Flex-Custom-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-custom-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "df94eb26-f47e-4ad6-9c16-8fab14a079d5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F0E9305A55\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d83134f0-7635-470d-bc88-11822f91e1eb" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6e9ad736-0ffc-44f5-b980-afd7ebfd070e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032037Z:6e9ad736-0ffc-44f5-b980-afd7ebfd070e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0C8582D26F2C4DD093F5B42B0C2D335D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:37Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9514" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525\",\"name\":\"Functions-Flex-Custom-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Custom-112525\",\"repositorySiteName\":\"Functions-Flex-Custom-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112525.azurewebsites.net\",\"functions-flex-custom-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:20:06.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\":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://funcappflexsa112525custo.blob.core.windows.net/app-package-functionsflexcustom112525-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-112525\",\"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-Custom-112525\\\\$Functions-Flex-Custom-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-custom-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "f364fb56-b822-4bf7-aed1-d48086eb6f97" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b2fad3f3-30eb-42ed-a006-c7d1cc28ec99" ], + "X-AspNet-Version": [ "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/eb22f5a6-3858-4ae1-b725-d5118362c24c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "037b8bfd-7dec-4486-84ef-4e37f092fdfd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032037Z:037b8bfd-7dec-4486-84ef-4e37f092fdfd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EF62685DB50345BF96B5F21BA4140F41 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:37Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2aedfc85-6bcb-4993-8224-b560d851f901;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=397763eb-1153-401b-ab99-901084c0c490\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "1580d868-629e-4f18-b8e2-50512e9fa27b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "160e7736-f241-4b16-a1f3-44a1b81b0074" ], + "X-AspNet-Version": [ "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/083d1fd5-60fb-4b06-8cc7-11c607227e55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "85d7b147-9a80-4bbe-99c6-fd5f7e637eb5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032038Z:85d7b147-9a80-4bbe-99c6-fd5f7e637eb5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 97D0D43D9D974BEEA44911B7C96823B2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/web\",\"name\":\"Functions-Flex-Custom-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "05ee9d80-e717-41f0-a698-acca8fe6971e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "db8c021c-25d1-4944-b6b1-229fabaef6ea" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9f637e73-fd82-4c3b-a0a3-5b867a9377a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032038Z:9f637e73-fd82-4c3b-a0a3-5b867a9377a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B0D3D626A4F742B092F454AC67BC34F2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "8fce5214-efe8-40f3-a50d-c46b9588c88e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "736a3f52-2785-442d-8710-7d8d68adc9b8" ], + "X-AspNet-Version": [ "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/957b2c53-4293-48e5-b814-df8997669a48" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "30eb9fb6-c948-4255-981c-cbd404864459" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032039Z:30eb9fb6-c948-4255-981c-cbd404864459" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 92112AFF60A64F4EA7DACA574BEB458D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2aedfc85-6bcb-4993-8224-b560d851f901;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=397763eb-1153-401b-ab99-901084c0c490\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "c24b9d60-65d8-4d1e-a38d-20c4f72049d3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F0E9305A55\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2d4c718f-54d3-4ca3-9036-7e9635b8ad2e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "91196b4d-5a11-4b66-a9b8-a9457012c35b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032039Z:91196b4d-5a11-4b66-a9b8-a9457012c35b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 36B9DB680C3246E097B4817D19A317C4 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:39Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9514" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525\",\"name\":\"Functions-Flex-Custom-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Flex-Custom-112525\",\"repositorySiteName\":\"Functions-Flex-Custom-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-112525.azurewebsites.net\",\"functions-flex-custom-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:20:06.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\":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://funcappflexsa112525custo.blob.core.windows.net/app-package-functionsflexcustom112525-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-112525\",\"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-Custom-112525\\\\$Functions-Flex-Custom-112525\",\"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-112525\",\"defaultHostName\":\"functions-flex-custom-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "dffd48fd-8dc4-42d9-bdd3-f77984490307" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1cacb1b0-4ed1-4423-931f-47ee24c1f0b0" ], + "X-AspNet-Version": [ "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/b67abe15-62dd-4a64-ad45-e996ec492694" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9db704ab-eaa7-477d-abef-78c5073c5b63" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032040Z:9db704ab-eaa7-477d-abef-78c5073c5b63" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D39525ECE7CC4AC8A9AEAA5B04EB3BA3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:39Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525custo;AccountKey=zKdOX6+8vwgWvnjcuba5ohxXPSXx+R3sA9lGjPDvfi9aNgtrICEjLBj/Gl/SjYRk0vs/vhdPUj2u+AStNKgKbw==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2aedfc85-6bcb-4993-8224-b560d851f901;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=397763eb-1153-401b-ab99-901084c0c490\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/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-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "dae51e18-16d6-4843-b711-ebe90377340b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6a590e36-0e61-4789-aa64-af71742b4f13" ], + "X-AspNet-Version": [ "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/e9e94f08-1479-4408-a343-a7806e859eb2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "30ef7891-31e3-495f-b8f8-70c312626b75" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032040Z:30ef7891-31e3-495f-b8f8-70c312626b75" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D761959C8EB74EDB8E7B20A1E746173E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:40Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4159" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525/config/web\",\"name\":\"Functions-Flex-Custom-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Flex-Custom-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "02e98182-54b5-4b87-ae68-4505ba14fbc4" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F0E9305A55\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d40560bd-1abb-4111-a607-78013e9c824d" ], + "X-AspNet-Version": [ "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/fea2eee0-e5bf-4c94-a499-59d7f4f94e02" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "93f53fa9-e5a8-4fd0-8aea-a5f0adfac33e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032054Z:93f53fa9-e5a8-4fd0-8aea-a5f0adfac33e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5FE9D8FD807347EF8A6C259E3AC0ADDD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:40Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:54 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Python-Flex-Scaling-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "73" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8a5888e3-e317-47aa-9264-80b9c372db74" ], + "X-AspNet-Version": [ "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/338c5242-1064-4b59-8e86-dd2534d3660c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5fa98810-1e91-4bca-aa2f-e60123da0e3b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032056Z:5fa98810-1e91-4bca-aa2f-e60123da0e3b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C05028EFF08A44679B6EB67F8B6C36F7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:55Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e60ec5d9-7d5a-4b82-a1ef-eac1be6dc959" ], + "X-AspNet-Version": [ "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/a7bc7e2e-9b38-47b6-8a6f-79e58b398a85" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a1c3968c-d11c-4c78-91ed-7c18b9f5f329" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032059Z:a1c3968c-d11c-4c78-91ed-7c18b9f5f329" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7458F04061AD4B9CA2E7D14259C43A96 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:20:56Z" ], + "Date": [ "Mon, 10 Nov 2025 03:20:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1909" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "9f9690f3-a024-4946-b1db-8b0c7d4623e2" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "94b74fd5-2fa8-48d6-a37b-b7e4c0f9be4c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "59b37775-0186-469a-9de6-76165b0216f9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032130Z:59b37775-0186-469a-9de6-76165b0216f9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4BE50D5D060B48CF833ACC7EC649DE94 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:29Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "9f9690f3-a024-4946-b1db-8b0c7d4623e2" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "feaf5e61-d166-42c8-b5d1-6e7fe0ff116f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "48ab4fca-98d1-4b87-9917-dcd64bb268e8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032130Z:48ab4fca-98d1-4b87-9917-dcd64bb268e8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BD8E8A0A42024C1D90FBD02FDB6B4279 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:30Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "151" ], + "x-ms-client-request-id": [ "e8ade67f-98d8-4d73-9b16-7f4784186aeb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "947c8c6b-cd76-483a-9bcd-9e09b54c033c", "28618651-dcf5-44b2-b700-9fd8aa4ff166" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "d4a1b25f-3a8a-4524-8f85-350cd8438a94" ], + "x-ms-correlation-request-id": [ "d4a1b25f-3a8a-4524-8f85-350cd8438a94" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032131Z:d4a1b25f-3a8a-4524-8f85-350cd8438a94" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AC97B3448B904D64A4F0C0A0009773D2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:30Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionspythonflexscaling112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionspythonflexscaling112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "21cc2364-7bae-4a83-aaec-3ad71ff64120" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "015065b6-5fee-4296-b811-8569a49cc205" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/061fe31f-ff8a-4b69-bd64-1ef72241fa02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4b627da7-3045-4095-8031-436bfdca48f7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032131Z:4b627da7-3045-4095-8031-436bfdca48f7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8A43FD0A2E6645E4A208C6A638605E50 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:53ed30fc-f01e-001b-6af1-515028000000\\nTime:2025-11-10T03:21:31.7907831Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionspythonflexscaling112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionspythonflexscaling112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE20083F0E14B1\"" ], + "x-ms-request-id": [ "3dc80cbf-f651-402e-a36c-b9ed498d517c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7d612e97-f900-4d77-bee5-8b58ad43f326" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "34300ec1-e5a1-4937-a818-a83fbe1be322" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032132Z:34300ec1-e5a1-4937-a818-a83fbe1be322" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 266D85693B9F405092C874ACA0504F2F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/blobServices/default/containers/app-package-functionspythonflexscaling112525-0000000\",\"name\":\"app-package-functionspythonflexscaling112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "154" ], + "x-ms-client-request-id": [ "ca49fcc9-2e5a-4bec-b4f7-26f8aa72ed52" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "3255dd2f-de55-4d6d-ab05-19861f2b58f6", "dc54e558-40ee-4077-823c-4f6747a42b02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "455607aa-1f65-4e0e-9442-af6994b74337" ], + "x-ms-correlation-request-id": [ "455607aa-1f65-4e0e-9442-af6994b74337" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032133Z:455607aa-1f65-4e0e-9442-af6994b74337" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A32ED59CBE774392BA1A5DF70D487C66 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:32Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "7db8de1a-7853-4c2b-bfb1-af37bf014c36" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "30c7d5ec-b1f9-455e-b79f-af82c3fa860d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/74944f12-0619-408c-b4bd-bcc795a6f3c7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c7c222c9-2820-4acc-9a5b-c42f9210658c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032133Z:c7c222c9-2820-4acc-9a5b-c42f9210658c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8E68EF0B43404CB3AF7919AE0D585285 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:33Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"BrgsEvquXflai1reYZUZxWNlZ2sOLkfztoZKZvbkVINukFX0XM7rvLsR3kjVe9KsR97iGRuVpl6l+AStpxwapg==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "156" ], + "x-ms-client-request-id": [ "0c2140bd-5fab-4890-a356-60033431d801" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "827d1ff9-eb89-4e1f-a866-3841dca9b437", "e7965e11-2e98-48a7-842e-2f65b803bced" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "49da85b0-9164-4576-9733-8e1960f7210d" ], + "x-ms-correlation-request-id": [ "49da85b0-9164-4576-9733-8e1960f7210d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032134Z:49da85b0-9164-4576-9733-8e1960f7210d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A932CA9145F4B198B6DF9D6CD5B1676 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:33Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "fdb753a9-250c-4476-b255-1af01080c4c8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "14542b79-c871-4019-b093-6da95f13ca8a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/932f6743-f0bd-42dc-8edb-45cc47ea6e08" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "faf1ae0f-faf4-4ac1-8eba-f735bf9aaf87" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032134Z:faf1ae0f-faf4-4ac1-8eba-f735bf9aaf87" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1BE75A6E41B84F8AAE1C353C482C9670 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"BrgsEvquXflai1reYZUZxWNlZ2sOLkfztoZKZvbkVINukFX0XM7rvLsR3kjVe9KsR97iGRuVpl6l+AStpxwapg==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/fa30a095-1a55-45ce-a766-997cce1bb157" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "7b67002b-c129-4ea0-bb36-7362c86c201c" ], + "x-ms-correlation-request-id": [ "7b67002b-c129-4ea0-bb36-7362c86c201c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032146Z:7b67002b-c129-4ea0-bb36-7362c86c201c" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BADE336FA4F6406889451FA535B7A1C4 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:21:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e9029fa9-0000-0200-0000-69115a4a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-112525\",\r\n \"name\": \"Functions-Python-Flex-Scaling-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-112525\",\r\n \"AppId\": \"9b439552-1aee-48f4-8d67-89546d05db2b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f6940d0a-e535-4266-a1c2-e428249782f1\",\r\n \"ConnectionString\": \"InstrumentationKey=f6940d0a-e535-4266-a1c2-e428249782f1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9b439552-1aee-48f4-8d67-89546d05db2b\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-112525\",\r\n \"CreationDate\": \"2025-11-10T03:21:36.2364758+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-112525_9b439552-1aee-48f4-8d67-89546d05db2b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-112525-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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionspythonflexscaling112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=f6940d0a-e535-4266-a1c2-e428249782f1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9b439552-1aee-48f4-8d67-89546d05db2b\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2241" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F127179F60\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "61829f0b-48a7-44ca-93e9-9662fcdd1761" ], + "X-AspNet-Version": [ "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/9d262721-a2d9-4234-8925-8643d7867b32" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "35fd1317-acf1-4ddc-840b-de3cb762ca7d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032211Z:35fd1317-acf1-4ddc-840b-de3cb762ca7d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 721D4C5346694A4D82C5471447AA8513 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:21:46Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9722" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Python-Flex-Scaling-112525\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\",\"functions-python-flex-scaling-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:21:48.8966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionspythonflexscaling112525-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-112525\",\"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-112525\\\\$Functions-Python-Flex-Scaling-112525\",\"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-112525\",\"defaultHostName\":\"functions-python-flex-scaling-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "160" ], + "x-ms-client-request-id": [ "51240eb1-99f1-4567-9137-53c69452261e" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F133C321EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "93adef57-4ed9-44d1-b040-ad19c7b82558" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8fc2f99e-7b04-4712-a6d5-83ac0de3a881" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032242Z:8fc2f99e-7b04-4712-a6d5-83ac0de3a881" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 23F0E38C89AD4500AD654D34492C99D1 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:41Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9699" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Python-Flex-Scaling-112525\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\",\"functions-python-flex-scaling-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:22:11.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionspythonflexscaling112525-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-112525\",\"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-112525\\\\$Functions-Python-Flex-Scaling-112525\",\"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-112525\",\"defaultHostName\":\"functions-python-flex-scaling-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "ce72aff2-5829-4f9e-b91a-968a62a56814" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F133C321EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e7c672d1-4e5b-42ac-8b2d-e75cc93afb51" ], + "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": [ "86055dce-6345-4e4f-bbcf-8afdbaa1762a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032242Z:86055dce-6345-4e4f-bbcf-8afdbaa1762a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C4D7FD1B37E40AB888A93C731DDAB4B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:42Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9699" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Python-Flex-Scaling-112525\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\",\"functions-python-flex-scaling-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:22:11.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionspythonflexscaling112525-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-112525\",\"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-112525\\\\$Functions-Python-Flex-Scaling-112525\",\"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-112525\",\"defaultHostName\":\"functions-python-flex-scaling-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "833e5437-d39f-4e43-8597-2374ac2c2ac5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "33ba9085-f0bc-442a-90e3-6c6be1dd1453" ], + "X-AspNet-Version": [ "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/3fe780eb-c86f-46a7-a01d-211ccf094e7e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c236bd1d-ebab-4a00-942a-c459d963d697" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032242Z:c236bd1d-ebab-4a00-942a-c459d963d697" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 00822A945BAC4650AB7A7A41FEB41F7B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:42Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6940d0a-e535-4266-a1c2-e428249782f1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9b439552-1aee-48f4-8d67-89546d05db2b\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "b2867cec-dbc2-4ddb-89c8-5ca36fed44f8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "084ee69b-7664-4ecc-8a77-972c72662267" ], + "X-AspNet-Version": [ "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/4d716721-364c-4f41-9c78-c2fffa8f650e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "e2504cd2-744a-4121-b0b8-90933f912c97" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032243Z:e2504cd2-744a-4121-b0b8-90933f912c97" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DC5273BB2EBC40FF9CE5680DA09C065F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "2b00c6bb-3e88-43ab-95d6-7a466d6fd7ee" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ae632075-5561-4369-b7b6-bdcaf0843e54" ], + "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": [ "03a08a7b-3e07-4263-8734-f34dde3564bb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032243Z:03a08a7b-3e07-4263-8734-f34dde3564bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 163D253E46014C1EA91BA4E65D4A656B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1824" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "c9bcb87c-8811-485b-86d6-547b8ec01b63" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "50b3730e-f285-4ceb-b846-8d249ef4d2d3" ], + "X-AspNet-Version": [ "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/ba9e5027-3b43-4bee-a20c-1eb24685a99c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "48a3f690-24a3-4040-9ac9-b22d8fe3cd53" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032244Z:48a3f690-24a3-4040-9ac9-b22d8fe3cd53" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7B291DD8DA424245A5E9BD4C72AC953B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:43Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6940d0a-e535-4266-a1c2-e428249782f1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9b439552-1aee-48f4-8d67-89546d05db2b\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "59ace308-f24e-4b7d-b114-ec77802b5c5c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F133C321EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5a8208d4-510c-42d3-93b0-4eec5b9a465d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1095" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16495" ], + "x-ms-correlation-request-id": [ "f788fa6c-d449-4fb6-b800-6b6354311fac" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032244Z:f788fa6c-d449-4fb6-b800-6b6354311fac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D3365D03C00F45859421CA908E3A47AF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:44Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9699" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Python-Flex-Scaling-112525\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-112525.azurewebsites.net\",\"functions-python-flex-scaling-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:22:11.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525pytho.blob.core.windows.net/app-package-functionspythonflexscaling112525-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-112525\",\"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-112525\\\\$Functions-Python-Flex-Scaling-112525\",\"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-112525\",\"defaultHostName\":\"functions-python-flex-scaling-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "87f2da2f-3456-45c1-b082-412072df2b6a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "da84aad0-fbe5-4bd8-9b62-09709f76433d" ], + "X-AspNet-Version": [ "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/3c7fbdf8-0545-4133-ac7f-544175ffa81c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "740d4d05-8ae3-4e96-bcb5-2c8a2e49321b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032245Z:740d4d05-8ae3-4e96-bcb5-2c8a2e49321b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94A8AA05EFD5451A8B61921E508CC286 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:44Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1031" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525pytho;AccountKey=v4bgrGCYsl5dluKHFC1op+6sFZzD7FMnIWDfSZK7/q0jaU0KfnZNybidl0WlttPGyMSkzongbKbh+AStkdXh1A==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=f6940d0a-e535-4266-a1c2-e428249782f1;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=9b439552-1aee-48f4-8d67-89546d05db2b\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/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-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "33aff5ee-462c-48ec-95f2-d61ffb4889d7" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b5a3db90-4eb6-4225-b407-fcc550be4f2c" ], + "X-AspNet-Version": [ "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/e666fe66-08eb-4972-abdc-0e3f84281af2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1094" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16494" ], + "x-ms-correlation-request-id": [ "46d7f5f6-1f96-4a6f-b9ac-86727e34b34e" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032245Z:46d7f5f6-1f96-4a6f-b9ac-86727e34b34e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C9A6B7D610E94598BFF8EF4A93F2F7C0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4175" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525/config/web\",\"name\":\"Functions-Python-Flex-Scaling-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "5c108652-2a7f-4c04-a652-70faea67ac40" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F133C321EB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "721c738e-8da7-478a-8414-3c8b3a42df34" ], + "X-AspNet-Version": [ "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/7e04afac-7d96-4f3d-b071-219f8d89d6ee" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "b969ba71-cb24-4c4d-a3f7-ccb956e4ce9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032300Z:b969ba71-cb24-4c4d-a3f7-ccb956e4ce9c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 25C0BEA24BAC4BEEB1E01A484537FDAD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:22:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:22:59 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "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/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-Node-SystemIdentity-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "73" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "42dd0e0c-15f0-40c9-9a2e-316af94b6b9b" ], + "X-AspNet-Version": [ "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/71c576ca-669f-4db2-8689-307100332e46" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "20d2686e-2273-4eed-b099-8636c7bbf531" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032301Z:20d2686e-2273-4eed-b099-8636c7bbf531" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 43596F447B954656924EB9ACCA35AC4C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:00Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "260" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e89b1a98-daba-498c-8212-7f0c95a8b3cf" ], + "X-AspNet-Version": [ "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/59d49de9-0c85-4a2e-9c4f-7083b59bfa20" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "446b1423-162f-4261-aedf-64f15132ab0b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032305Z:446b1423-162f-4261-aedf-64f15132ab0b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B4917E6F868646DD96ED129ADA6B1997 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "d09f46a7-f95c-4760-a34e-2c324cd9a67d" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3305ee42-4c45-4a2b-98f7-35547b267481" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc041cdf-2ad4-4d30-8636-5b6862655858" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032335Z:fc041cdf-2ad4-4d30-8636-5b6862655858" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CE7E6DCEDD524D15B0364F72B0466C61 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:35Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "d09f46a7-f95c-4760-a34e-2c324cd9a67d" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6d62e832-4bd5-428c-9a71-45df3bfac1f7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6637e929-e7cb-439f-bcb9-dfc96d831b34" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032336Z:6637e929-e7cb-439f-bcb9-dfc96d831b34" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8B5B747302484BBB964116EC6774AE06 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:35Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "175" ], + "x-ms-client-request-id": [ "e58ed6f9-2a5e-460a-8388-ff697977100e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c2d89d8f-d0f3-42a4-acc0-32fdf58d2485", "c5e2c18e-1e08-4a12-a826-ed0da7df1e3e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5f4d1dc0-bcf5-4af4-b1c8-b3b9ea0968e7" ], + "x-ms-correlation-request-id": [ "5f4d1dc0-bcf5-4af4-b1c8-b3b9ea0968e7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032336Z:5f4d1dc0-bcf5-4af4-b1c8-b3b9ea0968e7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B11F33C1B5F647D999E0E0E9886EF4DF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:36Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsnodesystemidentity11252-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsnodesystemidentity11252-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "20259bb0-c08a-4f24-a485-cde0838fd87a" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0e7e2ad7-602a-4eb0-89c9-1285304a777e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c7be52eb-88b9-4572-8c91-22838ef44bd1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "394c262e-47a4-4c2c-97e1-70565f254dd8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032337Z:394c262e-47a4-4c2c-97e1-70565f254dd8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D643670F65D4426CB750FA6D96CA367F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:36Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:f691f2bc-801e-0054-27f1-51947f000000\\nTime:2025-11-10T03:23:37.2753287Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsnodesystemidentity11252-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsnodesystemidentity11252-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE200889ED85D3\"" ], + "x-ms-request-id": [ "2acb6774-1dcc-4a82-9c37-b47cedcffdf3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fffc6172-235d-421b-bca0-a1f964e74ae6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "22a32856-5480-4496-a7e7-d44e22fdb6ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032337Z:22a32856-5480-4496-a7e7-d44e22fdb6ad" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 77FA3ED939A04B1FBC3BE93A3918DCF3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:37Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "470" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/blobServices/default/containers/app-package-functionsnodesystemidentity11252-0000000\",\"name\":\"app-package-functionsnodesystemidentity11252-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "178" ], + "x-ms-client-request-id": [ "8b9909f8-cd1f-4767-b821-56801b72d84f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "9df6929c-ff96-4f74-9c9a-67de28b53870", "3629b2ca-1977-4537-bdbf-90e05148f284" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "cff9a128-e127-4a1e-b86f-cdb3eb5abb50" ], + "x-ms-correlation-request-id": [ "cff9a128-e127-4a1e-b86f-cdb3eb5abb50" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032338Z:cff9a128-e127-4a1e-b86f-cdb3eb5abb50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CEDA98521CDF42D09B5BB640095512F3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "ee987ef7-8ecd-41ab-bf04-8884305ee768" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "297044a1-7d6a-4097-bce0-e23adeaa51d8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/aec672ed-a8c3-4e1c-ae11-f8cc4872fa98" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "71d7511d-f035-421d-871a-7feb041583ae" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032339Z:71d7511d-f035-421d-871a-7feb041583ae" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9DAD64C2202D4292ABFD2CFAF0D104E5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:38Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"PSoMKIhTsKMz4F3fR9GFuhC71pJbzjW4q15aUL5JPpSQDijP2HNC4nN3Eckw3/gc+usuAnJwyVah+AStHrTYYQ==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112525?api-version=2015-05-01+10": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/2720e19e-3182-4dcf-a52f-0988f20e939c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "2789874c-cfb8-47fb-b582-09ad9ecb3b9c" ], + "x-ms-correlation-request-id": [ "2789874c-cfb8-47fb-b582-09ad9ecb3b9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032351Z:2789874c-cfb8-47fb-b582-09ad9ecb3b9c" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9E61ED5584B04B01B33EDDC2919EEB2F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:39Z" ], + "Date": [ "Mon, 10 Nov 2025 03:23:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1674" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e902eeac-0000-0200-0000-69115ac70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Node-SystemIdentity-112525\",\r\n \"name\": \"Functions-Node-SystemIdentity-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-112525\",\r\n \"AppId\": \"10090b45-c2fd-491d-9737-ba9434831247\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1b01ffa5-4bc0-483a-bfa0-174c24d0100c\",\r\n \"ConnectionString\": \"InstrumentationKey=1b01ffa5-4bc0-483a-bfa0-174c24d0100c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=10090b45-c2fd-491d-9737-ba9434831247\",\r\n \"Name\": \"Functions-Node-SystemIdentity-112525\",\r\n \"CreationDate\": \"2025-11-10T03:23:41.4000765+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-112525_10090b45-c2fd-491d-9737-ba9434831247_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-112525-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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01+11": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsnodesystemidentity11252-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=1b01ffa5-4bc0-483a-bfa0-174c24d0100c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=10090b45-c2fd-491d-9737-ba9434831247\"\r\n }\r\n ]\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": [ "1649" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F172513B4B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3868a6ef-7143-466a-87c8-3bdaeb196613" ], + "X-AspNet-Version": [ "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/ecc61515-b529-40a7-8316-929b2b082367" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "09e38b17-d19a-4d01-b70f-0eca974b9fc1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032417Z:09e38b17-d19a-4d01-b70f-0eca974b9fc1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7702383EDD2249798B259FAE11888BA1 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:23:51Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9745" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Node-SystemIdentity-112525\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\",\"functions-node-systemidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:23:55.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsnodesystemidentity11252-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-112525\",\"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-112525\\\\$Functions-Node-SystemIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-node-systemidentity-112525.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\":\"d5b9cafa-9c27-49da-ba59-350d38c60449\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "bb785694-85fd-4096-8fdb-6e78c154f589" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F17EA4BFCB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b5ebc3bd-7c43-424e-81da-fcf42b1d8388" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7ed380da-bb04-449b-b489-8c0daf4f7a6b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032447Z:7ed380da-bb04-449b-b489-8c0daf4f7a6b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 990837373EF5471F90CEECF70786EC36 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:47Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Node-SystemIdentity-112525\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\",\"functions-node-systemidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:24:16.7966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsnodesystemidentity11252-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-112525\",\"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-112525\\\\$Functions-Node-SystemIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-node-systemidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"d5b9cafa-9c27-49da-ba59-350d38c60449\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "21b702ef-085d-4610-811d-b98af0ecd220" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "e6b776a2-0e9b-480a-a404-12a83ff3b352" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fe1f6c8a-05b0-4506-926f-57eb143046de" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032448Z:fe1f6c8a-05b0-4506-926f-57eb143046de" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94FF8A7D75C543B4A5B3A572764185FD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Node-SystemIdentity-112525\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\",\"functions-node-systemidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:24:16.7966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsnodesystemidentity11252-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-112525\",\"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-112525\\\\$Functions-Node-SystemIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-node-systemidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"d5b9cafa-9c27-49da-ba59-350d38c60449\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "38e3dde3-8810-4d68-85ea-39832e229706" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6ed37fb0-7078-4917-9eae-099011c6af19" ], + "X-AspNet-Version": [ "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/786eba97-24ff-481c-99d5-a21be88bd316" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f19bf971-451d-40a6-9194-ee7b5074f77b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032448Z:f19bf971-451d-40a6-9194-ee7b5074f77b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6E59DA84FD5F4FCB8325D75B65721426 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "789" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1b01ffa5-4bc0-483a-bfa0-174c24d0100c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=10090b45-c2fd-491d-9737-ba9434831247\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "e6f3ed37-0305-4d62-8551-46d7ad6fe721" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "561a7156-f6f0-41a4-b803-f78e845685a8" ], + "X-AspNet-Version": [ "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/8c70826b-d02f-449a-8f0c-ba56209bdab1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b8317033-7e3a-4f6a-b980-d95aefbe4c9f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032449Z:b8317033-7e3a-4f6a-b980-d95aefbe4c9f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DF6B7D5708784C5AA50CB92902FCDDF7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4176" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/web\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"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\":33270,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all 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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "8b8785dc-0ab1-4343-a011-d69a94d7c605" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "91252f77-e11d-4504-8da7-c7b1b62018a8" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a3e9219d-0513-4bb4-853f-faed38f40231" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032449Z:a3e9219d-0513-4bb4-853f-faed38f40231" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A7AAC452841404F922F767AFA8FCE1B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:49Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "65ed3a38-3272-4cfd-a113-24f9aa6e96f4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "410f8280-746b-4b10-8f2e-d2c48194b293" ], + "X-AspNet-Version": [ "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/a0d62596-da5e-44de-972a-3ee7fdad6805" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f2ad7bcd-8191-4c76-bf80-85535ca200a8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032450Z:f2ad7bcd-8191-4c76-bf80-85535ca200a8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 24C241DB5BFA427CA1C291264DBDAAE8 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:49Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "789" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1b01ffa5-4bc0-483a-bfa0-174c24d0100c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=10090b45-c2fd-491d-9737-ba9434831247\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "1978e77e-ec30-4c2d-806c-6a342c05d91f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F17EA4BFCB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e59314a7-233a-45fe-b944-132a4a3a38ee" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "154000ff-57f5-4303-8fa8-282bfdbb2607" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032450Z:154000ff-57f5-4303-8fa8-282bfdbb2607" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BAFF5FA7CE8B4780ADCFAC29AF889487 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:50Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Node-SystemIdentity-112525\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-112525.azurewebsites.net\",\"functions-node-systemidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:24:16.7966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525node.blob.core.windows.net/app-package-functionsnodesystemidentity11252-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-112525\",\"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-112525\\\\$Functions-Node-SystemIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-node-systemidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"d5b9cafa-9c27-49da-ba59-350d38c60449\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "c6ef256a-6281-4603-8030-f27d2d4c5670" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "04a1e9da-4615-4ea0-9230-329ee87a159d" ], + "X-AspNet-Version": [ "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/f27a7574-ecd9-48a3-b885-8f81aaa8f1d9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a1013428-31f6-4f7d-8ad6-45f4465ef12f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032450Z:a1013428-31f6-4f7d-8ad6-45f4465ef12f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6B3C6BBE25514807B3AAD6BE3B9B2344 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:50Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "789" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525node;AccountKey=cycpsPm74g3lpc9SeuaRq8f0tfYN33g/Spe4Zw5WjQyZLPigXH9GSEXq5imq8PW3CIySplxgGmwl+AStJdsTqg==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1b01ffa5-4bc0-483a-bfa0-174c24d0100c;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=10090b45-c2fd-491d-9737-ba9434831247\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "1812c574-f7fd-4f76-bb77-d893159df4a9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ccbc73a5-a566-4a90-8a27-cceaa7fd0944" ], + "X-AspNet-Version": [ "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/6baf4057-495b-41b8-b4f4-0f17da56f29e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4aabcc9a-d115-4b80-a459-a3d679fc09be" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032451Z:4aabcc9a-d115-4b80-a459-a3d679fc09be" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4DF81E24D73249B286C5C313576DDC90 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:51Z" ], + "Date": [ "Mon, 10 Nov 2025 03:24:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4176" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525/config/web\",\"name\":\"Functions-Node-SystemIdentity-112525\",\"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\":33270,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all 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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "64ae64a3-05f4-4179-8f61-b7f80922ed01" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F17EA4BFCB\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5a2a53e6-0849-4925-b128-4412d78f110e" ], + "X-AspNet-Version": [ "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/b2dbfed5-8f39-4e07-b289-740f08eff766" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "b8e6a197-9039-4321-9d8c-a3d807ac0c84" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032507Z:b8e6a197-9039-4321-9d8c-a3d807ac0c84" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0D8B1671665F4ACD93E0870423130E84 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:24:51Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:06 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "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/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-Pwsh-UserAssignedIdentity-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "79" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f3a09c76-afe5-4e32-a5ee-247055675c0f" ], + "X-AspNet-Version": [ "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/9cd20883-d475-4ee2-8108-ea10627ef0a6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f23a551f-6eef-4b99-b7ff-468b9a169214" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032511Z:f23a551f-6eef-4b99-b7ff-468b9a169214" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 53F7DB10CBCE46C5ABE3B609582A7853 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "225dd0a4-08c0-48c9-bb33-b70eb84a0cae" ], + "X-AspNet-Version": [ "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/a64de768-1858-4150-ba7e-19d17727c803" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "efeacc95-cd72-4e02-a2a6-852c3e558c60" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032515Z:efeacc95-cd72-4e02-a2a6-852c3e558c60" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8434D995E10449CEA52673572F1033DF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "526d543e-f775-45c7-9e69-eec9dee0d1f8" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e6a46193-277f-40a8-bec1-d04f81daeca3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c66331e-925a-478d-a024-dec4246d5754" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032545Z:2c66331e-925a-478d-a024-dec4246d5754" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 18501BC0A30F4D2295A196022826DDFC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:45Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "526d543e-f775-45c7-9e69-eec9dee0d1f8" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f84a81ce-a609-4a05-ad2b-273f6063fee2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e8960a62-7ef0-4768-888a-bfbcdda9ae30" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032546Z:e8960a62-7ef0-4768-888a-bfbcdda9ae30" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B5B7EE98E13468782F290582DB0095E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:46Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "198" ], + "x-ms-client-request-id": [ "8326ecac-71c8-444f-8caf-0f08e2b6582f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "53a8ebe9-c446-434b-8e06-6ceba37307b5", "e72ef844-c1c5-45d7-aeea-ca07ba821712" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "4d24ab17-766e-4195-be0f-0ea2526caaf9" ], + "x-ms-correlation-request-id": [ "4d24ab17-766e-4195-be0f-0ea2526caaf9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032546Z:4d24ab17-766e-4195-be0f-0ea2526caaf9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0637F2F3313040458E6D6BA3913A105F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:46Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "ce624105-d548-4e79-bba1-79223e55289e" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ebe52947-9961-41fa-8fab-7b973ad40f92" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/41f478af-8e2c-4fb7-945e-02b4532d26bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7244d0ad-b6ea-47df-9d59-7496f94484a1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032547Z:7244d0ad-b6ea-47df-9d59-7496f94484a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B98377EE39DA4E48BC0B1EE8D01915B0 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:47Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:46 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e31cb6c-901e-000f-52f1-518f6d000000\\nTime:2025-11-10T03:25:47.4324195Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE2008D77CF06B\"" ], + "x-ms-request-id": [ "ca4d2ce4-876a-4f57-90bf-c6b28693c63d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/df9d6c74-f100-46d4-a94c-44b3d40383cc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "34c531bf-6ceb-43e5-a365-39b8457c579f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032548Z:34c531bf-6ceb-43e5-a365-39b8457c579f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C0DF8B6885394E91AFAC1AAFAE4DB321 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:47Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "471" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525?api-version=2018-11-30+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525?api-version=2018-11-30", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "480b2089-9a4c-43e4-a77f-570e5725693a" ], + "CommandName": [ "Get-AzUserAssignedIdentity" ], + "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "f54ef985-64df-4804-8bd2-1d76bb72d381" ], + "x-ms-correlation-request-id": [ "f54ef985-64df-4804-8bd2-1d76bb72d381" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032548Z:f54ef985-64df-4804-8bd2-1d76bb72d381" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 264F6BEF723E40BFB8B0B7DF52DA38A2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "472" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\",\"name\":\"my-app-identity-112525\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"fa7e8b06-aabb-4708-b96d-0886db147694\",\"clientId\":\"25fa2586-8f2b-4d99-b773-bff913146111\"}}", + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "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": [ "202" ], + "x-ms-client-request-id": [ "3647f429-ec35-4b07-8220-1db2e7280bfe" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "610e9856-0ef5-488e-b0cf-83cc3745a2a9", "fb7dded6-8764-491e-98ca-e32b05904c1e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "0e62254e-b8d1-4023-98b5-161e1cd49140" ], + "x-ms-correlation-request-id": [ "0e62254e-b8d1-4023-98b5-161e1cd49140" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032549Z:0e62254e-b8d1-4023-98b5-161e1cd49140" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8B7A8CCB160A41E29880406E987CF69B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:48Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "c454df3c-2f82-4c0a-b2c5-1a50163fb1e1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ba510ae8-5932-4be6-a7e3-9ab3b67be46f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/98dfd2c4-e6d9-4c03-9cab-815b59152d18" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "493dc5c5-07a9-4d44-af99-1147d5a456a7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032549Z:493dc5c5-07a9-4d44-af99-1147d5a456a7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 13E454BA281E4EF895FC2EB5B03C51E6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:49Z" ], + "Date": [ "Mon, 10 Nov 2025 03:25:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ZttGCwj1QA0CGPJvk+S6wsBB9AmUj/UXtZg1YT5VHEZGAh2cMTprCDIjm7NBjeiaBxB1R+F9fi5d+AStUv/p2w==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2015-05-01+11": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/a8c1d993-a3cb-4c44-821c-7681c9f62964" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "395e063a-76d5-47ec-87bd-13a0d425641f" ], + "x-ms-correlation-request-id": [ "395e063a-76d5-47ec-87bd-13a0d425641f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032604Z:395e063a-76d5-47ec-87bd-13a0d425641f" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B7EE67DE0816438DB52F1CA3B5348E58 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:25:49Z" ], + "Date": [ "Mon, 10 Nov 2025 03:26:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1708" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e90262b0-0000-0200-0000-69115b4c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-112525\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-112525\",\r\n \"AppId\": \"c55742d2-f9b6-4919-905d-ede0f24cf019\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ae68082e-f12d-4b86-98d3-e7ecebdcf80e\",\r\n \"ConnectionString\": \"InstrumentationKey=ae68082e-f12d-4b86-98d3-e7ecebdcf80e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c55742d2-f9b6-4919-905d-ede0f24cf019\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-112525\",\r\n \"CreationDate\": \"2025-11-10T03:25:51.9492682+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-1125_c55742d2-f9b6-4919-905d-ede0f24cf019_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-112525-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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://funcappflexsa112525power.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ae68082e-f12d-4b86-98d3-e7ecebdcf80e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c55742d2-f9b6-4919-905d-ede0f24cf019\"\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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\": {\r\n }\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2114" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F1C1C5B4C0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e94b9850-f790-4870-aee0-4499525698ca" ], + "X-AspNet-Version": [ "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/08c42eb0-4376-4a79-b806-6164fd96b3e7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "dbc2ec24-d36c-47a3-a9ad-9cc38a1faa4c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032630Z:dbc2ec24-d36c-47a3-a9ad-9cc38a1faa4c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6EA9DB3A582542EEB1DB33255A21E760 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:26:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:26:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10209" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:26:08.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\",\"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-112525\",\"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-Pwsh-UserAssignedIdentity-112525\\\\$Functions-Pwsh-UserAssignedIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112525.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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\":{\"principalId\":\"fa7e8b06-aabb-4708-b96d-0886db147694\",\"clientId\":\"25fa2586-8f2b-4d99-b773-bff913146111\"}}}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "a618e2ae-ff41-4009-9a74-41b27011c558" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F1CDEE7FC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "fde608e0-38d5-4e4c-ade4-67f909bbb22c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d20d2cdc-4a12-4764-81f7-922e57721927" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032700Z:d20d2cdc-4a12-4764-81f7-922e57721927" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94D7C0B6190F41B49E79B317EFC76154 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:00Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:26:29.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\",\"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-112525\",\"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-Pwsh-UserAssignedIdentity-112525\\\\$Functions-Pwsh-UserAssignedIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\":{\"principalId\":\"fa7e8b06-aabb-4708-b96d-0886db147694\",\"clientId\":\"25fa2586-8f2b-4d99-b773-bff913146111\"}}}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "faee8df6-fd47-4635-b95b-521ca6e995f5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F1CDEE7FC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "65ef8780-e89d-49c2-bff5-15f29d1ffe04" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "42bd5305-6d5a-43f1-9194-0c2070878198" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032701Z:42bd5305-6d5a-43f1-9194-0c2070878198" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EF3A54922ED749E0843EBEE7000274EE Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:26:29.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\",\"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-112525\",\"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-Pwsh-UserAssignedIdentity-112525\\\\$Functions-Pwsh-UserAssignedIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\":{\"principalId\":\"fa7e8b06-aabb-4708-b96d-0886db147694\",\"clientId\":\"25fa2586-8f2b-4d99-b773-bff913146111\"}}}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "a98babd7-bf3d-4bba-8a34-5320ddc11c82" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f020bfcb-5cfc-4446-ba15-f5fb7eda1491" ], + "X-AspNet-Version": [ "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/55450a02-044d-46ff-b977-c7932c04009e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "1ac68d42-962b-4aab-9d52-51c253b077db" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032701Z:1ac68d42-962b-4aab-9d52-51c253b077db" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B1FCB136AB7A4ADDAEED36C7C2B7F972 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ae68082e-f12d-4b86-98d3-e7ecebdcf80e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c55742d2-f9b6-4919-905d-ede0f24cf019\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "46df842b-dab4-4a8a-9156-ba0e0a015c56" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b0d97bf6-5ad4-4dda-a095-7f4603388c03" ], + "X-AspNet-Version": [ "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/ed445284-5195-49e4-97a8-616b420e0d38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "98ec5183-ac1e-4fa5-892f-e9c1a971ae24" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032702Z:98ec5183-ac1e-4fa5-892f-e9c1a971ae24" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C0D68ADD343543159F522DC7D5F8AAB9 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4188" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"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\":33271,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all 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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "71845e56-9ca2-409e-8147-c9a3efdae3cd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0223507c-5dbe-4486-a211-062cf79e61b9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "488bc1ca-4343-464d-8ed7-fde74af6065c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032702Z:488bc1ca-4343-464d-8ed7-fde74af6065c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D893E307553A4F04ABE52A37BCE5E9AC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:02Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "0fea5028-d7f6-43b9-bd46-de41d0267d43" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b3e3cf9f-4d46-4ed7-a985-cd5cc41989d3" ], + "X-AspNet-Version": [ "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/60fe2179-b6db-4ea5-9d04-89f17cb03dd3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "98af8ed8-8a09-401b-8db2-c0cfde59ddd0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032702Z:98af8ed8-8a09-401b-8db2-c0cfde59ddd0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A07826A399AD40FD906C3BBEFD907D36 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:02Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ae68082e-f12d-4b86-98d3-e7ecebdcf80e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c55742d2-f9b6-4919-905d-ede0f24cf019\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "44fbbb15-0495-4aaf-a4cc-54ee5dc65f81" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F1CDEE7FC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "30aed28b-c1df-47c9-9c25-af4a7768343a" ], + "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": [ "37945162-3ff4-4b04-bc90-43860de10021" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032703Z:37945162-3ff4-4b04-bc90-43860de10021" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A9C9AAE527494BBEBF8F5AA253E845B7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "10186" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Pwsh-UserAssignedIdentity-112525\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"functions-pwsh-userassignedidentity-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:26:29.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\",\"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-112525\",\"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-Pwsh-UserAssignedIdentity-112525\\\\$Functions-Pwsh-UserAssignedIdentity-112525\",\"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-112525\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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-112525/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-app-identity-112525\":{\"principalId\":\"fa7e8b06-aabb-4708-b96d-0886db147694\",\"clientId\":\"25fa2586-8f2b-4d99-b773-bff913146111\"}}}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "4bd08b0d-2b71-4f89-a6e3-407023110d27" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1c9946f9-a4fe-4f87-8855-ab53bb5c73d3" ], + "X-AspNet-Version": [ "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/5cf436e8-a64f-4aa8-9cdd-c1b47ed4f9e6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c98f47de-bce5-49d4-a926-39aaba0e5ffe" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032703Z:c98f47de-bce5-49d4-a926-39aaba0e5ffe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 71671517445E4214A15883D1BC1F4C5F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "796" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ae68082e-f12d-4b86-98d3-e7ecebdcf80e;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=c55742d2-f9b6-4919-905d-ede0f24cf019\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/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-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "6ba0e03e-43a9-48b5-94fd-5e9f364c67d8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cb28998c-486f-4435-8675-3fa7275017f6" ], + "X-AspNet-Version": [ "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/ba608d05-258a-4415-94ff-06f3f5fd8b6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a16e5e8e-4277-4163-a66b-cb85c14fc04b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032704Z:a16e5e8e-4277-4163-a66b-cb85c14fc04b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D69F84C5FBB3444DBD3C42573C203121 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4188" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-112525\",\"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\":33271,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all 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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "ee7ec494-9b78-4eec-85a6-e8c29d4d9e8c" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F1CDEE7FC0\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8c8d1abc-1f5a-46f2-b913-bf1ba36756fa" ], + "X-AspNet-Version": [ "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/6d499351-6b74-4628-8b5e-8806bebcfc55" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "d05d7b8e-f16f-40e1-96e2-44894bdc0047" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032723Z:d05d7b8e-f16f-40e1-96e2-44894bdc0047" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2B03B30C43184418A39CB3A49CB10286 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:23 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-PS-CustomConfig-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "69" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1259fe12-9371-49fa-a259-398e6ef71423" ], + "X-AspNet-Version": [ "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/2e67f6bb-7671-4f56-a307-f30edf29f776" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ceed4625-25d9-470b-85b6-e73326330c38" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032725Z:ceed4625-25d9-470b-85b6-e73326330c38" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AEF020CB734845918FF2E46D723DD7F6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:24Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9cd1f280-d840-40ac-84e8-7750287dd22f" ], + "X-AspNet-Version": [ "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/9fbeb249-ab43-4e8a-9745-5b227429ce16" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "caae1372-1dde-42bd-b3a9-4b19407891cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032729Z:caae1372-1dde-42bd-b3a9-4b19407891cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 26A8684ACF9B46EF8B5CAA6AB545CBA2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:25Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "b0d97e8d-aacc-4946-a703-e404afeb514b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "37ee67e1-cf05-40df-9e37-aeb2e9f6851d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3191ace4-1bfc-43e4-9790-48f90147c0bb" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032759Z:3191ace4-1bfc-43e4-9790-48f90147c0bb" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9B293C8CB58343E5B06C4F69C14C2AB5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:59Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "b0d97e8d-aacc-4946-a703-e404afeb514b" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "63e67ecc-f3b6-4a6b-84e7-8238c0d6209c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7cb4f579-c29a-4665-8859-c03385ffc37a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032800Z:7cb4f579-c29a-4665-8859-c03385ffc37a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8F1BD87300B646A2BCCB7C92959F0852 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:27:59Z" ], + "Date": [ "Mon, 10 Nov 2025 03:27:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "221" ], + "x-ms-client-request-id": [ "6d0c8143-84d2-41ad-a92a-5047d5774577" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "0e17aa75-2de6-4390-9496-d5805ea95ba4", "27fdab8b-3be5-4554-b80c-8ea4e05de96b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0a3b922c-079f-4493-aa90-b7ceeff5a0dd" ], + "x-ms-correlation-request-id": [ "0a3b922c-079f-4493-aa90-b7ceeff5a0dd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032800Z:0a3b922c-079f-4493-aa90-b7ceeff5a0dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AC9B400A8A924E9DB9665ABB9612A57E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:00Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspscustomconfig112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspscustomconfig112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "06f074df-ebe1-4e8f-a9b4-14e07a00745a" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "62baf5f8-8778-460f-b48d-6e4d15cede9f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/06b7588a-f20e-4a25-b9a6-afc82dc99c0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c286e105-b629-4344-8469-d3ee353727c7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032801Z:c286e105-b629-4344-8469-d3ee353727c7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9A8D328ABAFD409C8B3F8F9D7C7FC4B1 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2e325c46-901e-000f-10f2-518f6d000000\\nTime:2025-11-10T03:28:01.3580986Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspscustomconfig112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspscustomconfig112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE200927568950\"" ], + "x-ms-request-id": [ "cd350960-397b-4f8a-99f2-6881e5872b17" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fd7b3940-b701-475c-9baa-ec69c7123e07" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "d4b42724-a840-4f6c-850a-499bf84767cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032802Z:d4b42724-a840-4f6c-850a-499bf84767cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6C0007F2443241BE92E0767F44E069BC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:01Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "465" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/blobServices/default/containers/app-package-functionspscustomconfig112525-0000000\",\"name\":\"app-package-functionspscustomconfig112525-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 custom tags and app settings+$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": [ "224" ], + "x-ms-client-request-id": [ "19280401-ecdc-4875-8305-396e68dc8c02" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "15322e3d-8dd6-4d09-996f-b4fc78a43115", "5d92239d-65cc-402c-bb59-1c0b9d5c9cbd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "5e75ffab-2698-4e82-bada-6e952c797489" ], + "x-ms-correlation-request-id": [ "5e75ffab-2698-4e82-bada-6e952c797489" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032802Z:5e75ffab-2698-4e82-bada-6e952c797489" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 08655ACA7892444BBAEC9E268C1E0268 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:02Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "6cf0b9eb-4cd7-4109-b0c2-e67a3c83ef2e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "58fbeac0-2aca-480a-aa54-5de25fa7ee80" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1730e537-1cce-4727-8757-c8aee680583e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7abbd986-4c6b-4ba0-b675-86861185b3cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032803Z:7abbd986-4c6b-4ba0-b675-86861185b3cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0D4CB9F688DC43EEA37441F8EA9FC6CF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ZttGCwj1QA0CGPJvk+S6wsBB9AmUj/UXtZg1YT5VHEZGAh2cMTprCDIjm7NBjeiaBxB1R+F9fi5d+AStUv/p2w==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "226" ], + "x-ms-client-request-id": [ "212b8695-fb17-4482-9afb-b431d1cf7608" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "42dcfb52-06a1-45c7-9553-6a5d206387b9", "26f507ea-e628-48c8-a094-018930965192" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "cc848c66-af5a-46b2-ba50-a03e724ce36a" ], + "x-ms-correlation-request-id": [ "cc848c66-af5a-46b2-ba50-a03e724ce36a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032804Z:cc848c66-af5a-46b2-ba50-a03e724ce36a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 783BDF39DD5E4B3DB678643ADE85873A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:03Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "54844f27-02dd-438e-82bc-a82810a2cc98" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "19488aab-5d22-4c16-b4d9-b46fd40423be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ff017ea-b1ba-4812-8f86-63c3df5d5d6a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a9967a4f-ddcc-4f2c-8f02-f4f2c2414934" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032804Z:a9967a4f-ddcc-4f2c-8f02-f4f2c2414934" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BA61FC18E0AB41008D22CFD322CCBA35 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"ZttGCwj1QA0CGPJvk+S6wsBB9AmUj/UXtZg1YT5VHEZGAh2cMTprCDIjm7NBjeiaBxB1R+F9fi5d+AStUv/p2w==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112525?api-version=2015-05-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-112525?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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "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/eastasia/fe996d54-2531-4d49-8ec5-0d796d877751" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "2252798c-07d8-42a0-a07d-5bb2e2aea1fa" ], + "x-ms-correlation-request-id": [ "2252798c-07d8-42a0-a07d-5bb2e2aea1fa" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032817Z:2252798c-07d8-42a0-a07d-5bb2e2aea1fa" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 76F2C6A591F941F99D3214080026E1A4 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:04Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1650" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"e90213b3-0000-0200-0000-69115bd10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/microsoft.insights/components/Functions-PS-CustomConfig-112525\",\r\n \"name\": \"Functions-PS-CustomConfig-112525\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-112525\",\r\n \"AppId\": \"28961ace-cff0-4baa-aab5-10b1f885a908\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1245c515-5448-4d26-b144-df5112f17283\",\r\n \"ConnectionString\": \"InstrumentationKey=1245c515-5448-4d26-b144-df5112f17283;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=28961ace-cff0-4baa-aab5-10b1f885a908\",\r\n \"Name\": \"Functions-PS-CustomConfig-112525\",\r\n \"CreationDate\": \"2025-11-10T03:28:06.8973206+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-112525_28961ace-cff0-4baa-aab5-10b1f885a908_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-112525-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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspscustomconfig112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=1245c515-5448-4d26-b144-df5112f17283;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=28961ace-cff0-4baa-aab5-10b1f885a908\"\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}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2292" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F21042FCF5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3521529e-0c34-45d8-bc3e-dcdeabd60e24" ], + "X-AspNet-Version": [ "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/12380c36-0758-4480-a593-4333ad653b22" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "bb4621c7-bf86-4d45-988a-c6da087148b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032842Z:bb4621c7-bf86-4d45-988a-c6da087148b0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6248E4C77C654FC68642A92EBF505677 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:28:18Z" ], + "Date": [ "Mon, 10 Nov 2025 03:28:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9747" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525\",\"name\":\"Functions-PS-CustomConfig-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-PS-CustomConfig-112525\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\",\"functions-ps-customconfig-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:28:20.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\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://funcappflexsa112525power.blob.core.windows.net/app-package-functionspscustomconfig112525-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-112525\",\"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-112525\\\\$Functions-PS-CustomConfig-112525\",\"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\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-112525\",\"defaultHostName\":\"functions-ps-customconfig-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "aefc198a-5a61-4a1c-b6a4-8ce1816162f2" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F21CED7B15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ffc88233-6503-4bf6-8f69-2babd992cf2d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "471febb0-b42f-4bdc-8cdf-b0379e3e839b" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032913Z:471febb0-b42f-4bdc-8cdf-b0379e3e839b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A21CA73C6C10431B9417699DF0031749 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525\",\"name\":\"Functions-PS-CustomConfig-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-PS-CustomConfig-112525\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\",\"functions-ps-customconfig-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:28:42.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\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspscustomconfig112525-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-112525\",\"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-112525\\\\$Functions-PS-CustomConfig-112525\",\"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\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-112525\",\"defaultHostName\":\"functions-ps-customconfig-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "6bf93367-c054-4e50-a500-12b40187c964" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F21CED7B15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e9d780b2-9b05-4ab8-90e9-e980a836d8a6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b04c72cf-fe9a-4fde-8924-c913d75d65b2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032914Z:b04c72cf-fe9a-4fde-8924-c913d75d65b2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BADCA73BD24E42C6AD3CEAFBA06DBA1C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525\",\"name\":\"Functions-PS-CustomConfig-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-PS-CustomConfig-112525\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\",\"functions-ps-customconfig-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:28:42.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\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspscustomconfig112525-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-112525\",\"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-112525\\\\$Functions-PS-CustomConfig-112525\",\"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\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-112525\",\"defaultHostName\":\"functions-ps-customconfig-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "40d1e9f8-6354-4d43-9120-7c620bdf3f6b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "900d7a6e-09ae-4f71-82b1-e76dccb758e1" ], + "X-AspNet-Version": [ "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/0184ada9-70b5-49cb-bbec-78eef78ccd84" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "381b9b92-0c88-4875-8c3a-f83ad1cc6aa5" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032914Z:381b9b92-0c88-4875-8c3a-f83ad1cc6aa5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FB98CC55DED849A188E9FC1FA75522AB Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1245c515-5448-4d26-b144-df5112f17283;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=28961ace-cff0-4baa-aab5-10b1f885a908\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "83858676-a2f0-47e9-8ff6-028cb7c5b204" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "35f5d624-a517-49c9-8b20-cdf88fa18fd7" ], + "X-AspNet-Version": [ "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/5c717ae2-14b1-4a25-ac28-4472ba5d561c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "960ee622-8759-4b0b-ad46-70c19d1ffcb8" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032914Z:960ee622-8759-4b0b-ad46-70c19d1ffcb8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9035A6C1D1FE464E81A453065A81C1CF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4246" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/web\",\"name\":\"Functions-PS-CustomConfig-112525\",\"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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "4a2a79b0-becb-404b-92d1-e28a2f7f0bd2" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "fcadea92-a91b-4c49-8662-f890ba2c2045" ], + "X-AspNet-Version": [ "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/a6306a4f-3582-4672-b420-b3591ae7d5c0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "8e3a80c5-48aa-4229-9727-f13678a781cf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032915Z:8e3a80c5-48aa-4229-9727-f13678a781cf" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 394853D1C2494E2BBEC16D8E12A3778D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:15Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1245c515-5448-4d26-b144-df5112f17283;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=28961ace-cff0-4baa-aab5-10b1f885a908\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "60ec7de8-e9ae-42f4-9c02-3eb4fe1d7084" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "8a877839-800a-4bde-8bec-a58e94fe7a02" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6f5ac04f-f71c-417b-b278-d4b3b9744c09" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032916Z:6f5ac04f-f71c-417b-b278-d4b3b9744c09" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 755BDBFEF737495CAE6816F2C2951B87 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:15Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "c422e1df-496e-41da-8061-fb583a3fc8c8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F21CED7B15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "17ea39d5-4954-4dfe-97a5-7c3e6f8c5621" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b53c57ac-4814-4e71-92e9-bcca64c9f546" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032916Z:b53c57ac-4814-4e71-92e9-bcca64c9f546" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED7032C8954742CAA9E36D287BD58B4E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:16Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525\",\"name\":\"Functions-PS-CustomConfig-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-PS-CustomConfig-112525\",\"repositorySiteName\":\"Functions-PS-CustomConfig-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-112525.azurewebsites.net\",\"functions-ps-customconfig-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:28:42.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\":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://funcappflexsa112525power.blob.core.windows.net/app-package-functionspscustomconfig112525-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-112525\",\"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-112525\\\\$Functions-PS-CustomConfig-112525\",\"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\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-112525\",\"defaultHostName\":\"functions-ps-customconfig-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "0b2fb33e-d058-41d9-b7dc-664a3955577b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "33390cad-a615-4766-a896-1a69de573262" ], + "X-AspNet-Version": [ "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/fe9f3ef0-3e01-4d0c-b209-e3e83d3c9649" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "42558312-0cf9-49c2-a206-252024a867bd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032917Z:42558312-0cf9-49c2-a206-252024a867bd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A161184FD030486C89222F9A219F8ABE Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:16Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1158" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525power;AccountKey=WJfrwIh2TiJoiP3L7GjrSiCiaBlTFafUng5cNUKXkEjiQu41v4ClKVF56iGnjlcLLHIHkAbDeMNR+AStkLOJhQ==;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=1245c515-5448-4d26-b144-df5112f17283;IngestionEndpoint=https://eastasia-0.in.applicationinsights.azure.com/;LiveEndpoint=https://eastasia.livediagnostics.monitor.azure.com/;ApplicationId=28961ace-cff0-4baa-aab5-10b1f885a908\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/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-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "65595fd1-7d35-4995-8814-53b5162ec482" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c0635309-e257-4d9d-8251-a2d813922ef9" ], + "X-AspNet-Version": [ "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/3296d101-8b3c-4e0c-ba73-9eab0100197a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "272d9f68-a2dc-4f0a-84d8-0e02b8669910" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032917Z:272d9f68-a2dc-4f0a-84d8-0e02b8669910" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 030B3379CA6A4F7E84726FEC10C23DAF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:17Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4246" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525/config/web\",\"name\":\"Functions-PS-CustomConfig-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "97135393-d490-43ea-a316-edd6eda9bd0c" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F21CED7B15\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "31545108-c66c-4caf-b2d6-929a6f710d1b" ], + "X-AspNet-Version": [ "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/d3e096f6-17c3-4d52-81cd-fd7d269e5e80" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "829baa4d-b4cc-4cfb-87db-e043ca1ffd9f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032934Z:829baa4d-b4cc-4cfb-87db-e043ca1ffd9f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DE3B2047A9AF4A63BDCB2FC2DE7A5696 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:17Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:33 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": 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/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-Java-NoAppInsights-112525\",\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": [ "2924739c-068f-4922-b127-eca274f5897b" ], + "X-AspNet-Version": [ "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/8fe9a321-fcb8-410a-a5e0-f767dbae6ffa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3ed9ae38-15e1-452a-ae99-fbf1933dc849" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T032935Z:3ed9ae38-15e1-452a-ae99-fbf1933dc849" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F96D177E166E409C95BEF4FDBBC92B13 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "212" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "da8da312-8513-437c-a99a-5f13e49cbecc" ], + "X-AspNet-Version": [ "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/6d2dcee5-68bb-418f-b69d-bf4aaefd4343" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "a25ad245-eaa6-491f-afe4-59d3fdbd53c0" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T032939Z:a25ad245-eaa6-491f-afe4-59d3fdbd53c0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AAAD301F12544F6FAC8D8C15D0EC2877 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:29:35Z" ], + "Date": [ "Mon, 10 Nov 2025 03:29:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1908" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-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-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "c73b9b84-7079-47e0-80d8-20bf5f9d4afe" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "619b6ed3-09c7-42b8-8f8e-fbf46271a0f5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1d5f9911-f791-4398-abf6-31b03e020664" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033009Z:1d5f9911-f791-4398-abf6-31b03e020664" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6C3199F315764590A1CC9D082B258E1F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:09Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "c73b9b84-7079-47e0-80d8-20bf5f9d4afe" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], + "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d6fbcbda-c4c0-4039-a32e-627933cf2ca0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d73f5679-ddb8-40ca-bf10-056e55cb86cd" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033010Z:d73f5679-ddb8-40ca-bf10-056e55cb86cd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 27F46888037947E1BC340B8984FC09B5 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+5": { + "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": [ "245" ], + "x-ms-client-request-id": [ "41fe5a4c-4e44-401a-836e-ba9ded5e16a6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "2cc8ce1e-72b1-41bd-aa01-cb35d3b9cc53", "3bf0ee17-8843-4dca-b32f-650accf5dc21" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "69b042a6-a4d3-45ac-be66-0b27da9208c0" ], + "x-ms-correlation-request-id": [ "69b042a6-a4d3-45ac-be66-0b27da9208c0" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033011Z:69b042a6-a4d3-45ac-be66-0b27da9208c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94EA22BA2FF5475E9A171A5B069AD1C1 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsjavanoappinsights112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsjavanoappinsights112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "3a7ec00f-8580-4641-b918-011458ccf0be" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "b88f5234-971c-423c-a332-8b402a655415" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e97215e5-f137-46d1-9b93-e07c6cd583f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e25ef722-3a57-4850-b7c2-5f05d12c744c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033011Z:e25ef722-3a57-4850-b7c2-5f05d12c744c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FF83751B80B14240AE7A4FC105EB0020 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:7ba32639-401e-0074-5df2-515459000000\\nTime:2025-11-10T03:30:11.6408968Z\"}}", + "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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsjavanoappinsights112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsjavanoappinsights112525-0000000?api-version=2019-04-01", + "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "56" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0x8DE200974EBF8BB\"" ], + "x-ms-request-id": [ "f78efd01-47ca-4564-bf0d-cd06167c9a2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a2733029-ad2f-4586-8f7e-65a05269148a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "cd5b81f5-743e-4c81-a46c-5e4c50aec5a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033012Z:cd5b81f5-743e-4c81-a46c-5e4c50aec5a4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1DDB0E28817241B89FFDF417366F5653 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "470" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/blobServices/default/containers/app-package-functionsjavanoappinsights112525-0000000\",\"name\":\"app-package-functionsjavanoappinsights112525-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":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/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": [ "248" ], + "x-ms-client-request-id": [ "b003df34-29b9-4ca4-a07a-31cf1dc1f5e1" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "f7582004-7081-4056-86df-bc3aa507aede", "752a52b5-3c75-4bb1-9f95-521710a169e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "09eaa8fe-15aa-4adb-ba3b-ad913aa127e2" ], + "x-ms-correlation-request-id": [ "09eaa8fe-15aa-4adb-ba3b-ad913aa127e2" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033012Z:09eaa8fe-15aa-4adb-ba3b-ad913aa127e2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 126E6D18DBD448AE87D7D42BF44E1FED Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "4a4d0ad2-678a-427e-99dd-b19890b9c52b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "17f32bbe-f672-43f5-8edf-bffa16f0a035" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ce9f83b-2496-4ce6-8b56-a77976269dc6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd977b9e-677f-45dd-a063-856375c44dc3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033013Z:bd977b9e-677f-45dd-a063-856375c44dc3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CE31D20D5FC84E539BEA0C84B29DA06A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"w/tfZRpd/NST0hA8VzGcjLV5368xhgsLWNPZwDw/skEc2SfZzh+iU9s2+0pL758tIH55HicTdP37+ASt9K55cA==\",\"permissions\":\"FULL\"}]}", + "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/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": [ "250" ], + "x-ms-client-request-id": [ "a9413238-f117-4c72-999c-3b5cb9f52c6d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c6b01184-7831-49cd-8809-3b525a9bc27d", "f60750db-5442-4539-be50-4aa3e357c3cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "105436ae-8233-4c6a-a409-ac28e929ee9c" ], + "x-ms-correlation-request-id": [ "105436ae-8233-4c6a-a409-ac28e929ee9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033014Z:105436ae-8233-4c6a-a409-ac28e929ee9c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D9D6990C6E3B4469997AF7AE567F7FD6 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "a4fba228-8a3e-4e66-875e-16554379e06e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "3f1509d1-3869-45fd-9080-3e1ab91dd35b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a40475ed-9dd4-4b52-8286-c68dad4bc178" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "76e5c92d-7224-409e-b0e6-2e7ede835ad6" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033014Z:76e5c92d-7224-409e-b0e6-2e7ede835ad6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF5D553D98C14C2591BDC29C6337DAFC Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"w/tfZRpd/NST0hA8VzGcjLV5368xhgsLWNPZwDw/skEc2SfZzh+iU9s2+0pL758tIH55HicTdP37+ASt9K55cA==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01+12": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsjavanoappinsights112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1650" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F2567CE4B5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6293e66b-7ca3-46cd-8461-28eff889a0f5" ], + "X-AspNet-Version": [ "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/3186014c-b562-4f42-acb3-46eb3e1d990a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "f5ca15cc-750b-4947-83f3-7fc71b66ef2c" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033040Z:f5ca15cc-750b-4947-83f3-7fc71b66ef2c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EE0599F7C8914F94A2637F5D40C6C00D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:30:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:30:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9638" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Java-NoAppInsights-112525\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\",\"functions-java-noappinsights-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:30:18.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsjavanoappinsights112525-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-112525\",\"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-112525\\\\$Functions-Java-NoAppInsights-112525\",\"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-112525\",\"defaultHostName\":\"functions-java-noappinsights-112525.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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "d9bd9f88-5907-4fd4-b4fd-e807ccad6760" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F2630EF8D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "fab6a806-382e-4f3d-bfe1-a84f77b69618" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "56724443-1f41-4ca8-a325-c92991f15c70" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033111Z:56724443-1f41-4ca8-a325-c92991f15c70" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3116E02F41204698A718B3737E5F27AF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:10Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9615" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Java-NoAppInsights-112525\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\",\"functions-java-noappinsights-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:30:40.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsjavanoappinsights112525-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-112525\",\"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-112525\\\\$Functions-Java-NoAppInsights-112525\",\"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-112525\",\"defaultHostName\":\"functions-java-noappinsights-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01+14": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "a16c7a66-d004-4858-8e88-1ef885259aff" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F2630EF8D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4b9dd8fc-dc08-4b86-a70f-342f5cf6419f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7603d230-36b5-4069-bd15-ed5159b00130" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033111Z:7603d230-36b5-4069-bd15-ed5159b00130" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E2255890344840A0BF1433ACAE0FCCBD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9615" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Java-NoAppInsights-112525\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\",\"functions-java-noappinsights-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:30:40.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsjavanoappinsights112525-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-112525\",\"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-112525\\\\$Functions-Java-NoAppInsights-112525\",\"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-112525\",\"defaultHostName\":\"functions-java-noappinsights-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "67b3fa56-0325-4043-852a-4632eaf4d45f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "dc93e86d-a759-4d9e-891d-45875033e6aa" ], + "X-AspNet-Version": [ "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/ea6bfbd8-b4f4-4c4f-a5ae-4881da589395" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b75dadde-5e18-4ca2-bc50-4cb497991e37" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033111Z:b75dadde-5e18-4ca2-bc50-4cb497991e37" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 337E1FCB4AC04CCDAD72359556FDB75D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:11Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "743" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "fd2b7e18-52db-4361-b79e-0681c8cfcaef" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "5daa7611-5b06-4207-9218-c72c28aa5855" ], + "X-AspNet-Version": [ "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/a9d543a4-00c9-4a6e-b220-a52ad4b5944d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1503d0c4-60d2-4dda-9fe8-da8547f0a64a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033112Z:1503d0c4-60d2-4dda-9fe8-da8547f0a64a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F5FE92CE672242C6A9A57BD73BAB69E3 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/web\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "75112c1b-0791-41c7-ae2e-1de3a272c784" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f4bca475-efa7-4574-aa81-0f98bc7fe5f1" ], + "X-AspNet-Version": [ "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/32d295d9-4cd1-445e-88a8-1ce91c465bc9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e53b5230-e03b-4e34-a54b-ed7b1f09c87f" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033112Z:e53b5230-e03b-4e34-a54b-ed7b1f09c87f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4E88CE9606194D14907D6E15DBDDB466 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:12Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "743" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "d42c294c-3cbd-4bab-acfd-a67ba81765a6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "927a6462-ad06-4e84-a4fd-3a56f8931871" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b88c8f10-0377-4921-ba53-6507f5c0398d" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033113Z:b88c8f10-0377-4921-ba53-6507f5c0398d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B6E5C3702BAF4160AAA892BB5E19E8B9 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52016,\"name\":\"ASP-FunctionsFlexRG112525-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-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\":0,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-112525\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52016\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-10T03:07:58.5966667\",\"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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "b3f46776-fcbd-428a-b0d4-5fac44a4259e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F2630EF8D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e76d1e41-a943-4b54-8981-7ea1a9ea23cc" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "09572f48-5b16-4519-919c-1776d3d40ba7" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033113Z:09572f48-5b16-4519-919c-1776d3d40ba7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 73832A94594645E0919709B3FAF6A56D Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:13Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9615" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-112525\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\"],\"webSpace\":\"flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-65a2994081c706858371c4570a6cddade3f6e74a5da2f9d9de2996d87c8bbfed-webspace/sites/Functions-Java-NoAppInsights-112525\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-112525\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-112525.azurewebsites.net\",\"functions-java-noappinsights-112525.scm.azurewebsites.net\"],\"siteProperties\":{\"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-112525.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-112525.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-112525/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG112525-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-10T03:30:40.0133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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://funcappflexsa112525java.blob.core.windows.net/app-package-functionsjavanoappinsights112525-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-112525\",\"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-112525\\\\$Functions-Java-NoAppInsights-112525\",\"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-112525\",\"defaultHostName\":\"functions-java-noappinsights-112525.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", + "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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "1b0f56c7-33e8-4867-a52a-058f6c836dee" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0a09bdf9-7f62-4e5d-a688-c309ff28cb2f" ], + "X-AspNet-Version": [ "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/3e7a9337-7e45-4018-9d6f-5550f1e7c4e2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "81154461-d5cf-4fd9-b2ea-b2b68b456ff9" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033114Z:81154461-d5cf-4fd9-b2ea-b2b68b456ff9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CB646459BA1448F6AA461E17EE35CF7A Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "743" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=funcappflexsa112525java;AccountKey=+hr4Gk+RziK7FIhL0s9aZNYsogogWT2A+nd5r3d/+foR9miL2NJsSspVWh4wbsxM/mL/4OG98s3f+ASt+r22Yg==;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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/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-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "4d5b3246-c431-4795-8173-863b11991973" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b488bebe-a768-416c-9e56-d4ab93508f52" ], + "X-AspNet-Version": [ "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/18aefd03-f2b3-4fbf-a044-abf372feb66f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2a47a4f2-823a-4595-86d5-223fc4b9ae24" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033114Z:2a47a4f2-823a-4595-86d5-223fc4b9ae24" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3B38811AB59748AC98263B8D5A18F02B Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525/config/web\",\"name\":\"Functions-Java-NoAppInsights-112525\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+22": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-112525?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "db84d30c-6ec9-41d7-9f53-ff1dd4709291" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC51F2630EF8D5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9dc6f0ee-9bab-4404-bc5c-e56a0007f439" ], + "X-AspNet-Version": [ "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/c4a89f43-aa43-4576-a9b5-b234c5f15a35" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "861ac2cc-a9bc-4c37-ab67-1410f943f368" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033131Z:861ac2cc-a9bc-4c37-ab67-1410f943f368" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 11CD543DF4A74A62BC25FEE16F36320C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:14Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:31 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "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/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-DotNet-WhatIf-112525\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "67" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e54489cc-a2c0-4b87-9a98-bb45e68e7d56" ], + "X-AspNet-Version": [ "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/7a1ae9ba-9861-4afc-8fdb-d3d84fb70ea5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "18717ed4-1273-4807-87e8-050f6b5ca5f1" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033131Z:18717ed4-1273-4807-87e8-050f6b5ca5f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 527445F63EAE45FEB6CE0785CEEC309C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:31Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+2": { + "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": [ "265" ], + "x-ms-client-request-id": [ "fcf19625-9f85-4532-a92a-3582d397ed0f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "a2c64664-776b-46d4-a8db-a9570fde0149", "aea79889-1074-45ad-b5a2-4d40bdc160a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "279ff685-75ee-4fb7-8c12-be4249e3b756" ], + "x-ms-correlation-request-id": [ "279ff685-75ee-4fb7-8c12-be4249e3b756" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033132Z:279ff685-75ee-4fb7-8c12-be4249e3b756" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E25E27C1A4C84708BBE8ED510DB97CC7 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:32Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsdotnetwhatif112525-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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/blobServices/default/containers/app-package-functionsdotnetwhatif112525-0000000?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "411f8639-24a1-4a8f-a1d1-f857d72001b2" ], + "CommandName": [ "Get-AzBlobContainer" ], + "FullCommandName": [ "Get-AzBlobContainer_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4b2f422f-6504-4e05-833a-1a9cd4886984" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b0d48e0d-6ce5-41e7-9398-431430c7e275" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c32f9037-5de8-489e-9988-a12a683ea2fe" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033133Z:c32f9037-5de8-489e-9988-a12a683ea2fe" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8AD4DF348EF44FD88377C3362FAA8BFD Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:32Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "173" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c521f9ce-001e-0065-75f2-51756c000000\\nTime:2025-11-10T03:31:33.0612657Z\"}}", + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+4": { + "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": [ "267" ], + "x-ms-client-request-id": [ "135e9f7e-cb8d-4357-98da-64331ce76b6c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "fa3dcfb8-50a1-4d5d-bf6a-e93b7008a271", "c2e545c2-a0a9-42ca-aa9e-69f3759753a3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "2170533a-2e93-4108-9a2a-9b8ecbb5afd4" ], + "x-ms-correlation-request-id": [ "2170533a-2e93-4108-9a2a-9b8ecbb5afd4" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033133Z:2170533a-2e93-4108-9a2a-9b8ecbb5afd4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4047405DB8E345808985849D0ED5CEBF Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:33Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "e017777a-bf2b-4a36-8abb-01fa2da7c38c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d7997c36-8a06-4799-a56a-914227e380f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/854506b3-4ec6-4303-83e5-dc7f0d6a7ad9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "cc5061a4-8c6d-4966-8f6f-72bf52f56209" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033134Z:cc5061a4-8c6d-4966-8f6f-72bf52f56209" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E12D966935774D3A80B39F80C4A5C87F Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"rD41sAmSsmfoAOtTS/T7YsA85mFIgY9EF86McQ97Q1cMvTa6Xd7g861EwR2Krnv7AmEIClOOD0qm+AStxMTIYg==\",\"permissions\":\"FULL\"}]}", + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+6": { + "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": [ "269" ], + "x-ms-client-request-id": [ "c9b687ba-cbd3-4d36-85d6-17653ec578bb" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "6b471349-bb42-4d17-abd6-396c66e731ce", "c71a517c-2806-4f19-baf9-d5df0c9b60a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c07fc567-e5e3-41e6-9fe5-195abe8e4edf" ], + "x-ms-correlation-request-id": [ "c07fc567-e5e3-41e6-9fe5-195abe8e4edf" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033135Z:c07fc567-e5e3-41e6-9fe5-195abe8e4edf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C903D33AE369417FA3B0CA5F618339D2 Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:34Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "19508" ], + "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/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest88241010sa\",\"name\":\"funcappnewtest88241010sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-08T00:26:44.1052798Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-08T00:26:43.7615264Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest88241010sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest88241010sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest88241010sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest88241010sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest88241010sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest88241010sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/FunctionsTest-New-RG1/providers/Microsoft.Storage/storageAccounts/funcappnewtest992511sa\",\"name\":\"funcappnewtest992511sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T19:09:06.9943987Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T19:09:06.6975237Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappnewtest992511sa.dfs.core.windows.net/\",\"web\":\"https://funcappnewtest992511sa.z20.web.core.windows.net/\",\"blob\":\"https://funcappnewtest992511sa.blob.core.windows.net/\",\"queue\":\"https://funcappnewtest992511sa.queue.core.windows.net/\",\"table\":\"https://funcappnewtest992511sa.table.core.windows.net/\",\"file\":\"https://funcappnewtest992511sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test1/providers/Microsoft.Storage/storageAccounts/functionappnewtest1122sa\",\"name\":\"functionappnewtest1122sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:14:49.0127404Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:14:48.6221166Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1122sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1122sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1122sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1122sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1122sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1122sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test2/providers/Microsoft.Storage/storageAccounts/functionappnewtest9988sa\",\"name\":\"functionappnewtest9988sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T00:06:03.6949457Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T00:06:03.3511933Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9988sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9988sa.z20.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9988sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9988sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9988sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9988sa.file.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"centralus\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-110825/providers/Microsoft.Storage/storageAccounts/funcappflexsa110825dotne\",\"name\":\"funcappflexsa110825dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:01:40.5241731Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:01:40.4304321Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa110825dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa110825dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa110825dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa110825dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa110825dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa110825dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525custo\",\"name\":\"funcappflexsa112525custo\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:31.7835611Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:31.6741865Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525custo.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525custo.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525custo.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525custo.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525custo.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525custo.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne\",\"name\":\"funcappflexsa112525dotne\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:26.5167280Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:26.4073514Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525dotne.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525dotne.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525dotne.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525dotne.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525dotne.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525dotne.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525java\",\"name\":\"funcappflexsa112525java\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:18.6891025Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:18.5797188Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525java.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525java.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525java.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525java.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525java.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525java.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525node\",\"name\":\"funcappflexsa112525node\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:05:54.8763779Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:05:54.7669891Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525node.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525node.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525node.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525node.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525node.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525node.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525power\",\"name\":\"funcappflexsa112525power\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:06:42.4081564Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:06:42.2987167Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525power.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525power.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525power.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525power.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525power.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525power.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525pytho\",\"name\":\"funcappflexsa112525pytho\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-10T03:07:07.2208409Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-10T03:07:07.1114717Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcappflexsa112525pytho.dfs.core.windows.net/\",\"web\":\"https://funcappflexsa112525pytho.z7.web.core.windows.net/\",\"blob\":\"https://funcappflexsa112525pytho.blob.core.windows.net/\",\"queue\":\"https://funcappflexsa112525pytho.queue.core.windows.net/\",\"table\":\"https://funcappflexsa112525pytho.table.core.windows.net/\",\"file\":\"https://funcappflexsa112525pytho.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test5/providers/Microsoft.Storage/storageAccounts/functionappnewtest0097sa\",\"name\":\"functionappnewtest0097sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T02:34:21.8425911Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T02:34:21.7488083Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest0097sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest0097sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest0097sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest0097sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest0097sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest0097sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test91234/providers/Microsoft.Storage/storageAccounts/functionappnewtest1234sa\",\"name\":\"functionappnewtest1234sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T22:16:02.3699233Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T22:16:02.2761840Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest1234sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest1234sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest1234sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest1234sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest1234sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest1234sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/frangom-rg1-test9/providers/Microsoft.Storage/storageAccounts/functionappnewtest9997sa\",\"name\":\"functionappnewtest9997sa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-09T09:12:11.5970399Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-09T09:12:11.5032948Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionappnewtest9997sa.dfs.core.windows.net/\",\"web\":\"https://functionappnewtest9997sa.z7.web.core.windows.net/\",\"blob\":\"https://functionappnewtest9997sa.blob.core.windows.net/\",\"queue\":\"https://functionappnewtest9997sa.queue.core.windows.net/\",\"table\":\"https://functionappnewtest9997sa.table.core.windows.net/\",\"file\":\"https://functionappnewtest9997sa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/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-112525/providers/Microsoft.Storage/storageAccounts/funcappflexsa112525dotne/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "ff9f8630-9a36-4957-b8e2-083662e45233" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ebe09a81-eef7-4089-b258-76b21cef4c23" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b51cd81a-b1d2-425c-8959-0a85803536b1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "26edc2af-c873-441a-8252-88cc6205aab8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251110T033135Z:26edc2af-c873-441a-8252-88cc6205aab8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BAF31E615ECE4C52A3E5B49CEB333B4C Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:35Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"1AOcKGkfxWG6X4LM+yXnNXPq+f+3ytVp30vOLJ2pNs4euNGsZKLcBv5KPBCGnRAp1lKrrI4ttrho+AStPsnO+Q==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"rD41sAmSsmfoAOtTS/T7YsA85mFIgY9EF86McQ97Q1cMvTa6Xd7g861EwR2Krnv7AmEIClOOD0qm+AStxMTIYg==\",\"permissions\":\"FULL\"}]}", + "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-112525/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112525?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-112525/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-112525?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "8abd14d3-0f74-438b-a6e3-86057c0aa2d4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "0d9e7a51-6d5d-4822-88eb-80b5b08c8f5a" ], + "x-ms-correlation-request-id": [ "0d9e7a51-6d5d-4822-88eb-80b5b08c8f5a" ], + "x-ms-routing-request-id": [ "EASTASIA:20251110T033135Z:0d9e7a51-6d5d-4822-88eb-80b5b08c8f5a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C603CBF4A6E48B4A9CB76FACD6B061E Ref B: CO6AA3150219035 Ref C: 2025-11-10T03:31:35Z" ], + "Date": [ "Mon, 10 Nov 2025 03:31:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "246" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-112525\u0027 under resource group \u0027Functions-Flex-RG-112525\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file 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 6d10110afe44..10a4cdbb0a77 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) -$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzFunctionApp-FlexConsumption.Recording.json' +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzFunctionApp.FlexConsumption.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -27,7 +27,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $env:FunctionsUseFlexStackTestData = $true # Set Flex Consumption test variables - $flexTestRunId = 110125 + $flexTestRunId = 112525 $flexLocation = 'East Asia' $flexResourceGroupName = "Functions-Flex-RG-" + $flexTestRunId @@ -44,11 +44,11 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $storageAccountName = $storageAccountName.Substring(0, [Math]::Min($storageAccountName.Length, 24)) Write-Verbose "Creating storage account: $storageAccountName in resource group: $flexResourceGroupName" -Verbose New-AzStorageAccount -ResourceGroupName $flexResourceGroupName ` - -Name $storageAccountName ` - -Location $flexLocation ` - -SkuName Standard_GRS ` - -Kind StorageV2 ` - -AllowBlobPublicAccess $false | Out-Null + -Name $storageAccountName ` + -Location $flexLocation ` + -SkuName Standard_GRS ` + -Kind StorageV2 ` + -AllowBlobPublicAccess $false | Out-Null $StorageAccountInfo[$runtimeName] = $storageAccountName } @@ -160,7 +160,10 @@ Describe 'New-AzFunctionApp - Flex Consumption' { # Clean up resource group and storage accounts used for Flex Consumption tests Write-Verbose "Removing resource group: $flexResourceGroupName" -Verbose - Remove-AzResourceGroup -Name $flexResourceGroupName -Force + + # After recording the tests, use -Force to avoid prompt during cleanup + #Remove-AzResourceGroup -Name $flexResourceGroupName -Force + Remove-AzResourceGroup -Name $flexResourceGroupName -Force -ErrorAction SilentlyContinue Write-Verbose "Done." -Verbose } @@ -217,7 +220,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { "ExpectedSku" = "FC1" "ExpectedAppSettings" = $expectedAppSettings "ExpectedProperties" = @{ - "RuntimeVersion" = "3.11" + "RuntimeVersion" = "3.12" "RuntimeName" = "python" "ScaleAndConcurrencyInstanceMemoryMb" = 2048 "ScaleAndConcurrencyMaximumInstanceCount" = 100 @@ -369,8 +372,8 @@ Describe 'New-AzFunctionApp - Flex Consumption' { ) Write-Verbose "Creating Flex Consumption app with custom scaling settings" -Verbose - Write-Verbose "Function app name: $appName" -Verbose - Write-Verbose "Runtime: $runtime $runtimeVersion" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose try { New-AzFunctionApp -Name $appName ` @@ -416,7 +419,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { } } - It "Create Node Flex Consumption app with SystemAssigned managed identity for deployment storage" { + It "Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage" { # Use the Node test case as base $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "Node" } @@ -424,17 +427,26 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $appName = "Functions-Node-SystemIdentity-" + $flexTestRunId $storageAccountName = $baseTestCase.StorageAccountName $runtime = $baseTestCase.Runtime + $expectedSku = "FC1" # ZoneRedundant SKU - Write-Verbose "Creating Flex Consumption app with SystemAssigned identity for deployment storage" -Verbose + Write-Verbose "Creating ZoneRedundant Flex Consumption app with SystemAssigned identity for deployment storage" -Verbose try { + + Write-Verbose "Creating Flex Consumption app with UserAssigned identity for deployment storage" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Resource group name: $flexResourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + New-AzFunctionApp -Name $appName ` -ResourceGroupName $flexResourceGroupName ` -StorageAccountName $storageAccountName ` -Runtime $runtime ` -FlexConsumptionLocation $flexLocation ` -DeploymentStorageAuthType "SystemAssignedIdentity" ` - -IdentityType "SystemAssigned" + -IdentityType "SystemAssigned" ` + -EnableZoneRedundancy Write-Verbose "Validating SystemAssigned identity configuration..." -Verbose $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName @@ -458,10 +470,88 @@ Describe 'New-AzFunctionApp - Flex Consumption' { $functionApp.IdentityType | Should -Be "SystemAssigned" $functionApp.IdentityPrincipalId | Should -Not -BeNullOrEmpty + # Validate app service plan + Write-Verbose "Validating app service plan SKU and zone redundancy..." -Verbose + $plan = Get-AzFunctionAppPlan -Name $functionApp.AppServicePlan -ResourceGroupName $flexResourceGroupName + $plan.SkuName | Should -Be $ExpectedSku + $plan.ZoneRedundant | Should -Be $true + # This is the default value when the Flex Consumption plan is created + $plan.MaximumElasticWorkerCount | Should -Be 3 + + # Validate app settings (should NOT have DEPLOYMENT_STORAGE_CONNECTION_STRING for SystemAssigned) + Write-Verbose "Validating app settings..." -Verbose + $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $flexResourceGroupName + $applicationSettings['AzureWebJobsStorage'] | Should -Not -BeNullOrEmpty + $applicationSettings['APPLICATIONINSIGHTS_CONNECTION_STRING'] | Should -Not -BeNullOrEmpty + $applicationSettings.ContainsKey('DEPLOYMENT_STORAGE_CONNECTION_STRING') | Should -Be $false + } + finally { + Remove-TestFunctionApp -AppName $appName -ResourceGroupName $flexResourceGroupName + } + } + + It "Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage" { + + # Use the PowerShell test case as base + $baseTestCase = $flexConsumptionTestCases | Where-Object { $_.Runtime -eq "PowerShell" } + + $appName = "Functions-Pwsh-UserAssignedIdentity-" + $flexTestRunId + $storageAccountName = $baseTestCase.StorageAccountName + $runtime = $baseTestCase.Runtime + $expectedSku = "FC1" + + try { + + Write-Host "Create user assigned managed identity" -ForegroundColor Yellow + $identityName = "my-app-identity-" + $flexTestRunId + $identityInfo = New-AzUserAssignedIdentity -ResourceGroupName $flexResourceGroupName -Name $identityName -Location $flexLocation + + Write-Verbose "Creating Flex Consumption app with UserAssigned identity for deployment storage" -Verbose + Write-Verbose "Function app name: $appName" -Verbose + Write-Verbose "Resource group name: $flexResourceGroupName" -Verbose + Write-Verbose "Identity resource ID: $($identityInfo.Id)" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Runtime: $runtime" -Verbose + + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $storageAccountName ` + -Runtime $runtime ` + -FlexConsumptionLocation $flexLocation ` + -DeploymentStorageAuthType "UserAssignedIdentity" ` + -DeploymentStorageAuthValue $identityInfo.Id ` + -IdentityType "UserAssigned" ` + -IdentityID $identityInfo.Id + + # Validate basic properties using base test case expectations + Write-Verbose "Validating Flex function app basic properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $flexResourceGroupName + + $functionApp.Runtime | Should -Be $runtime + $functionApp.RuntimeVersion | Should -Be $baseTestCase.ExpectedProperties.RuntimeVersion + $functionApp.RuntimeName | Should -Be $baseTestCase.ExpectedProperties.RuntimeName + $functionApp.ScaleAndConcurrencyInstanceMemoryMb | Should -Be $baseTestCase.ExpectedProperties.ScaleAndConcurrencyInstanceMemoryMb + $functionApp.ScaleAndConcurrencyMaximumInstanceCount | Should -Be $baseTestCase.ExpectedProperties.ScaleAndConcurrencyMaximumInstanceCount + $functionApp.ScaleAndConcurrencyHttpPerInstanceConcurrency | Should -Be $null + $functionApp.ScaleAndConcurrencyAlwaysReady | Should -Be $null + $functionApp.StorageType | Should -Be "blobcontainer" + $functionApp.Location | Should -Be $flexLocation + $functionApp.State | Should -Be "Running" + + # Validate deployment storage and authentication type + Write-Verbose "Validating deployment storage authentication for user assigned identity..." -Verbose + $functionApp.AuthenticationType | Should -Be "userassignedidentity" + $functionApp.AuthenticationUserAssignedIdentityResourceId | Should -Match $identityInfo.Id + + # Validate app user assigned identity + $functionApp.IdentityType | Should -Be "UserAssigned" + $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties + $userAssignedIdentity.ContainsKey($identityInfo.Id) | Should -Be $true + # Validate app service plan Test-FlexConsumptionPlanSku -PlanName $functionApp.AppServicePlan ` -ResourceGroupName $flexResourceGroupName ` - -ExpectedSku "FC1" + -ExpectedSku $expectedSku # Validate app settings (should NOT have DEPLOYMENT_STORAGE_CONNECTION_STRING for SystemAssigned) $applicationSettings = Get-AzFunctionAppSetting -Name $appName -ResourceGroupName $flexResourceGroupName @@ -597,7 +687,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' { Write-Verbose "Testing WhatIf for Flex Consumption" -Verbose # This should not throw and should not create actual resources - { + { New-AzFunctionApp -Name $appName ` -ResourceGroupName $flexResourceGroupName ` -StorageAccountName $storageAccountName ` From ffa44a2c9049ad749d27c609dc48d4e2b1f7f5d4 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:19:06 -0800 Subject: [PATCH 63/76] Update tests recordings --- .../test/Get-AzFunctionApp.Recording.json | 800 +- ...unctionAppAvailableLocation.Recording.json | 186 +- .../test/Get-AzFunctionAppPlan.Recording.json | 358 +- ...Remove-AzFunctionAppSetting.Recording.json | 978 +-- .../test/New-AzFunctionApp.Recording.json | 7624 +++++++---------- .../test/New-AzFunctionAppPlan.Recording.json | 166 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 3354 ++++---- ...te-Remove-AzFunctionAppPlan.Recording.json | 860 +- .../test/Remove-AzFunctionApp.Recording.json | 697 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3406 ++++---- .../Functions.Autorest/test/env.json | 202 +- 11 files changed, 8717 insertions(+), 9914 deletions(-) diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index e0580cab28c8..90052307afd6 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": [ "47" ], - "x-ms-client-request-id": [ "816bb57c-fbc6-4b8e-8e6c-420d964bfe07" ], + "x-ms-client-request-id": [ "c810188f-7267-422c-ab2d-fb696f6dc348" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,42 +22,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF1FE6FDCB\"" ], - "x-ms-original-request-ids": [ "069a9d90-05c8-4cb1-b3b9-ba95d0441b27" ], + "ETag": [ "\"1DC4FBD6B72BB4B\"" ], + "x-ms-original-request-ids": [ "83c82c0e-0a00-4cea-858f-fff9ec171cc7" ], "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": [ "ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], - "x-ms-correlation-request-id": [ "ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054036Z:ae317ce6-9c21-4cc9-9b89-0c201427fd1e" ], + "x-ms-request-id": [ "7fe89f87-2372-45bd-b8f0-dc1fe64cb049" ], + "x-ms-correlation-request-id": [ "7fe89f87-2372-45bd-b8f0-dc1fe64cb049" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080714Z:7fe89f87-2372-45bd-b8f0-dc1fe64cb049" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89988C84DD1C47BEA691703BC4E7F1F3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC7F1F7E978C4684B2FED83699A57E1A Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33879" ], + "Content-Length": [ "34297" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.65\",\"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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.3966667\",\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.8366667\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.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-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:04:00.2266667\",\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:02:57.963\",\"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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:06:28.4366667\",\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:05:23.69\",\"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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "22675e2b-f9b7-46e8-9ac8-4ef574cbc099" ], + "x-ms-client-request-id": [ "831e3de4-7d76-4cd7-a379-b0193c716efe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -69,40 +69,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5f45a1c-e5ef-46db-9c6e-56f2709c8836" ], + "x-ms-request-id": [ "2fd715ec-eced-40b3-9b54-9729c1a74520" ], "X-AspNet-Version": [ "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/7b54d5e2-e60e-4568-be69-5ecd56914bb8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/1a4a80eb-30d3-4ca1-8772-b99faf3faea6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9ca253bb-05bd-4ff8-a6bb-528a562aa2c7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054037Z:9ca253bb-05bd-4ff8-a6bb-528a562aa2c7" ], + "x-ms-correlation-request-id": [ "bff0e936-7ee6-42fb-8458-4f2ad61477e0" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T080714Z:bff0e936-7ee6-42fb-8458-4f2ad61477e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F48D2052CA9040BFB04F918BFF70B35C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EE20677680E46CBAD69072A63FDD291 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "67125d36-9027-4a21-838c-384204486cce" ], + "x-ms-client-request-id": [ "0bfdd2e7-fc36-4784-a32b-dba3760260ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -114,41 +114,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce558f0a-9559-4b30-aa68-a59f35baa781" ], + "x-ms-request-id": [ "e76f9b99-4de7-4d5f-8ee3-b41ad3470963" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df27ba2b-5002-4f7b-a049-498539959655" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "39dbf174-e826-47cb-9ede-d8c33cc7bf0c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054037Z:39dbf174-e826-47cb-9ede-d8c33cc7bf0c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72f5727e-0e38-43d9-a230-d5922058bd2d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d5548a0-5c7f-4bba-aac2-0adba6ff54d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080715Z:2d5548a0-5c7f-4bba-aac2-0adba6ff54d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD7DC1937AE945FB82B6D358512176AF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 920864825B674B1AA1E33A4D4BB5053F Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:14 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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "aab83092-4b50-49d0-bdfb-ce8c3dabbef4" ], + "x-ms-client-request-id": [ "8bad4927-ff64-407f-9fac-126deae38e56" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -160,40 +160,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06dcc852-d622-4bb1-ab1e-44e52b9bf16e" ], + "x-ms-request-id": [ "a20e164e-d827-4a2a-b7ff-c93a60053fee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47ccaeba-72c1-42a3-814f-46425677fbb5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e6f8dcb-bcbf-4fc0-b932-c23af47279ea" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "59dcd897-20a5-41f4-8549-be943e78e051" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:59dcd897-20a5-41f4-8549-be943e78e051" ], + "x-ms-correlation-request-id": [ "c1ea5210-697c-4c88-890b-a48dc5b8f280" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080715Z:c1ea5210-697c-4c88-890b-a48dc5b8f280" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BC04D30B57A4FC59C8BADD03362531A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:37Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E0615BC31D74FCB99CE65E951462CE1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "66afe4f2-df7c-4a35-b8a4-3d63fa034be8" ], + "x-ms-client-request-id": [ "f286de99-7ac3-4a55-bf87-84f44ab9ee5e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -205,41 +205,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b42641de-7a6c-4f41-af5b-34b54fb5a06b" ], + "x-ms-request-id": [ "5db9b60c-1256-4d80-a53d-65827b1c94c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff92b01b-5325-4ad1-84fe-114db76ae7c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb77c7d3-74c5-461a-b90e-78856d1b2ba5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc432305-f00e-4496-b787-9b0714bbc980" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:dc432305-f00e-4496-b787-9b0714bbc980" ], + "x-ms-correlation-request-id": [ "1d2cdc3f-a7c0-496e-b57c-969ca0260fd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080715Z:1d2cdc3f-a7c0-496e-b57c-969ca0260fd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8C3A99B63524F518FD614A474296491 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F706AABBB20432C879B5EC18772B86A Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:15 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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "50983add-7512-4e32-93de-04ae2907f8cf" ], + "x-ms-client-request-id": [ "04cc94d4-589b-447a-9d05-e03042030fbe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -251,40 +251,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c526227-39e5-4ac3-960c-c3ef4eeecb06" ], + "x-ms-request-id": [ "a9d80fbe-b137-480b-be0a-af3863af3eb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f7953c4-a18f-4e83-8218-a5bef39c8ff6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4de817e0-4203-45b6-8bcc-a5093088684a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3e4430cb-3e69-44d1-9b8d-62a6387b5079" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:3e4430cb-3e69-44d1-9b8d-62a6387b5079" ], + "x-ms-correlation-request-id": [ "9ce46c85-96d0-4550-91b5-57c298aaab81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080716Z:9ce46c85-96d0-4550-91b5-57c298aaab81" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDA9321D3EBA4DEEA72DCFBBC76DE707 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C44ABC97A654016BCC9B0EF25F7FB19 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "4dbe0e8b-bd78-409f-a9ce-60e661c1796a" ], + "x-ms-client-request-id": [ "5dbc0c8d-0c99-4dca-b73d-52f74eb9579d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -296,41 +296,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75397a30-953c-4cc5-a0be-4d01d168418c" ], + "x-ms-request-id": [ "2df986c1-c64d-497f-b7c3-a7192b9350fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0211c81c-4667-4404-a120-e32d47af65bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf38c4f4-5674-4517-80d0-1fffe68ab88d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66d0862c-4d04-4cfc-8de4-329feb96e8d2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054038Z:66d0862c-4d04-4cfc-8de4-329feb96e8d2" ], + "x-ms-correlation-request-id": [ "54b33861-e5b9-4353-a5f7-a880e74c5e9e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080716Z:54b33861-e5b9-4353-a5f7-a880e74c5e9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 612129EB924F4C349B8B6F44408E2743 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0E62B984089434A8B80146B5B4567F3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:16 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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "d91d0619-378f-4ab7-81da-3c7ed32fe9a0" ], + "x-ms-client-request-id": [ "7f760e9c-9fcd-4bcf-bbd6-ac59ab83b31d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -342,40 +342,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68df53a1-c586-43f6-a713-91a2a5ce6e35" ], + "x-ms-request-id": [ "8d3c2997-6d04-4996-8c85-56caa0488abc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/826273a6-e5f9-4523-baf1-b43f41e19fab" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "3584952f-cb05-4e74-a2ad-4808d700c910" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:3584952f-cb05-4e74-a2ad-4808d700c910" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8054f3d-258c-4054-929b-3551500ad95d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "130aed73-fce4-4c51-b351-1d2f2208a639" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080716Z:130aed73-fce4-4c51-b351-1d2f2208a639" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C36ECE4A00514BDD8AD20078BE5730BD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:38Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DCF65A49F5446689F2651A35827CCAC Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "07b80026-97f1-4c56-a737-119c57bdef3d" ], + "x-ms-client-request-id": [ "eb79c295-b87a-4f23-b2a0-9bdbd3546d6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,41 +387,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51d4ae66-e05e-4475-b739-1606ba3aec35" ], + "x-ms-request-id": [ "3f445ecf-8347-41e5-b370-9ed4b656ae63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70c9ee4d-4d65-48dc-ae23-d1a7e5d23063" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a0e7214-ccc2-4577-a0b4-d7e81b17c748" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6fe9c85-39ea-4401-99b2-d08a15a1b292" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:c6fe9c85-39ea-4401-99b2-d08a15a1b292" ], + "x-ms-correlation-request-id": [ "6ae9db7c-3e69-4fdb-8715-20435e2bb6b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080717Z:6ae9db7c-3e69-4fdb-8715-20435e2bb6b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F16DED47559B4AE29B0A662570EB9962 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D758C864DAC047369ABD9678172B9F2F Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "d03b19b2-6d96-47fd-9833-fde539dd4f92" ], + "x-ms-client-request-id": [ "01ec2cb1-cf87-4324-b032-3f64adef6dbf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,42 +432,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DE8EEA09B0\"" ], + "ETag": [ "\"1DC4FBCEDFEFFB0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57467e0a-a307-40dc-b6d9-ebc5a9ebecad" ], + "x-ms-request-id": [ "af22ab87-b0e3-4405-ab7b-802119e9d98a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5f06a9a3-2f23-4456-8b5b-4efed664039c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:5f06a9a3-2f23-4456-8b5b-4efed664039c" ], + "x-ms-correlation-request-id": [ "ae94d83d-8601-475e-b8bb-2fe177a456fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080719Z:ae94d83d-8601-475e-b8bb-2fe177a456fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBF422C496D24172B7C3763C6FFFB574 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1F9C2B08614408287E7A01BA5255619 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8362" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:02:57.963\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "7597cdd1-ba49-4a45-b273-710de15e1100" ], + "x-ms-client-request-id": [ "eb9cb575-f057-487b-8747-b3975f15438c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -479,40 +479,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67035e10-e90c-4316-88a8-1c5ac1a8f1d0" ], + "x-ms-request-id": [ "2ed8a88d-da25-4712-92d7-111277633bdc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17cd0f52-b536-4e53-97ad-e0908e9b0ad0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5bb2fb3-599a-4c51-9118-2c69c4a213f5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ddacbb92-3e56-49a1-9dfb-eb7e3c1f357b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054039Z:ddacbb92-3e56-49a1-9dfb-eb7e3c1f357b" ], + "x-ms-correlation-request-id": [ "88207a0e-275f-47f4-853a-15475c74681e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080719Z:88207a0e-275f-47f4-853a-15475c74681e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DD37FFA18F54B008D548AC7FD2DCF9D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:39Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A97D05BE8204BAF866476DEEDECC310 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "d7da9a68-8918-439d-a6e5-e65b3580f708" ], + "x-ms-client-request-id": [ "e485c979-f8f4-4054-9abd-970404da6530" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -524,41 +524,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9209a966-f6e8-41d0-8b59-68de7670abee" ], + "x-ms-request-id": [ "0fef5fd4-7024-46f2-9ce7-9c4e19aedc0e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42151938-b83c-4754-9b86-7f19e7252cb9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e9db505d-f350-493a-a68a-5e39705022f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2ee99b2f-bda3-4af3-b27c-aca9e1db73b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:2ee99b2f-bda3-4af3-b27c-aca9e1db73b6" ], + "x-ms-correlation-request-id": [ "693bf4d3-0d46-40b6-b685-2c7b48a880bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080720Z:693bf4d3-0d46-40b6-b685-2c7b48a880bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B138B3EFE0A4CA197BE29961A677036 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EFB2E107C004166A65689B827D4B177 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "a4103b7e-93bf-427c-8be9-e6591f416591" ], + "x-ms-client-request-id": [ "18331f32-e5e8-471b-b7c1-946a331946b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -569,42 +569,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DEBCB2434B\"" ], + "ETag": [ "\"1DC4FBD131BAE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "521e4c0f-7a52-45e9-a490-2afb9e3f3ce2" ], + "x-ms-request-id": [ "46933af4-f6d4-4035-a6c2-5e32c656cc20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bca36ee8-15f0-4803-9c0b-78da55b0035a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:bca36ee8-15f0-4803-9c0b-78da55b0035a" ], + "x-ms-correlation-request-id": [ "88712f21-3c23-4b88-9caf-989e2c956580" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080720Z:88712f21-3c23-4b88-9caf-989e2c956580" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C744ED2A7F549B986D9CD3D8624B0A6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65F46E8BB8424CCB8C18E42680F4339A Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:04:00.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "52ce3dfe-4004-4510-be4f-699726ffeb3a" ], + "x-ms-client-request-id": [ "e6f2148e-1e26-4671-b406-885ee4551963" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -616,40 +616,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf4e53d0-d62e-43d6-b4bf-d20f7700c8cb" ], + "x-ms-request-id": [ "0534c680-cc0e-4a8f-aa99-cf5cb49dd372" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec568eff-92da-4e4c-a163-b87a1c274db6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c9e58d08-a56f-4cd3-9324-d4c17d322ce7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:c9e58d08-a56f-4cd3-9324-d4c17d322ce7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dde85ca6-d6f1-4aa5-9baf-46e321fd2a0b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "645fb8d5-3e70-4097-adfc-c1c016bcaa9e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080720Z:645fb8d5-3e70-4097-adfc-c1c016bcaa9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7628C0CB863C4F81BC74A06C92A0C9A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43E4827F40124863B066AD2F5374E3E2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "9ed32d68-fcd0-4d39-b6c8-3a22e405277c" ], + "x-ms-client-request-id": [ "f9d0ea9e-aa6d-4fec-b8ab-c09e705dc7b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -661,41 +661,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06bbe39a-4da4-48c1-bfbd-f7df3efc6bbd" ], + "x-ms-request-id": [ "200e7f78-a991-4c6b-85c8-f5e3330fc8d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07f5fcdc-311e-4e41-9365-7ba9c41d5606" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab913c13-9608-4495-afe0-ac0fbc5edac0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f666cc53-fc04-4201-911b-65f24576db2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054040Z:f666cc53-fc04-4201-911b-65f24576db2f" ], + "x-ms-correlation-request-id": [ "861ec1c7-ad27-4623-8037-fc246d2f0ec5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080720Z:861ec1c7-ad27-4623-8037-fc246d2f0ec5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F599166ACB14D7C9565BAB8568E9018 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:40Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C93E8E43D41482B8DC2EC7E67333E35 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "98b2a012-04f3-473c-b4aa-f32000b550e5" ], + "x-ms-client-request-id": [ "0a57d699-992a-4896-8a06-93262a057375" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -706,42 +706,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DEF01B7A20\"" ], + "ETag": [ "\"1DC4FBD44DB2CA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f3bdf6c-61bb-48db-90e7-15da16507c39" ], + "x-ms-request-id": [ "4c796e3d-8ffd-44f8-a34f-2c028e7daa85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df66eddd-092c-444c-95e5-4a767461a2fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:df66eddd-092c-444c-95e5-4a767461a2fa" ], + "x-ms-correlation-request-id": [ "01b6899c-8d19-4525-a9d1-356d2f97011b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080721Z:01b6899c-8d19-4525-a9d1-356d2f97011b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4447AB7B7CF84B0FAD4A29E5A183043D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 950AFE76E05E4B47981BE2502BF76501 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8575" ], + "Content-Length": [ "8672" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:05:23.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\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "0148f43c-29cb-440a-99e9-de77ecb6d3b8" ], + "x-ms-client-request-id": [ "52f6538a-95eb-4247-95c2-20a14d779a33" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -753,40 +753,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db59a3ca-045b-40bd-beab-756e3d2b4e70" ], + "x-ms-request-id": [ "be119eb3-68bb-4d1f-b0c6-c3f3a0d6ee30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d569f541-82d1-4e00-82f2-e8ea9b580a5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22e84eb5-b4e9-4ebe-a76e-467ae2ba7aaa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a970a1c6-6d70-47e5-9d38-7684bdadbecd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:a970a1c6-6d70-47e5-9d38-7684bdadbecd" ], + "x-ms-correlation-request-id": [ "1524166f-3c75-4d04-bd31-1718a8b1ec48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080721Z:1524166f-3c75-4d04-bd31-1718a8b1ec48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BD2E2B93B634321A2C1C2C74A1CBB1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04C4D5F933C04167A91D9BFDE0B8A8D3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "91a0da04-ec86-49e9-8407-108511b4e7f4" ], + "x-ms-client-request-id": [ "67db9146-e8c9-4a8f-a4a3-17a370771d02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -798,41 +798,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05aacb40-93d3-419a-b905-75de7592c25b" ], + "x-ms-request-id": [ "49fc13ac-a28d-4582-ac89-47d6c2589538" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e52de99d-c0c6-42e7-879a-4d1c877b6d6a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a9ab4c6-2d04-4e8c-be9b-271d2ef70b17" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ff544ad-6244-4c61-8e6f-c323bb3dc67d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:8ff544ad-6244-4c61-8e6f-c323bb3dc67d" ], + "x-ms-correlation-request-id": [ "37e14728-3160-4ffa-b78e-208ad42c6882" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080721Z:37e14728-3160-4ffa-b78e-208ad42c6882" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 404A5339B84045E4A0D7E8A6CDE55CFD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C48395C8E456429F8C1342B84C4BF24E Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "2061f91d-2483-4311-bdb6-59ac9d5b3be5" ], + "x-ms-client-request-id": [ "434f61c5-3e54-49f6-a05a-27f226dad398" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -843,42 +843,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF1FE6FDCB\"" ], + "ETag": [ "\"1DC4FBD6B72BB4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de6e9ec0-a515-4791-8ac0-c0aa9a23c9d8" ], + "x-ms-request-id": [ "195a1400-274d-4737-a62d-3526409e8b24" ], "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": [ "31cccf82-065a-4ace-85f0-bd9759f74cba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054041Z:31cccf82-065a-4ace-85f0-bd9759f74cba" ], + "x-ms-correlation-request-id": [ "fcb09ab1-42cc-4c74-a26d-f2b5bf959672" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080722Z:fcb09ab1-42cc-4c74-a26d-f2b5bf959672" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C43F737DE1D940D18177EBAE25BC0999 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46EA3C73CC544A9D8B4F1F1B08DE5D76 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8750" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:06:28.4366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "fb8c4fce-e0bd-4bdc-8469-30dcad623103" ], + "x-ms-client-request-id": [ "af29ac46-059e-4979-9aca-a2a5c901f8f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -890,40 +890,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "feabc9c0-e045-4a1e-8487-ebe0ceaae4bb" ], + "x-ms-request-id": [ "5b141625-4d74-4dbf-af92-081981f0ddce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44491ecd-d971-463e-a7a3-3aba08e48e41" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "bee1691e-f081-4cbc-8be2-99fded0462b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:bee1691e-f081-4cbc-8be2-99fded0462b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9024a37-d4d6-4a25-aed1-31af0b13e259" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "42176b80-7bc6-4c30-adc9-871c12a7fbf0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080722Z:42176b80-7bc6-4c30-adc9-871c12a7fbf0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF8492CD25BD4FD69497794E75CC5086 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5563FA9037B3441CAAC7D15FFCFF374B Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "7176ef47-b6b6-44fe-893d-db25a5304ccb" ], + "x-ms-client-request-id": [ "4f676886-b906-4be8-bebd-e5e4ead72bff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -935,41 +935,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "97e0688a-1b6a-4a2e-8910-430bd8247532" ], + "x-ms-request-id": [ "a9c6c100-1b0f-4b78-8790-8450f1caf498" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a392d0f-8cb6-497d-b9b1-68c49c6cb57e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12a04857-3294-48c8-849e-89c9c9f03841" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2da1e424-994b-4abf-8bb8-ddb8916b9c94" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:2da1e424-994b-4abf-8bb8-ddb8916b9c94" ], + "x-ms-correlation-request-id": [ "596488ce-90a0-434c-9100-365afe7af1c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080722Z:596488ce-90a0-434c-9100-365afe7af1c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F295A4B334704AED971C42E6FD7B1C3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8628AACEDBA7406C88EF53344081E302 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/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-a7inyz/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-n8vg16/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-a7inyz/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "19ab043f-a434-4672-9eea-871e16ff6560" ], + "x-ms-client-request-id": [ "938d275c-4750-4aa7-9b16-843a5e077a14" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -980,41 +980,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e491c044-86d4-47f6-849f-3de0d6ded982" ], + "x-ms-original-request-ids": [ "ade28b0b-124c-4b00-bae5-75ed80bc868c" ], "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": [ "b42506d2-1d81-4c91-a09b-5c08b54943a9" ], - "x-ms-correlation-request-id": [ "b42506d2-1d81-4c91-a09b-5c08b54943a9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054042Z:b42506d2-1d81-4c91-a09b-5c08b54943a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3254f260-a153-46ca-b23d-2503bee813f1" ], + "x-ms-correlation-request-id": [ "3254f260-a153-46ca-b23d-2503bee813f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080722Z:3254f260-a153-46ca-b23d-2503bee813f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5141776FE126445DBDD52758A0B3AEE8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43D104AB3D0848F0B2FDA98FF80F7828 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8292" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:02:57.963\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "2192ecf9-0017-4788-a13d-c4127d20795e" ], + "x-ms-client-request-id": [ "df42ef23-5286-4c4d-a677-58fa12eac123" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1026,40 +1026,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56219f85-6341-4110-88a2-ee7245f871dc" ], + "x-ms-request-id": [ "51344b91-2651-4b49-b473-9c6cf3ad0c75" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc37fec5-2038-42da-a49c-a8daaa15d159" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69283b3f-d87d-4d1d-a4c8-3267d56a8bae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "81470266-36e4-4680-ad95-265a961f04c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:81470266-36e4-4680-ad95-265a961f04c5" ], + "x-ms-correlation-request-id": [ "69fe9b04-1241-4a0d-bddb-cde40389de48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080723Z:69fe9b04-1241-4a0d-bddb-cde40389de48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E215E41EF5047768C548BBD52FE4163 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 39053664BFD0457A84F6E6B55FCC6D6C Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "2eb96ea4-6847-4a6a-846b-141a1b734d90" ], + "x-ms-client-request-id": [ "683aa092-31f3-49d1-8c56-5ff99c4fc4df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1071,25 +1071,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "117811b6-3143-4630-9096-b54f0f49586a" ], + "x-ms-request-id": [ "e3b0e681-cde2-401f-9e75-a0be630c2ef1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c0d4fd6-756c-4b5f-9c03-f2ce2075372a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "9e5ae3f5-6ccd-4734-8c7d-7c17cc891607" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:9e5ae3f5-6ccd-4734-8c7d-7c17cc891607" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28f8501c-b6f3-4316-bcb4-b275a8958a09" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8ff1bb1a-a5ba-4bee-a692-687bdd26708d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080723Z:8ff1bb1a-a5ba-4bee-a692-687bdd26708d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF9F57616EF741AEA6E1C5C169791A87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E184815DB09C409AA95E091DA78AEF30 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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 } }, @@ -1101,11 +1101,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "d9164626-343a-4991-ad88-eb0fc7f0e8f6" ], + "x-ms-client-request-id": [ "d3b0121f-ab5c-44a4-baf7-cf9811074e1c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1116,42 +1116,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF1FE6FDCB\"" ], - "x-ms-original-request-ids": [ "f09e05ef-f5e6-4eac-b89f-52b54678dbb9" ], + "ETag": [ "\"1DC4FBD6B72BB4B\"" ], + "x-ms-original-request-ids": [ "ec761361-228b-4abf-b39b-cf2faa436066" ], "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": [ "1807a828-2f79-4a52-9751-75b7d94d7742" ], - "x-ms-correlation-request-id": [ "1807a828-2f79-4a52-9751-75b7d94d7742" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054043Z:1807a828-2f79-4a52-9751-75b7d94d7742" ], + "x-ms-request-id": [ "a8e0d383-7846-453a-8be4-c43508a7259c" ], + "x-ms-correlation-request-id": [ "a8e0d383-7846-453a-8be4-c43508a7259c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080723Z:a8e0d383-7846-453a-8be4-c43508a7259c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08E0CC71B961459AAF95FDC6C4E86FA0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5BD803979A54408B665E9EB9B55BC2C Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33879" ], + "Content-Length": [ "34297" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:38:27.65\",\"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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:35:44.587\",\"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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.3966667\",\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:39:47.8366667\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.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-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:04:00.2266667\",\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:02:57.963\",\"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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:06:28.4366667\",\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:05:23.69\",\"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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.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}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "f9623b4d-8200-4751-89ef-141dd5e5f591" ], + "x-ms-client-request-id": [ "bde2661f-2e55-4d40-abcf-be0876d72400" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1163,40 +1163,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75d0e237-ffff-408e-ba14-464ac8703aef" ], + "x-ms-request-id": [ "2dcf565b-d895-4212-8974-b6b07261f1a6" ], "X-AspNet-Version": [ "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/5ba27109-5ea3-4319-a7ae-18628973b8bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9ec490bc-984a-4fdc-aede-67c48ec04d4f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c7154fb9-ed37-435b-a87c-b9b8d1113605" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054044Z:c7154fb9-ed37-435b-a87c-b9b8d1113605" ], + "x-ms-correlation-request-id": [ "fe4f57cc-86cf-432e-938b-939868f01a36" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080724Z:fe4f57cc-86cf-432e-938b-939868f01a36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AC4493DFE094CF6AE280258B758E9D6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26A911E473BF4BB7803860CD78CD482A Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/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-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "c9afbd5f-7863-48a9-9b8c-efe6bbeaeb21" ], + "x-ms-client-request-id": [ "3673b278-94d3-496e-8f7a-80e15ac3b6fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1208,41 +1208,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8dea337-d060-4b09-a787-0cbbc879a965" ], + "x-ms-request-id": [ "d8e03c68-9641-48fc-8bff-00001beb03e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4dfcf60-ae8d-4ed7-b957-3fb16a8ee9fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3a4ad5a-be23-435d-97de-b4686947d664" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c3b84a1e-2397-4fbb-b237-a314412293fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054044Z:c3b84a1e-2397-4fbb-b237-a314412293fe" ], + "x-ms-correlation-request-id": [ "f67db18a-f4c1-44f4-a577-aac3c7ccbbae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080724Z:f67db18a-f4c1-44f4-a577-aac3c7ccbbae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99D08647939E4CDC80F47B5FBA97B35F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06EBB24C8E4743F79B2023D9E887E0F7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:24 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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "6be1a250-6c2a-4c64-a96a-8eef863bf03c" ], + "x-ms-client-request-id": [ "a5aaa793-1650-4c6e-a042-e6798cadf067" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1254,40 +1254,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "756caac5-d34b-49c3-bac7-a08ea5b5db42" ], + "x-ms-request-id": [ "3c3d183c-7cea-472b-abfd-fcc57bfd297b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5161373-68a0-4cd6-8f92-882e073e8c69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22473cfd-c29d-4132-8932-c06142eb4611" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b3becb49-35ab-42d9-b943-562a9ec29dc5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054044Z:b3becb49-35ab-42d9-b943-562a9ec29dc5" ], + "x-ms-correlation-request-id": [ "1cb6c2d4-6cb5-43ca-9c58-21c5777592b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080724Z:1cb6c2d4-6cb5-43ca-9c58-21c5777592b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D08BBC734A14E519C8395370A933204 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 177B84381AE44566A1E8CC3B357D0259 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/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-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "8733f680-0eca-4c04-83e1-cecec348effe" ], + "x-ms-client-request-id": [ "a1efcff2-f8fd-46f6-8e50-2c1a9332ae17" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1299,41 +1299,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9274f4e0-b1cc-44db-a92a-147954eefaf7" ], + "x-ms-request-id": [ "bc82ccb5-a7b8-4a4f-8ed2-60d55c40276d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b104a5e2-d5f5-4b9b-bc8c-6d4c609a96f0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a65f24b8-4305-4ca5-8677-7403e9e9e3ff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054045Z:a65f24b8-4305-4ca5-8677-7403e9e9e3ff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbefe427-20a5-4270-bcf3-7c3bab796204" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "977ebcf9-80b0-4721-8f05-22aec4d9aec9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080724Z:977ebcf9-80b0-4721-8f05-22aec4d9aec9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A170B5064374EBE95C4BDDEB0057141 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1729D41BB77B40A784D0FBC8D53A84E1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "52302b4c-a621-4217-98cc-2c7f42aa0c13" ], + "x-ms-client-request-id": [ "55547915-933d-4561-87cc-7a8be7a59e2a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1345,40 +1345,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "084221a1-3385-4f1b-9854-b50ac1bb6cb8" ], + "x-ms-request-id": [ "3936083f-a9b4-4812-9fdc-4ccff81f5a0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26c0db82-34d6-44f4-a811-84faff119e5a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "41f23fe2-074d-4f94-95cd-f49da077853d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:41f23fe2-074d-4f94-95cd-f49da077853d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29d80d16-c106-476b-b91f-ca5129a202dc" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "40cb8d4c-edb4-4903-af87-fd23a4d5ff88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080725Z:40cb8d4c-edb4-4903-af87-fd23a4d5ff88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4DD656D932E41AAB95B6B46940A2CB2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEEC1307D2C649CA92F8668B436458D0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "3a207552-e6e8-49e1-a17b-21244cacd64e" ], + "x-ms-client-request-id": [ "14382fd7-997d-401e-a9d6-3cfd33e73cb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1390,41 +1390,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e6563fb8-3efd-4b23-b324-1474cd4dab62" ], + "x-ms-request-id": [ "f9295e35-ba12-4fe9-a813-0500550d68ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9e62d41-8786-4f69-a66b-9ac083f89cd0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/477406b2-7651-4e84-8017-0d092e87d03b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "8708411f-b98a-4aa7-9aeb-7bcca6856823" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:8708411f-b98a-4aa7-9aeb-7bcca6856823" ], + "x-ms-correlation-request-id": [ "93a09a95-156b-4698-a477-c0ad2fe8740d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080725Z:93a09a95-156b-4698-a477-c0ad2fe8740d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1AF3C3CD38DE46628D107CCF40F65E42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8DD6BE4E680D48CB837F311DA2318F83 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:25 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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "1b5f5029-88d0-4d1f-a1d2-e5beaa324c79" ], + "x-ms-client-request-id": [ "e9e988e7-18b7-46ad-9499-18b800c626d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1436,40 +1436,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f3e0690-d993-41f5-8005-cca6bd719ed0" ], + "x-ms-request-id": [ "2adaa9c9-7435-4ecb-a34c-5e867a72eab8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b041094-3252-41f5-8739-8755f3758e30" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], - "x-ms-correlation-request-id": [ "95028ab8-1e98-4860-aecc-7f3bc0a2f2ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:95028ab8-1e98-4860-aecc-7f3bc0a2f2ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a1b0aaf-5b11-4836-b19e-6c12299b1941" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a075e487-5ce5-41d3-8c33-c3f59f36330e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080725Z:a075e487-5ce5-41d3-8c33-c3f59f36330e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CDEA671CD894ABCA765C299C862F052 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6BB2CDAA4C842F99BB0DD47E382A119 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "b38be576-667c-4fe0-9a5f-063376a29a3d" ], + "x-ms-client-request-id": [ "92c0abe2-c5a2-4d60-a337-d3271ad40798" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1481,25 +1481,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff0f22eb-2902-4f40-981e-1a4c5ea1d41a" ], + "x-ms-request-id": [ "e6beaaf3-b283-4a31-a667-4e22aafdfe9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8bac8ac5-d7a6-4f10-bcb0-41155d56b21a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa7cb204-ffc6-40eb-b53a-4f3770426abb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cb8ad773-b272-4c25-83ae-6abf8f2754e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054046Z:cb8ad773-b272-4c25-83ae-6abf8f2754e3" ], + "x-ms-correlation-request-id": [ "929420b3-c223-4351-acc6-aceb473e9c3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080725Z:929420b3-c223-4351-acc6-aceb473e9c3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14EA8974C9FE4029BC539154E4CE3616 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFCBC8A6AB944171878E890D5C93BF12 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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 a2834ac1bf50..c060ae14e5b1 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": [ "80" ], - "x-ms-client-request-id": [ "daad31f4-3149-4f6c-a1de-79ee9f8d2271" ], + "x-ms-client-request-id": [ "3a74f91c-5118-4600-86de-0e6137d80733" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "222eccdd-7682-4622-bdbb-7fb4456e3d52" ], + "x-ms-request-id": [ "402f1a3c-a6bc-4990-a747-160406a40bd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6afc3dfb-3bee-429f-9acd-5d57b2aa4a76" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3df8a8f-a2e2-4ce7-8279-479d5db86cc1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c378fb5e-956c-4a1c-8319-64a819e4efbd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054048Z:c378fb5e-956c-4a1c-8319-64a819e4efbd" ], + "x-ms-correlation-request-id": [ "5d417891-09d1-4c68-a7d6-9848a1f4f57b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080727Z:5d417891-09d1-4c68-a7d6-9848a1f4f57b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FCA1B38C3F64F36B66123E9CAB41428 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B68DC73436294CB7BEE370145E99BC9D Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -53,11 +53,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "6292ad11-3c5d-45f5-82ae-6744bd2f2421" ], + "x-ms-client-request-id": [ "e2035620-ab16-49a1-9b77-0851c3197114" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "edcc303e-6268-49bd-bb95-bdb6d69ccc8d" ], + "x-ms-request-id": [ "0b9fc1c9-52de-4d49-962f-8fc91b45bbeb" ], "X-AspNet-Version": [ "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/04eef87c-217e-479e-912d-2e74ec91fc3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af829fc8-8e30-4fa4-bcb0-8cb6a357f1bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "44f92b10-27a2-4487-994d-6430fbdae34f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:44f92b10-27a2-4487-994d-6430fbdae34f" ], + "x-ms-correlation-request-id": [ "f3f1f66f-576c-4b85-9b90-89260f4c927b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080727Z:f3f1f66f-576c-4b85-9b90-89260f4c927b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3EA5FC95DBED49E2A3A2BB49055D0F39 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E7707B5693C496FAB79E176D86F1B39 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36785" ], + "Content-Length": [ "37348" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -99,11 +99,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "f4544435-5a39-46e0-831e-afdf01d039a3" ], + "x-ms-client-request-id": [ "f94624b5-8995-448d-aec9-53c104d9f609" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "0c4496f0-f707-4357-aacd-156b328f5440" ], + "x-ms-request-id": [ "1d1a2e6a-9ecb-4535-aa58-9093ac69c58e" ], "X-AspNet-Version": [ "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/441151cb-a9a8-4a7b-8e23-95ebaf7f61ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4420478a-db0c-4e9d-87d6-1c02f2a37bc6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52dc7266-cc4b-4f3e-b71a-8299a8ecbe43" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:52dc7266-cc4b-4f3e-b71a-8299a8ecbe43" ], + "x-ms-correlation-request-id": [ "805eb478-430b-415f-9cc9-0af2c9603fc8" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T080727Z:805eb478-430b-415f-9cc9-0af2c9603fc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECFE724E18C244778A97FEC4D5C1092F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3B8E33299F44547A31F9C4435722CB1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -145,11 +145,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "e19c9e28-d4c0-4f16-a61f-238df3e1aca0" ], + "x-ms-client-request-id": [ "865c6ce5-abb5-49fd-8f57-8a4307392f1d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "3896e862-7486-461e-8ab1-12fdd8ac8a62" ], + "x-ms-request-id": [ "9daa2720-ef8f-4f54-914a-8cd459b910f8" ], "X-AspNet-Version": [ "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/a907bce6-07bf-41c7-96d5-3a1935b61256" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e3f2939-cf22-4d19-a203-ffb4aee17116" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45b6960a-49c2-4683-a6a8-f1b12ec75215" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:45b6960a-49c2-4683-a6a8-f1b12ec75215" ], + "x-ms-correlation-request-id": [ "b01634db-3010-43d0-8a80-a9cb47193f96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080727Z:b01634db-3010-43d0-8a80-a9cb47193f96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCA8D65DB3604335B308FEEC4B213D0A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6000765B9DC04D9BA47A7EE4AB6A5500 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37141" ], + "Content-Length": [ "37704" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -191,11 +191,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "2082ba5d-4dba-49d1-be77-fb71d5908d6c" ], + "x-ms-client-request-id": [ "05295abe-290d-456e-8f2b-b0e1267eefa7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "0a1ed31d-5e03-4895-a3de-0691dc38eb66" ], + "x-ms-request-id": [ "d3836504-e43c-4ec6-a939-d59423b9a923" ], "X-AspNet-Version": [ "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/80b6a60b-633d-4bf2-b27b-d0a9d3e2d525" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/05b46a2e-715d-4d12-8b67-642f7cf7250a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4ea29102-06d2-467a-a720-c604d2b932bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054048Z:4ea29102-06d2-467a-a720-c604d2b932bb" ], + "x-ms-correlation-request-id": [ "42980b7b-2c5a-4738-ad59-0871f183f264" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080728Z:42980b7b-2c5a-4738-ad59-0871f183f264" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98D0A7BAD0224BE68A84CB1181D41D62 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3EB7D8280EC1473CB95DEAB2785DF62E Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -237,11 +237,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "4212cb1b-4d06-40a8-97f5-424e465ebb02" ], + "x-ms-client-request-id": [ "9699cbd7-aa90-4bb3-a66f-30bb68fd3c73" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "f50387c1-33f9-49c0-8760-ef140a7d6d92" ], + "x-ms-request-id": [ "5df3245c-9b20-4504-a3e0-dddc15ad8725" ], "X-AspNet-Version": [ "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/54d6000f-7006-4746-8adb-65eb9ce7bbcd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af35c819-d047-440a-af17-96664986851a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f4bcd473-3fde-4bc2-b67f-bf4e41e0a326" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054049Z:f4bcd473-3fde-4bc2-b67f-bf4e41e0a326" ], + "x-ms-correlation-request-id": [ "4be83d61-d95a-4ae2-911f-1083cada327b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080728Z:4be83d61-d95a-4ae2-911f-1083cada327b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF8C5B8CB59E41C8A9D36D75AA48E33F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2DD26C164634B97AEB239231DBE04E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27127" ], + "Content-Length": [ "27175" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -283,11 +283,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "ec7c8398-79ea-4afb-85b9-25e741d6c043" ], + "x-ms-client-request-id": [ "8cd353f0-f17a-4ff4-bea1-c84e0da0e758" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -299,25 +299,71 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a8b33db-bf14-4f1a-ab46-9acfae06b128" ], + "x-ms-request-id": [ "b89c0ab2-d93e-4f79-a8e0-5ef7a569b710" ], "X-AspNet-Version": [ "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/bf8f686a-14df-48cf-beb9-a703ea47b0ed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f0b373c4-3221-4ce2-8f9d-520ef2a33e4d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a8d21da-acdc-4ec2-8241-447acda7a63e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054049Z:4a8d21da-acdc-4ec2-8241-447acda7a63e" ], + "x-ms-correlation-request-id": [ "3e7064f1-c8c7-4483-aa65-1d28cbcdda40" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080728Z:3e7064f1-c8c7-4483-aa65-1d28cbcdda40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DF7A56F1BE6485299E3937237E88181 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFDB77D6E87A4E88AEDC83CEA4CD4BF5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27127" ], + "Content-Length": [ "27175" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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\",\"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}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppAvailableLocation+[NoContext]+Validate output for -PlanType FlexConsumption -ZoneRedundant+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=FlexConsumption\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "87" ], + "x-ms-client-request-id": [ "19dc65df-7218-4a9f-9eb0-a026750ffbf3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "40151a81-ccf3-425c-8bad-14aeb1aafdcc" ], + "X-AspNet-Version": [ "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/0d97726e-36de-4e8b-8068-6fc10d2d8729" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "18ec7547-bdec-476f-92fc-305608433481" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080728Z:18ec7547-bdec-476f-92fc-305608433481" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 16C563F183A84B8AA46D2D06F62FAB46 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "27175" ], + "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\",\"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}", "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 42f37554d02f..a76dd2b96e7f 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": [ "87" ], - "x-ms-client-request-id": [ "3504f24e-4c24-47bb-b1b0-2e6d1d0ac75e" ], + "x-ms-unique-id": [ "123" ], + "x-ms-client-request-id": [ "278bfc93-2ec6-4f53-a82f-4aab08bd1580" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,125 +22,131 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ca2fba7e-1f1f-46e3-b450-dc3f9aa40b87" ], + "x-ms-original-request-ids": [ "14e83a9f-1caf-473c-ae67-d6263ebb4f86" ], "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": [ "93407b01-be14-44b3-b506-ed397d24c96d" ], - "x-ms-correlation-request-id": [ "93407b01-be14-44b3-b506-ed397d24c96d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054050Z:93407b01-be14-44b3-b506-ed397d24c96d" ], + "x-ms-request-id": [ "283cb3a4-50b9-40c1-af0a-c5c55b60e859" ], + "x-ms-correlation-request-id": [ "283cb3a4-50b9-40c1-af0a-c5c55b60e859" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080737Z:283cb3a4-50b9-40c1-af0a-c5c55b60e859" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7B50B09C7B54EB6895C8415589140DA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C61452A7DC984C2B9D9118709EBDC1F6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "d354836c-33a5-46a2-8774-fd135528a28d" ], + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "eb6494a1-a6f4-4121-80cb-e68f31e46b41" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], - "x-ms-correlation-request-id": [ "d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054050Z:d388c887-c3a9-40b9-a7f3-f012f5d7fdce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6eeae743-8c3e-420a-bd8e-a0a555167d94" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "02460f74-88bc-45ee-9cea-0b956805fb63" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080738Z:02460f74-88bc-45ee-9cea-0b956805fb63" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7493CDB96A348EA9AF7955CC2D4AE87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A1B0691D55943A687685D1D4C56A3AE Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "d260efad-7a49-4ed5-9f98-ad3b76ce82a8" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "cdd89be8-2af6-41ef-87ef-03c8b329143b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], - "x-ms-correlation-request-id": [ "b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054050Z:b49ffb37-6a33-4c96-8075-1d75f4b7cdee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "541b5c10-fdf1-4c36-81c0-febf3fa0e288" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5fd6669b-64fc-4872-a36c-705b1d0d3327" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080738Z:5fd6669b-64fc-4872-a36c-705b1d0d3327" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6B02B19882E485CA03754D899601971 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3CA5E7C60684489B578A55885F9C536 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "252" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "2fef5f4f-1c84-40ec-be43-c3ef2c5f8992" ], + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "c95c52ef-2cdb-4ba1-80c4-4e4024fdf2af" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -152,40 +158,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da9ddc0e-86ea-4a4b-9c67-2f2c8caa5e8f" ], + "x-ms-request-id": [ "9027f847-4d19-4b02-9313-8ae7298e5fee" ], "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": [ "d9b86c6c-a9e0-4348-b96a-264a20c2501a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054050Z:d9b86c6c-a9e0-4348-b96a-264a20c2501a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a13b4cac-f659-4c04-8fe6-543f17a53988" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080738Z:a13b4cac-f659-4c04-8fe6-543f17a53988" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC247B390C8647BB93025FB59F81E395 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 427341350B7943BB954C984058F675A7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "91" ], - "x-ms-client-request-id": [ "8218663a-fb5c-4534-a4fa-210ce926accb" ], + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "5349fb9b-dffd-486c-bd13-ab049a6eec51" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -197,40 +203,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66978652-438f-44f6-b908-39e72a16f464" ], + "x-ms-request-id": [ "2c07423a-69cb-4310-89ac-e43b0c34c52b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f27e5dd-1648-4461-b3cb-e178fa6b493f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:6f27e5dd-1648-4461-b3cb-e178fa6b493f" ], + "x-ms-correlation-request-id": [ "ec637f54-cff9-4a5b-be2d-c7d80048bcde" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080738Z:ec637f54-cff9-4a5b-be2d-c7d80048bcde" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 33A1EE5493CD45EBB2131F422DB888EE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:50Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B8C6E53220D4463B0F696D28BF18829 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-fj26xp\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-1wzf2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "d4c3d814-ab71-4435-890e-1b3477fe0e48" ], + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "1cb468bb-07cc-4f65-bfea-aaf88064927b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -242,40 +248,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64a42bd0-7d24-497c-9961-229a1d5c6343" ], + "x-ms-request-id": [ "af94f8dc-858a-42b2-8347-e991d88f46ab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2166c1e1-6e00-402f-af19-07111e493ff1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:2166c1e1-6e00-402f-af19-07111e493ff1" ], + "x-ms-correlation-request-id": [ "2ffccaa5-4625-4f2b-9c18-3b3a3e74c5c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080739Z:2ffccaa5-4625-4f2b-9c18-3b3a3e74c5c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B0A4C1CF78147E587AD55126B92C095 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FB3234AC29D4DAAA42EA75C412AF075 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-g2ifkz\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-u4rnvi\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "93" ], - "x-ms-client-request-id": [ "a8d9cfca-91ab-4c7a-8709-3ff2d887480e" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "98bb68c0-cda4-4e9e-bc43-e7da59b1cb69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,40 +293,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4171ec21-f538-4d23-8e84-5383b209ee6a" ], + "x-ms-request-id": [ "cdc6f3ce-f1cf-4bac-ab17-6844077770b1" ], "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": [ "a5260311-7338-42c3-8007-f0ad3cc30cb0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:a5260311-7338-42c3-8007-f0ad3cc30cb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "04c973c1-5a34-4cf2-94ba-2c32134ec503" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080739Z:04c973c1-5a34-4cf2-94ba-2c32134ec503" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 570ADFD51D0E4489936E5884E8871098 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 871CB6250895406D8736DA4A7294A33B Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/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-a7inyz/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-n8vg16/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-a7inyz/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "d423772f-aa77-4a31-b5c7-cc17db1800c6" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "0fc09a53-6562-4c0f-9ece-0570c0231d43" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -331,25 +337,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b2e5558b-52e5-4198-8be3-9cad30f2aebd" ], + "x-ms-original-request-ids": [ "29e8ef25-7c8d-4939-a37e-538e2fb1e3b8" ], "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": [ "ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], - "x-ms-correlation-request-id": [ "ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:ae4a856e-08d5-4f7e-a0f4-affdd6b000a5" ], + "x-ms-request-id": [ "b81e6a83-2d96-4bbc-ae48-bb9b054ae781" ], + "x-ms-correlation-request-id": [ "b81e6a83-2d96-4bbc-ae48-bb9b054ae781" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080739Z:b81e6a83-2d96-4bbc-ae48-bb9b054ae781" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EAA003F0C7E4405B51428F0A6D3A2E1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EED4254A436436CACB147FCF82B6EB0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1830" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -360,12 +366,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "d25b157b-9b19-45a9-b9fb-14d10d643863" ], + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "0edd483a-2f0e-4563-9de3-23ef325dd1ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -376,125 +382,131 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4e6a5d07-63dc-445e-b69b-717118602208" ], + "x-ms-original-request-ids": [ "1dbc5604-5463-4d36-aa7b-39914b459e19" ], "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": [ "649272a1-c82c-46d3-a69c-f28faa58ccd7" ], - "x-ms-correlation-request-id": [ "649272a1-c82c-46d3-a69c-f28faa58ccd7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054051Z:649272a1-c82c-46d3-a69c-f28faa58ccd7" ], + "x-ms-request-id": [ "dd3a2257-0b22-4253-9f07-b9b31e5e1172" ], + "x-ms-correlation-request-id": [ "dd3a2257-0b22-4253-9f07-b9b31e5e1172" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080739Z:dd3a2257-0b22-4253-9f07-b9b31e5e1172" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 841896540E7D4692AD28BFC587FBEC3B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F10EF685278B4B11B74A7F5A056B23FD Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "0665c9b2-dea9-4e0a-bbe8-e6d4799e8b21" ], + "x-ms-unique-id": [ "132" ], + "x-ms-client-request-id": [ "891348cc-68b7-4baa-870c-cdee1ac2c091" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], - "x-ms-correlation-request-id": [ "ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054052Z:ee70f70f-33e4-4ce8-bed7-ead93fe8285a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1b667c85-536b-45d6-b393-09b791a41954" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5a28c90a-f1b9-47c3-84a7-772a476c74fd" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T080740Z:5a28c90a-f1b9-47c3-84a7-772a476c74fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E42C816820974730A07BC8949F9E24F5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 346B74AEADB54833A69EADAA53FD17AC Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "97" ], - "x-ms-client-request-id": [ "8cb46dda-dc64-4965-be45-d99f068f7408" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "65991376-6145-441f-83b3-d6d4db704258" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], - "x-ms-correlation-request-id": [ "c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:c2c0b24b-6af8-4fb2-9923-a891f40354ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d5a976b2-ea62-4cb3-8f9d-3f4a6d5ba13e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c508bcc2-ab24-42b7-8136-88adf096b041" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080740Z:c508bcc2-ab24-42b7-8136-88adf096b041" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 714B06E9D4FC4A52B9D99C3D41F3ABBD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B402DBA00884315828DA46CC35A2F96 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "252" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "98" ], - "x-ms-client-request-id": [ "70b5270c-a1ab-4b37-b914-c4e68648f8e9" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "0e0eae00-61ce-41e6-a51c-f94a5a924d6e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -506,40 +518,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c0dc039-953e-44db-a3f5-f34eb8fd0625" ], + "x-ms-request-id": [ "2747dc0b-9893-4960-87c2-a976112ba3d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "720cc62f-7514-4d0b-955b-6da2e9a25c0a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:720cc62f-7514-4d0b-955b-6da2e9a25c0a" ], + "x-ms-correlation-request-id": [ "6862c505-e90f-43ba-a2ea-219f13bb6f14" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080740Z:6862c505-e90f-43ba-a2ea-219f13bb6f14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8D7423C315D4F51B5D00A642B843AD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3293950D8B8C4F4BB852A74871525C57 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "4e2f56b9-d186-40e9-aaac-e7bc1d4c0076" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "c7935962-b3a6-49cc-ad01-15cffd853dd7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -551,24 +563,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b1bf08fd-5780-4a26-99ba-cb9f152625af" ], + "x-ms-request-id": [ "85ecfa7c-fa95-4d77-a391-0eb58dde8da1" ], "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": [ "c54e9d3b-3fb5-416a-a6a9-ecfc18779deb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054052Z:c54e9d3b-3fb5-416a-a6a9-ecfc18779deb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f8185663-6ebc-452e-93ba-49de470249c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080740Z:f8185663-6ebc-452e-93ba-49de470249c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85CC3FCE14C94ACF8781A887E5722FD1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65D20460B4554EA08E50770B4429A4E5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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 69fd974db451..59b6777e1bac 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-w41plh08gr\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-7enhzr3v45\",\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": [ "fddb3f84-9c78-4c6d-8d14-6642583e672b" ], + "x-ms-request-id": [ "e5c61f5f-f23a-48dc-bf1e-7167509f1206" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f01d38f9-9ecc-487b-8afb-b7bcd6ea3720" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "7f905007-0ce7-4f24-a601-dbef85e2f16c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054053Z:7f905007-0ce7-4f24-a601-dbef85e2f16c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dce5f1a8-7960-4746-a6a2-ce44eba792b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ebee1711-3ed3-4b1e-9201-7c50c2623746" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080741Z:ebee1711-3ed3-4b1e-9201-7c50c2623746" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD298C37376C4E37B8DFDA7339709D21 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DECDE0C4CDED449EB776C8D40F5AB85F Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "b36ce7ba-4563-4e5a-b935-2e7c915ff911" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "3e6c978d-7408-4706-aec8-7199b9664ce0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,125 +63,131 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ad543c19-148f-4517-a326-a54ede483b7b" ], + "x-ms-original-request-ids": [ "652c724c-fc50-47b0-b5a8-e5d8bb4a771a" ], "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": [ "97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], - "x-ms-correlation-request-id": [ "97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054053Z:97c6accc-f7b8-40a5-87b1-d3e025d2d4ab" ], + "x-ms-request-id": [ "13ed6ef2-602b-4c2e-ae22-aaab567e2e05" ], + "x-ms-correlation-request-id": [ "13ed6ef2-602b-4c2e-ae22-aaab567e2e05" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080741Z:13ed6ef2-602b-4c2e-ae22-aaab567e2e05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58EB0811FE5A47B0B1095DD13B782D3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 068D4D186E1C432987456F4014CE0085 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "cc3ff616-dba5-47f4-beed-11c3def553f8" ], + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "5f9a785a-f407-4055-9000-9ef74d7dd4b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], - "x-ms-correlation-request-id": [ "ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054054Z:ea5f2c5f-7fab-4ef2-a588-e25f80cdcc56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d874790c-a6f1-428d-95b7-a07b6f42070f" ], + "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": [ "26d38c85-cd04-489e-8b93-f314ac3bf68a" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T080742Z:26d38c85-cd04-489e-8b93-f314ac3bf68a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EAAD203ED004255A1C3FDF5EF1B83EC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:53Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92773EA943EB4A6F8A06C2B442F81522 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "13453c58-5792-40db-aadc-87a2902642e0" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "e327d207-9f91-4506-ab2f-6bf8250809b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "d5910f8a-6351-49c2-b82f-4d3060674dfa" ], - "x-ms-correlation-request-id": [ "d5910f8a-6351-49c2-b82f-4d3060674dfa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:d5910f8a-6351-49c2-b82f-4d3060674dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b6627d07-e6a6-4318-a32a-81b1a90dc017" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3dd6c85e-f8aa-4b70-a718-40938742572c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080742Z:3dd6c85e-f8aa-4b70-a718-40938742572c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 814B0A4763CF4CA5BF6501471EE68E2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 752A72EA9EDE494088F7F58557D9E7D5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "252" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "104" ], - "x-ms-client-request-id": [ "68b67021-b48c-4148-b795-5cdaba5d2cd1" ], + "x-ms-unique-id": [ "140" ], + "x-ms-client-request-id": [ "d0c6af41-0231-42b3-9e38-0a22deb7908f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -193,40 +199,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb5adaaa-bc9f-45b7-ad82-c01909152bea" ], + "x-ms-request-id": [ "1118e9a4-6098-4356-8d87-b3ebc03d4248" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc7279d2-2a0b-46a7-9537-7cfb8d4f1b11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:fc7279d2-2a0b-46a7-9537-7cfb8d4f1b11" ], + "x-ms-correlation-request-id": [ "1cbbaa36-3cf9-4ffb-bff9-9c0cebd03d45" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080742Z:1cbbaa36-3cf9-4ffb-bff9-9c0cebd03d45" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8444FE3BCF884A90926A814D32FF95C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0710D86ED8EB4C08B957C425C1FD29E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "81778792-1c38-4384-b099-a29d326738c1" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "702e32e7-85ba-495c-929a-2872dca51a18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -238,24 +244,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01124af8-6b78-41c4-ad51-0777b8b5b5f5" ], + "x-ms-request-id": [ "ea8d1250-8821-4aff-a40c-00f0a73a7015" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f2d9c4ef-8e23-4957-a8ff-aea6f3d43fa7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:f2d9c4ef-8e23-4957-a8ff-aea6f3d43fa7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8e28ebc0-9797-4bc5-9a25-bfa799f5da91" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080742Z:8e28ebc0-9797-4bc5-9a25-bfa799f5da91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7690FE0B524430885E3FB620541AB07 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3599E2809F2945798240ADE81F53F79F Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -266,12 +272,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "106" ], - "x-ms-client-request-id": [ "f3df5c61-07ed-4fc1-950c-23172956bed1" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "501585ab-2542-4690-8adc-1a7af996d491" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -282,40 +288,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8336e9d2-09f0-4155-8db0-9ee33f7edc3d" ], + "x-ms-original-request-ids": [ "98f5f4c2-97d4-4303-9529-5b5da1fb2693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-request-id": [ "d40a40cb-beae-4c56-ae45-68ed29815633" ], - "x-ms-correlation-request-id": [ "d40a40cb-beae-4c56-ae45-68ed29815633" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054054Z:d40a40cb-beae-4c56-ae45-68ed29815633" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1f947f5d-a86d-43ea-a5c8-3b816eee5ad4" ], + "x-ms-correlation-request-id": [ "1f947f5d-a86d-43ea-a5c8-3b816eee5ad4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080742Z:1f947f5d-a86d-43ea-a5c8-3b816eee5ad4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 565EEC9357C04751A6EDE2645B6935D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB412AD3E3484732BF68EA7486E6A56F Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "107" ], - "x-ms-client-request-id": [ "19b836b7-5586-4d39-be3c-8b1a0c8298b8" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "4cdf9d11-2992-4cdb-ab8a-475628370db2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -326,30 +332,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d6b63add-5814-4d31-a0d5-bb82f06cd128" ], + "x-ms-request-id": [ "9f89029b-9e6b-4b03-a842-49eae30d7efa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2bcaedbd-4c74-4b9a-aecb-07cb70554e36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/36fb82d7-7ef9-4bf7-88ba-015d0aaa4be2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6ccc104c-abb8-4776-a692-14f53c9557c6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054054Z:6ccc104c-abb8-4776-a692-14f53c9557c6" ], + "x-ms-correlation-request-id": [ "5e41ff02-e774-4f5e-8924-36046dab305a" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T080743Z:5e41ff02-e774-4f5e-8924-36046dab305a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B33576BD2D124409A1E1A40678535360 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:40:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B73559B21A8D48E9B1323D9B9696503E Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-w41plh08gr?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-7enhzr3v45?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": { @@ -369,36 +375,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/985cea72-f54c-470f-ab27-e1f9d7fe7178" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], - "x-ms-correlation-request-id": [ "71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054129Z:71b54d4a-fd9a-471f-a3e9-3afc748006d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7b881c5-2db8-432c-9404-d7cf3b07bd0d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "f383b444-3a8c-4fb3-9f6a-98defcbfe8fc" ], + "x-ms-correlation-request-id": [ "f383b444-3a8c-4fb3-9f6a-98defcbfe8fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080748Z:f383b444-3a8c-4fb3-9f6a-98defcbfe8fc" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 914F0AE1C2414B3C8F75950B00BB03DD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:40:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:41:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3889E3528AFB4417867B76207E8F3B93 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:07:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009bd6-0000-0300-0000-68e74b090000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"name\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"AppId\": \"3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"ConnectionString\": \"InstrumentationKey=46eeb7c3-c3c7-4b38-98e1-f66f69cec21f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\r\n \"Name\": \"Func-PowerShell-NewTest1-w41plh08gr\",\r\n \"CreationDate\": \"2025-10-09T05:40:55.3683639+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-w41plh08gr_3b8cb7a9-1a39-46a8-859c-586e03f7ac71_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-w41plh08gr-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\": \"\\\"d20315d0-0000-0300-0000-690da8d40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest1-7enhzr3v45\",\r\n \"name\": \"Func-PowerShell-NewTest1-7enhzr3v45\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-7enhzr3v45\",\r\n \"AppId\": \"63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4c2349e6-2cfd-452d-bb35-7ab78efd85f7\",\r\n \"ConnectionString\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\r\n \"Name\": \"Func-PowerShell-NewTest1-7enhzr3v45\",\r\n \"CreationDate\": \"2025-11-07T08:07:43.4840713+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-7enhzr3v45_63bbfe46-61eb-4032-b687-0ae1fd11b8a7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-7enhzr3v45-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-w41plh08gr\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-7enhzr3v45\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1790" ] + "Content-Length": [ "1718" ] } }, "Response": { @@ -406,43 +412,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF5E62D4B0\"" ], + "ETag": [ "\"1DC4FBD9C7886B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a83e5c1c-b1d2-4f6f-b73e-489a87798c07" ], + "x-ms-request-id": [ "99fe8ed7-2136-42aa-8274-53896bfd3e40" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7961e151-ff77-42f3-b630-285cff4cbcfe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89caa541-62af-4773-898b-6e4fbc61797d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "84ab9067-8bca-4a9e-951f-4ec79958fd28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054212Z:84ab9067-8bca-4a9e-951f-4ec79958fd28" ], + "x-ms-correlation-request-id": [ "070e3578-9358-414c-90b0-8a08978e20ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080830Z:070e3578-9358-414c-90b0-8a08978e20ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E52325B610D41B3A346D925EFAA9B74 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:41:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44F5B961FAF04E1FA34A2D406D9C7602 Ref B: MWH011020808025 Ref C: 2025-11-07T08:07:48Z" ], + "Date": [ "Fri, 07 Nov 2025 08:08:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8566" ], + "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:41:31.603\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:07:49.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "85196d1e-b231-40ca-9483-4d2def01169f" ], + "x-ms-unique-id": [ "146" ], + "x-ms-client-request-id": [ "e3aa8d88-3f7e-46b4-a960-62cd22e6846c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -452,42 +458,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF75BA2C30\"" ], + "ETag": [ "\"1DC4FBDB4296FE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb643dd5-f953-4a18-80a5-9ee988c7c9b4" ], + "x-ms-request-id": [ "1d2a8ce2-1f96-44c9-8fb0-42b879ac8da8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ebf458a3-ad65-455a-a58d-cbd65de5acc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054242Z:ebf458a3-ad65-455a-a58d-cbd65de5acc6" ], + "x-ms-correlation-request-id": [ "553fbe1f-3c36-4dbe-a1ea-1fd5888d938b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080901Z:553fbe1f-3c36-4dbe-a1ea-1fd5888d938b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C60970C3C996416F9C23885732A901C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3CA79A472FC6440491A21F05B901EDA2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:11.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:08:30.43\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "111" ], - "x-ms-client-request-id": [ "5b992d38-023d-4de0-a35b-f8bc624bbd1e" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "0bfc4c72-cd09-46d5-92b9-25d2e65c4640" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -498,42 +504,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF75BA2C30\"" ], + "ETag": [ "\"1DC4FBDB4296FE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3043dd84-0e69-4f9f-b85a-05b1695a6b4a" ], + "x-ms-request-id": [ "3da69bfc-6d28-4921-885b-af5a8e2c4c44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d7706f2-cc66-4ebd-b8b5-d940c6ed45f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:1d7706f2-cc66-4ebd-b8b5-d940c6ed45f8" ], + "x-ms-correlation-request-id": [ "4c482bdd-c998-45dd-b9a7-7fb51f2d7b3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080901Z:4c482bdd-c998-45dd-b9a7-7fb51f2d7b3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA02454374184C798BF0F03F81E26590 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A237E0167794EFAB99AA6967D760ABB Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:11.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:08:30.43\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "46779916-527a-4276-9359-e91c83b2b40f" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "0df37a45-037d-447a-afef-26e5375b5193" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -545,40 +551,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4834ab00-d419-41e8-b30e-c4ee145f1149" ], + "x-ms-request-id": [ "cdd39536-454d-4419-9470-d34438a9751b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7a44e91-28b8-40d1-9c6a-e0d1c0f14cbc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8853c67-9be6-41e5-a09d-4fd301bd4f21" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9ed36a43-4e56-4f06-be3b-062ab1896303" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:9ed36a43-4e56-4f06-be3b-062ab1896303" ], + "x-ms-correlation-request-id": [ "e7258709-58b7-4d51-86bd-73b08ea7a1dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080901Z:e7258709-58b7-4d51-86bd-73b08ea7a1dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB8968DC1E9F4F16A9E9C8174A8F7B2E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC933336828141B3B809A40DF020B135 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "da26ce03-00ce-485b-897e-aac6c3fbf49e" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "9904829e-4c1c-45e1-8cbf-caf3831972e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -590,41 +596,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4debcec3-aef1-4d97-889d-1a8614567dcc" ], + "x-ms-request-id": [ "6fabc45a-fb07-468d-b651-620de0e6e994" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e9f5a89-8600-4dc7-ac9c-16d0bcaa0f55" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/188ca81c-c403-4d74-8222-98ccb08f9413" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2fed371-0476-4266-97dd-13595122b80a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:b2fed371-0476-4266-97dd-13595122b80a" ], + "x-ms-correlation-request-id": [ "5df17aaa-836e-4248-a5bd-79bf063a2cca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080902Z:5df17aaa-836e-4248-a5bd-79bf063a2cca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E49D76CB0BBF499487BC92333ED56C2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8F0B7F16FC440898F68579F37911B93 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "114" ], - "x-ms-client-request-id": [ "728b0bb1-6e2c-41dc-aee7-0e0e23abc09c" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "f104b490-4f61-47d0-9af6-53c26609afc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -636,40 +642,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9496d3b2-427e-479e-969c-544e538bf1f7" ], + "x-ms-request-id": [ "ec9836ee-9588-400e-85c5-7bf1e5e4e3f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f07cd63a-4b78-4456-913c-b52a24e6f540" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78a11fd3-3b91-44ad-bbd4-fa14f6808e4e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "38037883-2cd6-446a-8821-1c7839907078" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054243Z:38037883-2cd6-446a-8821-1c7839907078" ], + "x-ms-correlation-request-id": [ "b4832f58-3e63-449d-a148-c03ff9d55ff2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080902Z:b4832f58-3e63-449d-a148-c03ff9d55ff2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D249677B94BB4AB1B8BE66F945E60AC9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 398C51E37082488B8B9E56A3163CA5B3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "115" ], - "x-ms-client-request-id": [ "ba853a7e-5ae4-4142-a77d-6a1bcacf9383" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "c71658b0-fe25-495d-8be7-94a1f605429a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -681,40 +687,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5fb956a-f629-4054-8e6d-ba22ef2b8846" ], + "x-ms-request-id": [ "21714b17-a7f6-4714-b5e0-14730f9d0c3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8e19446-8346-4901-9a6d-9858f7a3b0f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/326fc537-6c4d-4d08-8a83-cdc0da4798fe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1210d052-b68e-4926-918c-adb9fa66e88e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054244Z:1210d052-b68e-4926-918c-adb9fa66e88e" ], + "x-ms-correlation-request-id": [ "7a30d1f7-3469-4acf-b200-f613dfa13404" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080902Z:7a30d1f7-3469-4acf-b200-f613dfa13404" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 002BB229206B4DEC91FD65CB6FBCBE44 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C01BA7D64B7433C85F3C6821E9CE0C4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "116" ], - "x-ms-client-request-id": [ "0586fdac-094b-4687-991a-53f7ee864714" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "62f79dae-5ae7-49fb-ab62-d85c3a1f32a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -726,38 +732,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42d82e2e-3dce-4e50-9af2-dca4032cd1f2" ], + "x-ms-request-id": [ "1250badb-abf5-466d-98f3-5b3dda7fc933" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2fd6cf2-6347-4931-82b2-28ab2693a2e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5e28721-efbf-450b-acda-73ad6134fd41" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "292717b9-3f36-456b-a739-d8bfbcf23c92" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054244Z:292717b9-3f36-456b-a739-d8bfbcf23c92" ], + "x-ms-correlation-request-id": [ "13c549f8-5190-4774-a547-455726cf22f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080903Z:13c549f8-5190-4774-a547-455726cf22f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4CA4DFB47B29434FBE1989A35DA07CD3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F20EE004F194A3F8C86A0AF5647B769 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"MyAppSetting1\": \"456789\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-7enhzr3v45\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1046" ] + "Content-Length": [ "1030" ] } }, "Response": { @@ -765,43 +771,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF75BA2C30\"" ], + "ETag": [ "\"1DC4FBDB4296FE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5f0f5eb-9789-423a-89d1-27adfa3b3871" ], + "x-ms-request-id": [ "491730f7-2e41-4292-89c2-ddee0b3d4b95" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be56930c-f004-4b15-9119-d8d839a6a247" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aca11b3b-f31e-4b69-8f1a-438b250fe546" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ea7e1ca1-a5b4-4171-8c79-6f92491dc492" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054245Z:ea7e1ca1-a5b4-4171-8c79-6f92491dc492" ], + "x-ms-correlation-request-id": [ "1e352201-9004-4061-93a6-5b0b0612060d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080904Z:1e352201-9004-4061-93a6-5b0b0612060d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9ABF0B77B084541A418090F84867F09 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDC88DBD71C744648F437BEB93351F07 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1250" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "488a8836-8ebe-4873-b0bd-90c265fda2d6" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "fca144a7-a152-4dc1-a388-599eaaf72a14" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -813,40 +819,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0f0270e-9a03-4d35-a080-e73e38b36eb0" ], + "x-ms-request-id": [ "ec4eb16b-444e-4996-b216-7e881243199f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13b905b7-f1af-4410-8347-6d7bf61b8f17" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/762e8240-9b80-4f18-a86b-9f625558e24b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ca804af5-6c7e-46e5-a7bd-18e466f6ffae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054246Z:ca804af5-6c7e-46e5-a7bd-18e466f6ffae" ], + "x-ms-correlation-request-id": [ "171c7127-7877-4a7b-9795-d30249ee7928" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080904Z:171c7127-7877-4a7b-9795-d30249ee7928" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98C58F90E9AE4179BDAB1115136B839D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD2DF9472BD64D28BECF66FDBCEE9CA3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1250" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "119" ], - "x-ms-client-request-id": [ "02da2179-c3e4-4f62-ada4-2f4f0b1f9d35" ], + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "fabe015a-52f2-4ab2-8345-44bae30cec92" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -857,42 +863,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF89E522F0\"" ], + "ETag": [ "\"1DC4FBDC81058C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a234868-b261-4c62-ab37-ef35997638ff" ], + "x-ms-request-id": [ "c388110c-29cc-44b6-908e-60aa81cca827" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7434c2cf-6bee-4d8e-bec7-77901e6cb12f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054246Z:7434c2cf-6bee-4d8e-bec7-77901e6cb12f" ], + "x-ms-correlation-request-id": [ "1c3fcd6c-ac35-4585-8a84-514b1a3a6056" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080904Z:1c3fcd6c-ac35-4585-8a84-514b1a3a6056" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4830874BADE4C9A95382F8EE12C7466 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F4877AD635A43239C66F645C83FD154 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:45.663\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:03.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "120" ], - "x-ms-client-request-id": [ "e1739e3e-712e-425f-945b-dd6ce2c9e94b" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "e405fcf5-12a6-4b5a-b265-ec2f22b2230b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -904,40 +910,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e01c2f1-f5c0-4fec-9f43-aa4b6290b20d" ], + "x-ms-request-id": [ "02e86238-2563-4528-a26f-e18579654a86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dced2f3c-786c-42e1-afcb-ea2df81e43f0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7f89506f-44a8-48b2-8f39-c551ea1a9a2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:7f89506f-44a8-48b2-8f39-c551ea1a9a2f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0cd2c93-a7dc-422e-aeac-9f0bb6e8a624" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "7d7d0fe8-5cef-4620-92e3-e11bf1c3ae58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080904Z:7d7d0fe8-5cef-4620-92e3-e11bf1c3ae58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E69E9C79A2549418F5170ED464640B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5741A6A91144BD5A475F2FA6B8057A4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1250" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "121" ], - "x-ms-client-request-id": [ "f02e8b8e-2ac9-4f1c-81e9-988a7deaeab2" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "353ce988-dbd0-4db0-8105-32df70783869" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -949,41 +955,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6dac4ebe-0870-4576-9687-fac3266c840e" ], + "x-ms-request-id": [ "3023fc09-016b-44ac-aa1a-d632fc93e502" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3846204-df59-4189-a386-bc2ad3476d74" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5acc5a16-189b-440e-ae9e-d2641debeb00" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1c8710a7-66eb-482e-aabe-b2b0fc20e2de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:1c8710a7-66eb-482e-aabe-b2b0fc20e2de" ], + "x-ms-correlation-request-id": [ "f58bcd81-21c8-480c-918f-a1a36d42b972" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080905Z:f58bcd81-21c8-480c-918f-a1a36d42b972" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38CF95302B9E474AA477422F783594FF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B12F511F62C4FE99E9DD0FEC0B2E419 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "122" ], - "x-ms-client-request-id": [ "d14bda89-ef0c-408b-9217-16d804959da2" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "2424935f-5527-4fe6-bf7f-8413e0a06d22" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -995,38 +1001,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ea337ea-6fa6-4c03-b0ca-29fdbc55f117" ], + "x-ms-request-id": [ "7a19cfa6-1926-4568-8b61-83deffc335aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e0b6f83d-89a0-40c5-a685-4d4069576d0d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3f55f296-cc90-433d-8a2c-76cc9ebc6b9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054247Z:3f55f296-cc90-433d-8a2c-76cc9ebc6b9f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44f69f3f-e649-4c53-b0bf-3ed6bf4d5b52" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "f6dd43e2-ae4b-4d73-9814-e27ddb5d9da0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080905Z:f6dd43e2-ae4b-4d73-9814-e27ddb5d9da0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB97A458E0F84417BE78B775D1F4850E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47F6F41688804056B76246F08195B586 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1250" ], + "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting1\":\"456789\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting1\": \"456789\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-7enhzr3v45\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting2\": \"PowerShellRocks\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1123" ] + "Content-Length": [ "1107" ] } }, "Response": { @@ -1034,43 +1040,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF89E522F0\"" ], + "ETag": [ "\"1DC4FBDC81058C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4daff80f-72ab-4ad4-8c84-361a0a5ac0a1" ], + "x-ms-request-id": [ "f587cc9c-c0c9-490c-8379-35b192c565b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04a902d5-b3fc-4457-8fb5-4f07afca3eb9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/134ac8d5-2249-4bd3-8305-50ade078b158" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "461da4d3-4ca8-4ae9-b703-644dcbdd7fc2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054248Z:461da4d3-4ca8-4ae9-b703-644dcbdd7fc2" ], + "x-ms-correlation-request-id": [ "c736c375-50ea-41b9-a8a5-f4f3beda76c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080906Z:c736c375-50ea-41b9-a8a5-f4f3beda76c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F91F35C3406470C97FBE2E1E494CE44 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0D5461AB0D5496D98A0A31C6676E75B Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1313" ], + "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "124" ], - "x-ms-client-request-id": [ "c008e0fd-6e1b-4fb9-b8d4-ef52fa97b05a" ], + "x-ms-unique-id": [ "160" ], + "x-ms-client-request-id": [ "facf508a-0dff-46d2-a341-bb49b5e7da47" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1082,40 +1088,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a4dc341-6b0b-4975-9523-36d90feded5e" ], + "x-ms-request-id": [ "05fb8940-682e-4997-a81b-4b138db4e0ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b9f2188-786a-419d-859a-77dde2348c3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9789bac-7305-41eb-b97a-ddc0a17d4751" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "46966df8-6faa-4f8c-9e58-2707ade7efd9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054249Z:46966df8-6faa-4f8c-9e58-2707ade7efd9" ], + "x-ms-correlation-request-id": [ "58417aad-1cbb-4adb-bdf7-00638ab8082e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080906Z:58417aad-1cbb-4adb-bdf7-00638ab8082e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F159C3EFA84492C97403D6E72E9C6CA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D8283DF4BB440F3BEBB03CD02586DBB Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1313" ], + "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "125" ], - "x-ms-client-request-id": [ "f1bfe152-86f3-4bf4-a085-d6151687c501" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "7db713e2-566b-4cc4-a7c2-07d331ceaae3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1127,38 +1133,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6b51b77-dd2e-4274-ac39-1c93d5177979" ], + "x-ms-request-id": [ "40678ff5-3891-4bf7-941f-05b5857a095b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00e2bd8e-ceaf-4f65-9b34-31a31a529ec3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/defd0f7e-95fd-4a09-a43b-fa5aa17c1420" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ffbfac08-5e8a-4f73-9769-53a29febf60f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054249Z:ffbfac08-5e8a-4f73-9769-53a29febf60f" ], + "x-ms-correlation-request-id": [ "24601993-cecf-4e9d-840f-26211acb7211" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080906Z:24601993-cecf-4e9d-840f-26211acb7211" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 332E0F0F3B5844A3843ED12A7E2B1C7D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55107E383245403EB28927E9D9234DD1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1313" ], + "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting2\":\"PowerShellRocks\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting1\":\"456789\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting2\":\"PowerShellRocks\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-7enhzr3v45\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1050" ] + "Content-Length": [ "1034" ] } }, "Response": { @@ -1166,43 +1172,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF8B959210\"" ], + "ETag": [ "\"1DC4FBDC9597A90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbdad858-6ee9-4bc4-a12a-0cd58c45ad67" ], + "x-ms-request-id": [ "86122eaf-da9c-4461-a53a-88e59abfc15a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64bdb5eb-fbaf-4411-9b5e-98436d7b2d70" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf7ccd69-f5ce-4aea-84bf-7b0cd5a93288" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b4e69e7a-ec41-44db-95f7-247a060948eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:b4e69e7a-ec41-44db-95f7-247a060948eb" ], + "x-ms-correlation-request-id": [ "c9bc70c0-c24b-4d26-83ce-43ae6ab1c1c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080908Z:c9bc70c0-c24b-4d26-83ce-43ae6ab1c1c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66DF693EC364414B96D7DC18F7DE2F3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D48EF819BBE45CDA5A1B51D2B6EBDFD Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1254" ], + "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "127" ], - "x-ms-client-request-id": [ "116d1178-48c6-4e59-a1f7-a1fda7aa99e1" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "758883c8-2d7b-40bc-8621-01ada2995029" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1214,40 +1220,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91d8974e-9a45-4ba4-900f-ba4b0f2f98ae" ], + "x-ms-request-id": [ "6a4421c5-d9ca-477a-8f0d-819dc6dea4e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dca6e54-3bc5-4a2c-a577-c3cccfb9c5b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/652ab380-ceee-4013-87c8-e51e7bf881ca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b7b20099-d6c8-4666-8b47-788c1cfe88fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:b7b20099-d6c8-4666-8b47-788c1cfe88fb" ], + "x-ms-correlation-request-id": [ "60f7259e-c148-4d15-b5a3-d39595cbe782" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080908Z:60f7259e-c148-4d15-b5a3-d39595cbe782" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FDC6AF2A0F44678A7B5DF4409F2B73F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8FCA86212D4446EAD1D231F8ED26866 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1254" ], + "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "128" ], - "x-ms-client-request-id": [ "9a7ef938-e5a7-41a7-9247-b66db4dc2f11" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "49c13d69-42a4-4ba1-b67f-370106d91bfe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1258,42 +1264,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF8CDB0A60\"" ], + "ETag": [ "\"1DC4FBDCA59D390\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9b41f09-55fc-4be4-a801-6868ba6fff9d" ], + "x-ms-request-id": [ "ba3a98fd-9433-44cd-a47b-0de9295ca27d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "78a921e7-f3e9-4d66-a109-9a488562548a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:78a921e7-f3e9-4d66-a109-9a488562548a" ], + "x-ms-correlation-request-id": [ "5f486210-0823-42a9-82b9-11c7cda257cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080908Z:5f486210-0823-42a9-82b9-11c7cda257cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2104A0E4D6794485939E7969986E79D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 178D340A8FEB48EFA337805CADBD5200 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:50.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:07.657\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "3c745e62-be0f-4f3b-876f-959f8d8cce05" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "95eb3b53-3a8d-42a1-8f29-2c14d4ebea53" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1305,40 +1311,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5db7b46-d8eb-4753-ae5e-6eb3e0e37594" ], + "x-ms-request-id": [ "308ced54-919e-4878-b6b5-c5bc2ebd7c8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa4384e8-a358-4e4d-9db9-6c31cfafa99c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04a342da-7b83-4eef-beb0-d1c69b79bbc6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "091cf946-9089-4b80-b657-4b035d7fe283" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054251Z:091cf946-9089-4b80-b657-4b035d7fe283" ], + "x-ms-correlation-request-id": [ "b59fa285-ea05-443a-8c31-3a74e88c3bcf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080908Z:b59fa285-ea05-443a-8c31-3a74e88c3bcf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F871139A851C484D86B8F9432857967E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:51Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD0447C321BB4F89B90BDBC7019E3AE2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1254" ], + "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "130" ], - "x-ms-client-request-id": [ "647736e9-5822-4f83-857b-d6d4e74c55ab" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "377fde27-8ff0-40f8-954e-108c34a64553" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1350,41 +1356,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b0b5e1c-3b73-4002-8054-4a05df40eb4d" ], + "x-ms-request-id": [ "de96ba33-7063-46d4-8b6e-164b4816807c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa988c33-a7c9-4065-9e8a-81457accfebd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/55895354-2b5f-40a4-b31c-205468cd9176" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f57bea22-8651-4760-b3b0-0bfe41207112" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054252Z:f57bea22-8651-4760-b3b0-0bfe41207112" ], + "x-ms-correlation-request-id": [ "d107f23b-d89b-49fd-8297-de75622c2d1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080909Z:d107f23b-d89b-49fd-8297-de75622c2d1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E778675D64E44EAAD1219F8369D1D41 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07F75F039C2844C6942CF3771309CEE9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09: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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "131" ], - "x-ms-client-request-id": [ "452d1cff-c8fb-497c-9d3d-979549725860" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "04b1cff3-b69c-4867-9ea6-62cef860bc7e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1396,38 +1402,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe75096c-cfbc-494e-b20a-30fad1b086a6" ], + "x-ms-request-id": [ "f2dc9406-ac25-40c6-8ddf-8c5722b65652" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/514864a2-d53c-479e-909b-236bb38e7a03" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5abf1d8f-c964-43dd-b57d-de91c2d20d9a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "7fa8d61c-e442-4657-a7fe-75f7b0b46196" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054252Z:7fa8d61c-e442-4657-a7fe-75f7b0b46196" ], + "x-ms-correlation-request-id": [ "ee5c477e-7b4e-45d4-b5ba-7eeadbcc006d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080909Z:ee5c477e-7b4e-45d4-b5ba-7eeadbcc006d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B80A072648B40D7A4F7ABDD93C00D35 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16FAC5CE62174358B2CFF245A6B6EB6D Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1254" ], + "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"MyAppSetting3\":\"123456\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting3\":\"123456\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01+33": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsDashboard\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-w41plh08gr\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-7enhzr3v45\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "973" ] + "Content-Length": [ "957" ] } }, "Response": { @@ -1435,43 +1441,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF8CDB0A60\"" ], + "ETag": [ "\"1DC4FBDCA59D390\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4df5cb4f-5804-4012-b064-9201c11ead09" ], + "x-ms-request-id": [ "b1e44f3c-bae9-4f39-a61a-a41fc6ddcafa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d260e3e-1b5b-441e-8950-6658d2580bd8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40a92883-e115-4fb4-b7d4-e7465ab015b2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "500dbb9a-da0d-4c59-b6e3-fe5e01b29752" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:500dbb9a-da0d-4c59-b6e3-fe5e01b29752" ], + "x-ms-correlation-request-id": [ "eb1bd8fb-c095-49ac-ac9b-e722c1dd6f49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080910Z:eb1bd8fb-c095-49ac-ac9b-e722c1dd6f49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61CCE02E189E4075918854D0CE36BFEA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:52Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE6149DF775346B79014E68F96F2D6F5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01+34": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "133" ], - "x-ms-client-request-id": [ "68740571-1010-409d-8de4-af1d5eb746f9" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "c1afec86-4918-470a-adc1-42574d0ec28f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1483,40 +1489,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "915c851e-12ea-4ebb-a0ce-2b4c7206a8b4" ], + "x-ms-request-id": [ "75c820b1-b7cc-45cd-b28b-7eb80f21c332" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d55a5770-93c9-40c0-be0f-f71b67f44d38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8bed340-20b5-4fc6-94d4-e66077043501" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9e99a065-d9b9-494e-9382-6bfda0c90e28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:9e99a065-d9b9-494e-9382-6bfda0c90e28" ], + "x-ms-correlation-request-id": [ "7c27f029-378a-4f4b-9445-5c00d929f062" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080910Z:7c27f029-378a-4f4b-9445-5c00d929f062" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F62D064A57224F5F8B2B8668A92FAD52 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF30605D15E64DEF9C5412BD4EBDEAE9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "134" ], - "x-ms-client-request-id": [ "e6e66f87-860f-4589-95ad-d4ce46258d5f" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "28614ca6-0195-4003-9f27-4bcb4f0b9672" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1527,42 +1533,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF8E802EE0\"" ], + "ETag": [ "\"1DC4FBDCBCF0E70\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "952f0c1b-0dd1-4ecf-a1c1-fbcd676cdbaa" ], + "x-ms-request-id": [ "412acca7-dcf8-4503-a864-c9ae581d2e7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84df3eaa-4409-479f-b50e-d4972ea57d1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054254Z:84df3eaa-4409-479f-b50e-d4972ea57d1d" ], + "x-ms-correlation-request-id": [ "2ca6029c-4722-4242-952c-4e51af0654bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080911Z:2ca6029c-4722-4242-952c-4e51af0654bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 97C13C4DD1CE4BD2AB6BDEB39937A781 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B09174BFE11D4CD084C1832E0AC28360 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest1-w41plh08gr\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"func-powershell-newtest1-w41plh08gr.scm.azurewebsites.net\"],\"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-w41plh08gr.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-w41plh08gr.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:42:53.39\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-w41plh08gr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-w41plh08gr\\\\$Func-PowerShell-NewTest1-w41plh08gr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest1-w41plh08gr.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest1-7enhzr3v45\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"func-powershell-newtest1-7enhzr3v45.scm.azurewebsites.net\"],\"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-7enhzr3v45.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-7enhzr3v45.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:10.103\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7enhzr3v45\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest1-7enhzr3v45\\\\$Func-PowerShell-NewTest1-7enhzr3v45\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest1-7enhzr3v45.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01+36": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "135" ], - "x-ms-client-request-id": [ "f97ac66b-1eef-430a-823a-d2fa10dd3a39" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "e4350215-0c8c-4675-a7c5-d44939d5e3bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1574,40 +1580,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6083c3b0-de41-4f28-aaf7-e7172f105137" ], + "x-ms-request-id": [ "71ff4da7-a57f-4760-9f8b-77f599cf63d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f754b642-9a13-46b1-9a49-f155641486e0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "37d68b4c-f44d-440e-b171-70b3f709cb5f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054255Z:37d68b4c-f44d-440e-b171-70b3f709cb5f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/402264fe-bcb4-4c0b-a026-fa4550328d4c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "ae9ac0ef-76aa-4324-ae2c-4923442676cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080911Z:ae9ac0ef-76aa-4324-ae2c-4923442676cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD4DB084020944EBAE8F5A06BF08C45B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 937B5A7164A84A4C8DC9FA95F2F2E88E Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-w41plh08gr\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-7enhzr3v45\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "136" ], - "x-ms-client-request-id": [ "3ff362d6-56ec-4502-8077-2a2737e76146" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "96c6c00d-3694-46a3-88f2-1230fca03066" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1619,41 +1625,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7be3bdfd-7c15-4b6f-9393-810bbe4a4ac6" ], + "x-ms-request-id": [ "9edde186-006c-47e7-8d5a-5e99a3d7598d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/120eb90d-754f-42b7-8eda-4b90d7192670" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c240a856-10f6-414e-85f0-f7c54af5acf8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0bc677b8-685a-4b13-871d-37fee9620bb6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054255Z:0bc677b8-685a-4b13-871d-37fee9620bb6" ], + "x-ms-correlation-request-id": [ "5613949f-faa7-4833-a7ba-c30b271849d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080911Z:5613949f-faa7-4833-a7ba-c30b271849d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF2A1079906843AA846E8603CB33D409 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:42:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E8F5F9276034FCBBA23409A61B80E9C Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr/config/web\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45/config/web\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+38": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+38": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-w41plh08gr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-7enhzr3v45?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "f8a0b44d-e7a9-452d-9d08-23f183b824bc" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "af03131f-23ed-4413-9a9b-761ea414606e" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1664,20 +1670,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DF8E802EE0\"" ], + "ETag": [ "\"1DC4FBDCBCF0E70\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "576ec55a-9df4-49ef-b2a6-ef221badcbb9" ], + "x-ms-request-id": [ "91d8941a-d743-4058-92e5-5f0f25bb24ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76f93245-c1c5-4514-a3a7-9b2d47346208" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e4c96aa-b6cf-4fe6-9f7f-606c869be00e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "1c031497-4e2b-479e-bd6c-d75aaacd6c4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054306Z:1c031497-4e2b-479e-bd6c-d75aaacd6c4e" ], + "x-ms-correlation-request-id": [ "81a86973-753f-41d8-852b-bb4fd104e0e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080923Z:81a86973-753f-41d8-852b-bb4fd104e0e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 620FF68E15454A30B0763F3FB043E5FD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:42:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89A53B4090EC42298DB46B8F92280A50 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 18f3161e93ce..64d7566bba9b 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-6qbcpwifmx\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-kwj3tq4zua\",\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": [ "ac022d18-e607-4148-ae7b-85d60bb2e3c1" ], + "x-ms-request-id": [ "76fb9b4b-a533-4c5f-9957-64b7a3b412c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02a45488-a60c-47e5-92aa-3accc0f31fc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9960d31-2265-41a9-9a1e-f3846054dc6c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a8898d3d-fd96-4499-a656-70bac01f58e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054307Z:a8898d3d-fd96-4499-a656-70bac01f58e2" ], + "x-ms-correlation-request-id": [ "99218ed3-3a2c-4f58-b7ae-85ecb10d496d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080923Z:99218ed3-3a2c-4f58-b7ae-85ecb10d496d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95C39497371241ADB817A30B84FFC00D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3A3B71696D44BDA9A127BE4C428FC0A Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "4eeb59f3-06db-45c9-9f9b-baed85f64faa" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "7ecb6135-1508-4747-bccb-d8a748ff1ded" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,125 +63,131 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d16cef35-9083-4388-b18b-132009be80e9" ], + "x-ms-original-request-ids": [ "3c7a5a09-4f3a-43e3-a3a5-ed25049c9995" ], "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": [ "c0453330-c290-4c62-9c8f-908982783687" ], - "x-ms-correlation-request-id": [ "c0453330-c290-4c62-9c8f-908982783687" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054307Z:c0453330-c290-4c62-9c8f-908982783687" ], + "x-ms-request-id": [ "6eaf8b69-5993-490c-b772-8f907a273288" ], + "x-ms-correlation-request-id": [ "6eaf8b69-5993-490c-b772-8f907a273288" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T080924Z:6eaf8b69-5993-490c-b772-8f907a273288" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 121A46CA88B9475981A7AA2A58961C73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7148D277515A460B930210BAE9A8AD38 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/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": [ "9e3f5f21-5642-4a6b-b945-3acf08830634" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "ccd5cb15-9b5b-4ebc-834b-6cb6b291b5e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ab567aec-608e-48ab-af2e-7fb482dfe677" ], - "x-ms-correlation-request-id": [ "ab567aec-608e-48ab-af2e-7fb482dfe677" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054307Z:ab567aec-608e-48ab-af2e-7fb482dfe677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0c8c2661-0173-4265-b86d-36a216178224" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "33a40467-d3d5-4d3f-9dfe-ef675afd8c84" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T080924Z:33a40467-d3d5-4d3f-9dfe-ef675afd8c84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4621CCE068B4A70A3E7415E8D16C48B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C35F86BE2D2D4AE1AED942F1250AC3B2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/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": [ "dd647fba-639e-4825-a7a6-346ea7e1659a" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "df9344e0-ed7b-4cc4-8572-f1d2709b9b76" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "d4f20837-e1e9-41fa-b144-2548e89521a7" ], - "x-ms-correlation-request-id": [ "d4f20837-e1e9-41fa-b144-2548e89521a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:d4f20837-e1e9-41fa-b144-2548e89521a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "944f5006-0c00-4eea-8aea-5f8af0a8ffd9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5991b849-bc27-41e0-9e62-04395244ea12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080924Z:5991b849-bc27-41e0-9e62-04395244ea12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6047F6D19AF44CAABE6E0DCC9A599306 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D489DA1D39BA4CB592861639D2E22F06 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "252" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "69cd5015-974a-45d2-a827-f2e1c04b3ab9" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "1d43308f-bc22-486d-9d91-a4062cabf4c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -193,40 +199,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd10ff48-5865-4551-9e9f-fca9992d1f89" ], + "x-ms-request-id": [ "0703173a-745c-4cdc-8ec2-66dc697728e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8fec1f2f-b4e5-489f-b54f-6e6b808d7cb5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:8fec1f2f-b4e5-489f-b54f-6e6b808d7cb5" ], + "x-ms-correlation-request-id": [ "c8a02d3f-e091-4b17-801e-0a00c8f5e17a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080924Z:c8a02d3f-e091-4b17-801e-0a00c8f5e17a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DBCE68BBD564C09BB432C1F216F303E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03C67F5FAEF1438798C7D652F7BB9717 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "2a41c14d-9370-4431-9716-9ee23080bf7d" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "e5b1b543-9f45-4a28-ba6b-5cbdb5d3d782" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -238,24 +244,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca8b8e72-3b66-4ba0-b7e9-ab48e9872b42" ], + "x-ms-request-id": [ "55542f84-d6c0-4919-a338-eedef23797fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0bd59e6a-e025-478d-95f6-e0a31db45d0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:0bd59e6a-e025-478d-95f6-e0a31db45d0d" ], + "x-ms-correlation-request-id": [ "6ac6dc3a-4749-422e-8512-1f780580c935" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080925Z:6ac6dc3a-4749-422e-8512-1f780580c935" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EB7D3CFE663430787F0289ACB89D667 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3D2D071F98941159A3ACDA80FB24F5C Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -266,12 +272,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "d5a8abe0-7ebe-49c5-b75f-1b6fc83d543a" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "a9ffcb72-af28-4bd1-b4a7-5aab54cb127a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -282,40 +288,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "708636f1-7820-4579-98f1-83b75d346669" ], + "x-ms-original-request-ids": [ "20423ded-9f74-4747-b67a-84ca7a5c9c59" ], "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": [ "855c041b-13f3-41ab-925d-e6e0663eb353" ], - "x-ms-correlation-request-id": [ "855c041b-13f3-41ab-925d-e6e0663eb353" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054308Z:855c041b-13f3-41ab-925d-e6e0663eb353" ], + "x-ms-request-id": [ "96b2b270-5b7a-41ec-b831-e6f88f18771e" ], + "x-ms-correlation-request-id": [ "96b2b270-5b7a-41ec-b831-e6f88f18771e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080925Z:96b2b270-5b7a-41ec-b831-e6f88f18771e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAC1F73082C14A8FA073FDDBB8C3F618 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBF2FB5A0F894C798C6110F569A35D68 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "a960a549-8e41-4a93-b21b-7e43e74b5f42" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "5576efd1-9832-438f-9960-65d0c72ac444" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -326,30 +332,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f998f14b-482e-471a-bd3a-7bba667abce5" ], + "x-ms-request-id": [ "e9aa35b6-81f9-444e-9a4d-52fb20c3fe6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/30d8ea3c-6d76-4682-ba9a-55fe30ee7fa6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c76723d2-000a-4d02-b3f4-a61dbe440aeb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "de8a8950-71cd-482f-a0f5-b9efc840eb0e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054308Z:de8a8950-71cd-482f-a0f5-b9efc840eb0e" ], + "x-ms-correlation-request-id": [ "061ba871-9e4e-4f90-bae8-9e6fa470ce72" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T080925Z:061ba871-9e4e-4f90-bae8-9e6fa470ce72" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C99D881684B546CBBEF4DA6E4ACA01BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B98EC84E6C024AD38F71ABD64B3934A5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"wnxFFwQSGeJ1dLtZonlXRHUMG2fvkLta3Kafx++scJ0kOKyogGnmJjuIhsT+R8mqSeSOpbUd4lAY+AStMNKVLg==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-CustomImage-6qbcpwifmx?api-version=2015-05-01+9": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Insights/components/Functions-CustomImage-kwj3tq4zua?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-CustomImage-6qbcpwifmx?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Insights/components/Functions-CustomImage-kwj3tq4zua?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": { @@ -369,36 +375,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/46333b3e-ab3d-47bf-ba46-9a535d307faf" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "d6234484-343f-4a4a-afa9-44958fd3c686" ], - "x-ms-correlation-request-id": [ "d6234484-343f-4a4a-afa9-44958fd3c686" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054332Z:d6234484-343f-4a4a-afa9-44958fd3c686" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bab8b8c0-68d8-4507-a577-b7c7f862b6d7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "c2bbd320-5765-4299-a2c5-55ddda267c19" ], + "x-ms-correlation-request-id": [ "c2bbd320-5765-4299-a2c5-55ddda267c19" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080930Z:c2bbd320-5765-4299-a2c5-55ddda267c19" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ADF0A9AC3CBA4E26BA6A78C3748B291A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:08Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED204629EC964E429D79B7C2DEDEC64D Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1663" ], + "Content-Length": [ "1664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69004cdb-0000-0300-0000-68e74b840000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-CustomImage-6qbcpwifmx\",\r\n \"name\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"AppId\": \"e9ddb7e5-075f-48e7-a604-ff4b22284179\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bbad4093-7a68-46df-81ac-6b597ad7b16b\",\r\n \"ConnectionString\": \"InstrumentationKey=bbad4093-7a68-46df-81ac-6b597ad7b16b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ddb7e5-075f-48e7-a604-ff4b22284179\",\r\n \"Name\": \"Functions-CustomImage-6qbcpwifmx\",\r\n \"CreationDate\": \"2025-10-09T05:43:09.447569+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-6qbcpwifmx_e9ddb7e5-075f-48e7-a604-ff4b22284179_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-6qbcpwifmx-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\": \"\\\"d203a3ea-0000-0300-0000-690da93a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/microsoft.insights/components/Functions-CustomImage-kwj3tq4zua\",\r\n \"name\": \"Functions-CustomImage-kwj3tq4zua\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-kwj3tq4zua\",\r\n \"AppId\": \"1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bfd76a48-6560-40b1-b7a5-d1074e13bd74\",\r\n \"ConnectionString\": \"InstrumentationKey=bfd76a48-6560-40b1-b7a5-d1074e13bd74;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\",\r\n \"Name\": \"Functions-CustomImage-kwj3tq4zua\",\r\n \"CreationDate\": \"2025-11-07T08:09:26.2322077+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-kwj3tq4zua_1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-kwj3tq4zua-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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-6qbcpwifmx\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"bbad4093-7a68-46df-81ac-6b597ad7b16b\"\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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-kwj3tq4zua\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=bfd76a48-6560-40b1-b7a5-d1074e13bd74;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1915" ] + "Content-Length": [ "1841" ] } }, "Response": { @@ -406,43 +412,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFA7674E20\"" ], + "ETag": [ "\"1DC4FBDD90F22D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2257388e-6783-4b22-9ff4-8d22b3027d67" ], + "x-ms-request-id": [ "b1f38977-199c-4908-b64a-cd2214ee690d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02ede05e-50f5-41b4-8386-58aaff7b4a1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/206a4bbc-332a-4de5-8883-ab206a22f927" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "653e6b13-b4d8-4e0d-a212-020b694b0271" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054355Z:653e6b13-b4d8-4e0d-a212-020b694b0271" ], + "x-ms-correlation-request-id": [ "ccb73fa3-4596-470b-abe5-891955fc0c51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T080952Z:ccb73fa3-4596-470b-abe5-891955fc0c51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C61483A9C3FC49FA8BDDBFF68C22B367 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:43:32Z" ], - "Date": [ "Thu, 09 Oct 2025 05:43:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DBCABC5F91E454991AA9A42007D31DE Ref B: MWH011020808025 Ref C: 2025-11-07T08:09:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:09:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8491" ], + "Content-Length": [ "8499" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:34.2466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-CustomImage-kwj3tq4zua\",\"repositorySiteName\":\"Functions-CustomImage-kwj3tq4zua\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"functions-customimage-kwj3tq4zua.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-kwj3tq4zua.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-kwj3tq4zua.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:31.76\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-kwj3tq4zua\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-CustomImage-kwj3tq4zua\\\\$Functions-CustomImage-kwj3tq4zua\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-customimage-kwj3tq4zua.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "1b9996cc-625b-4916-8cef-aab0d053b5ee" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "424aef41-cf0f-458c-8713-5571c6f7068f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -452,42 +458,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFB343CDE0\"" ], + "ETag": [ "\"1DC4FBDE4C68160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7644d0a6-9259-408e-941e-8f0c5c362c3d" ], + "x-ms-request-id": [ "c084748b-eca1-476e-8ba2-eda79357185d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13aa3f9f-f7f9-4241-ab53-cbc525bf0e9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:13aa3f9f-f7f9-4241-ab53-cbc525bf0e9f" ], + "x-ms-correlation-request-id": [ "f40c0920-bf3f-4e31-8282-9625bdc8f791" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081022Z:f40c0920-bf3f-4e31-8282-9625bdc8f791" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13F24895A07244A485BC024369CD6145 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1E10E8B443849638ACB74668F98E161 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8390" ], + "Content-Length": [ "8511" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-CustomImage-kwj3tq4zua\",\"repositorySiteName\":\"Functions-CustomImage-kwj3tq4zua\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"functions-customimage-kwj3tq4zua.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-kwj3tq4zua.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-kwj3tq4zua.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:51.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\":\"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-kwj3tq4zua\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-CustomImage-kwj3tq4zua\\\\$Functions-CustomImage-kwj3tq4zua\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "e84fef30-e52f-4fd8-94cf-1d09f4fac6ed" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "ce0db04e-0e14-4c53-9158-a4478491a76f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -498,42 +504,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFB343CDE0\"" ], + "ETag": [ "\"1DC4FBDE4C68160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c1f920d-547c-4bc1-bad6-d81a8274b076" ], + "x-ms-request-id": [ "dc7023bf-0247-4720-93d9-da2d84551a43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8f04b051-5ffc-419a-aa33-974643505763" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:8f04b051-5ffc-419a-aa33-974643505763" ], + "x-ms-correlation-request-id": [ "475ebd75-a028-41e2-aa52-c94311f968f2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081025Z:475ebd75-a028-41e2-aa52-c94311f968f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5473824DB2A94875B568C65D936CC6FA Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CCD6A483E884DC594CBE5A45DC3EE1F Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8390" ], + "Content-Length": [ "8511" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-CustomImage-kwj3tq4zua\",\"repositorySiteName\":\"Functions-CustomImage-kwj3tq4zua\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"functions-customimage-kwj3tq4zua.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-kwj3tq4zua.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-kwj3tq4zua.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:51.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\":\"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-kwj3tq4zua\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-CustomImage-kwj3tq4zua\\\\$Functions-CustomImage-kwj3tq4zua\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "3a327797-7af9-4c07-91c9-f95560ed3d85" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "8d29ec02-c9cf-4109-8012-128264f7027c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -545,40 +551,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "225f5b7c-e052-4501-ad2a-e5f5bcfa0b83" ], + "x-ms-request-id": [ "c3c838f3-2e1b-4772-bb4e-583edc75adaf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a501bf96-43ce-4a60-9933-c3e09009de47" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/263a4856-d86e-4a2b-9fa8-8d72099138c0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5de0dee5-8e42-422c-9e9f-b29d2b2e5d92" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:5de0dee5-8e42-422c-9e9f-b29d2b2e5d92" ], + "x-ms-correlation-request-id": [ "c1f2c1aa-01ed-4d9b-813c-572c9e6e21c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081025Z:c1f2c1aa-01ed-4d9b-813c-572c9e6e21c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2A9C7D709B9408380176F8BE0712423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BD0F9FDA62B4B28A61A789C6913B369 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1257" ], + "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-6qbcpwifmx\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-kwj3tq4zua\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bfd76a48-6560-40b1-b7a5-d1074e13bd74;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "68c5b385-4a78-42f1-bfdc-5c0a0ce50588" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "c5b54202-c3a6-406b-8367-13f873e9a28e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -590,41 +596,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f243c02e-110c-488f-8782-dd05fe374b30" ], + "x-ms-request-id": [ "6762d224-21c0-498e-8aa8-3b81c12ef79a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0ccdd07-9c00-4780-958c-ab6a358d212b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f8537e3-7306-41fa-b02b-68dece20e101" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c6e343c-091a-4371-8a59-c75e02fbecaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054426Z:9c6e343c-091a-4371-8a59-c75e02fbecaf" ], + "x-ms-correlation-request-id": [ "0552b21a-22dd-486c-813c-fe038f9dcf4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081025Z:0552b21a-22dd-486c-813c-fe038f9dcf4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16006B0C4B944A268AB2E3C1008A5A7E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B2EF3AAE42040BF9002A0F00FABFD96 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/web\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites/config\",\"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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "f3833ad6-abe5-4242-bd61-cb216acec2f1" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "68a53084-bdc0-4d73-8932-9797775d1ca8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -635,42 +641,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFB343CDE0\"" ], + "ETag": [ "\"1DC4FBDE4C68160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6618af75-5c0d-481d-b9cd-cc56aa3c39e3" ], + "x-ms-request-id": [ "3bca8179-8fd6-4083-90fa-8ae448cfd38b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00a44352-7f32-468b-a2f3-6a78de7e802f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:00a44352-7f32-468b-a2f3-6a78de7e802f" ], + "x-ms-correlation-request-id": [ "cc906d02-13ea-4a1f-91b9-8a31377dcb66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081025Z:cc906d02-13ea-4a1f-91b9-8a31377dcb66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A79CA966B22047F7895515CA5C4DACAF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:26Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FC17E049D2040289BA8A0947BE580A4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8390" ], + "Content-Length": [ "8511" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-CustomImage-6qbcpwifmx\",\"repositorySiteName\":\"Functions-CustomImage-6qbcpwifmx\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"functions-customimage-6qbcpwifmx.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-6qbcpwifmx.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-6qbcpwifmx.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:43:55.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-6qbcpwifmx\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-CustomImage-6qbcpwifmx\\\\$Functions-CustomImage-6qbcpwifmx\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-customimage-6qbcpwifmx.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-CustomImage-kwj3tq4zua\",\"repositorySiteName\":\"Functions-CustomImage-kwj3tq4zua\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"functions-customimage-kwj3tq4zua.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-kwj3tq4zua.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-kwj3tq4zua.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:09:51.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\":\"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-kwj3tq4zua\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-CustomImage-kwj3tq4zua\\\\$Functions-CustomImage-kwj3tq4zua\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-customimage-kwj3tq4zua.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "80a9dc7d-f0b9-4c86-9f34-0749b81b6e0b" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "822b8527-3a20-47f8-83e4-37ea457d3585" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -682,40 +688,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5633f1d-6ba1-4cd0-9bad-034fce40ef5e" ], + "x-ms-request-id": [ "3e21b785-742d-4310-930b-e0cc33af975e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37cb2dd5-e8ea-4884-b8a3-b5e21d506d66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edae0bba-506b-45eb-a4d7-a02d77ba9d52" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "22ee5890-e9ef-4576-8e43-b215844d456a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:22ee5890-e9ef-4576-8e43-b215844d456a" ], + "x-ms-correlation-request-id": [ "a0a45217-46fc-462e-9884-f66cd9ac4e30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081026Z:a0a45217-46fc-462e-9884-f66cd9ac4e30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BF088B059E745BDAD152520CD825732 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0804F82A1C4D4ABEB8BE1CFCDABC3BF9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1257" ], + "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-6qbcpwifmx\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-kwj3tq4zua\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=bfd76a48-6560-40b1-b7a5-d1074e13bd74;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/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-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "2281eb5d-3b22-4bab-97e1-b7c199f1b3b9" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "877a12ba-6e9b-44a8-8d0b-d2d0004969de" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -727,41 +733,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29799022-019d-4c6f-a22f-510462b849a7" ], + "x-ms-request-id": [ "977d6428-0e1d-43d0-a89e-624477d8aa7a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e88e68d6-9248-4a9e-8140-ff3f9fbbcb2c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4cd79654-9ed2-4f8f-9598-3eb54c0e6dff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054427Z:4cd79654-9ed2-4f8f-9598-3eb54c0e6dff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/677a1228-fee0-44a4-bfd2-01afcaaf96ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "41c0e95c-01b2-440c-a6fb-0fff1e9bd939" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081026Z:41c0e95c-01b2-440c-a6fb-0fff1e9bd939" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A92FA1176AE5419F8324F799B3678A73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7338C44EED074352A3A51E5E7A074D78 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx/config/web\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua/config/web\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?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-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-CustomImage-6qbcpwifmx?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-CustomImage-kwj3tq4zua?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "03ffabb4-8ce2-4864-aa23-850157349e81" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "a5aee72d-2fa4-4d5c-afe6-324b767594e2" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -772,20 +778,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFB343CDE0\"" ], + "ETag": [ "\"1DC4FBDE4C68160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4d37141-935f-41a6-8044-9b5b30fce72e" ], + "x-ms-request-id": [ "ff268c97-4724-44e6-b027-fe91ccd970b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9c55097-5e1e-423d-a881-79a6a183f358" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b790deff-f943-4732-aac8-4cd16e0f7165" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "06f5df6a-2cb2-456f-b0d2-e86f7aebcd8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054435Z:06f5df6a-2cb2-456f-b0d2-e86f7aebcd8a" ], + "x-ms-correlation-request-id": [ "480022d4-9c01-48fc-8d02-9bb5d78c14cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081045Z:480022d4-9c01-48fc-8d02-9bb5d78c14cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F5A3B5D11D045F1B1B09CEA980429F5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:27Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 386CB39D74A94C129E4FED41F59F99D7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -799,7 +805,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -814,18 +820,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2793712-6569-48da-bef2-a4a0946dd148" ], + "x-ms-request-id": [ "efb1d0ab-bea8-48f6-b4d6-fd649428c9e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc29f694-0b63-4d2d-8ec0-17a8a4c53fc9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b7c74fe-97c8-4efd-9e0d-0a690dceac75" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9a56f841-9e51-4319-a815-e5f64f1c8416" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054436Z:9a56f841-9e51-4319-a815-e5f64f1c8416" ], + "x-ms-correlation-request-id": [ "44ae4cb5-cd96-4519-8a28-8c5b18fe15c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081046Z:44ae4cb5-cd96-4519-8a28-8c5b18fe15c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83F3DB6969FA4826BF814D8BB887B7E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:35Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0484A15A2C040DE8532B26D1E51ED1B Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -843,12 +849,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "c0a7be61-96bb-4e71-9875-96a414ab4c63" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "540beb20-0335-42af-adfd-103a125318d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -860,25 +866,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bbf3eef-d385-4da9-b1ab-53773d7d5df8" ], + "x-ms-request-id": [ "8a476cf2-cb76-4a8e-b3e8-098201f12c2a" ], "X-AspNet-Version": [ "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/981476f5-c91e-4052-9ff6-a5b69bdf7762" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3c631f9a-d2f9-4f19-8b7e-238e485ecf6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13b07f6e-cf32-4243-9201-923a0cf70a16" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054436Z:13b07f6e-cf32-4243-9201-923a0cf70a16" ], + "x-ms-correlation-request-id": [ "9c52177c-f97a-4432-ac4c-24102ea142d4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081046Z:9c52177c-f97a-4432-ac4c-24102ea142d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11ADBE1C5C3E40B798DEAC3586172292 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 374C1945436343A488E20D920DCF92E3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -889,12 +895,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "7a423d25-380b-46de-b212-21f2db1bf115" ], + "x-ms-unique-id": [ "194" ], + "x-ms-client-request-id": [ "39c58ecd-1458-468f-9a1a-db79c1b14df7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -905,40 +911,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "af56dade-4b0f-476e-a82b-2c0e77029e52" ], + "x-ms-original-request-ids": [ "fefa7621-1433-463a-8543-6a634bb000fc" ], "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": [ "ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], - "x-ms-correlation-request-id": [ "ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054436Z:ca62f2e4-d4cf-4064-9dba-0a9c7737e071" ], + "x-ms-request-id": [ "cf0e2c41-90a9-4248-8a75-c7a3624dcb3d" ], + "x-ms-correlation-request-id": [ "cf0e2c41-90a9-4248-8a75-c7a3624dcb3d" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081046Z:cf0e2c41-90a9-4248-8a75-c7a3624dcb3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD144F113DCF4256B3C3BA167FF5360C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C628612BED545A0BBC673E1112318F2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "d51c3885-aaef-4f47-967f-bc70665021ab" ], + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "c76884e8-08a4-4ba6-ae77-68659b844846" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -949,30 +955,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "090d90fb-5eba-4119-9005-95ebd3aee21b" ], + "x-ms-request-id": [ "36766fac-63d6-4354-b669-791520c8e5ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b9ff8488-e827-4f31-9698-19c7c76a9fb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e6a86f39-328b-48f9-9943-9411db60aa53" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "171a17dd-d771-48e6-b4a4-9084cc42b7a9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054437Z:171a17dd-d771-48e6-b4a4-9084cc42b7a9" ], + "x-ms-correlation-request-id": [ "8db7f63c-d140-4a90-822c-15c449ebbe1a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081046Z:8db7f63c-d140-4a90-822c-15c449ebbe1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66C9851C279C446A9600DC9B471C9887 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86C561B1078A4DD98E991DABAE09C62A Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?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": { @@ -992,22 +998,68 @@ "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/c6799a27-6d64-4dd4-9a83-e25b5cd61c2a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "08564bf7-8818-4eb4-ab5a-47669c847d2f" ], - "x-ms-correlation-request-id": [ "08564bf7-8818-4eb4-ab5a-47669c847d2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054459Z:08564bf7-8818-4eb4-ab5a-47669c847d2f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/74952d1c-7256-4bd7-892d-120c03ee1cbc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "e8ef8a5b-18f5-4b9c-81af-d3935dfaf3e2" ], + "x-ms-correlation-request-id": [ "e8ef8a5b-18f5-4b9c-81af-d3935dfaf3e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081051Z:e8ef8a5b-18f5-4b9c-81af-d3935dfaf3e2" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E7D35933D02494894EAE67A189BA542 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:37Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D0681F781FB4699BDFF70636B47EED1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009dde-0000-0300-0000-68e74bdb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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\": \"\\\"d303bf00-0000-0300-0000-690da98b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-TestAppName-xwq3uydkht\",\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"AppId\": \"c9154bfc-cf81-4d7e-b38e-56aa610ca016\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"07a99878-b221-4039-9a3c-c4a9dd481295\",\r\n \"ConnectionString\": \"InstrumentationKey=07a99878-b221-4039-9a3c-c4a9dd481295;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c9154bfc-cf81-4d7e-b38e-56aa610ca016\",\r\n \"Name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"CreationDate\": \"2025-11-07T08:10:47.3487741+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-testappname-xwq3uydkht_c9154bfc-cf81-4d7e-b38e-56aa610ca016_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-xwq3uydkht-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 New-AzFunctionApp default OSType and FunctionsVersion for Custom+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+6": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "c8190eed-fc3a-4f0d-94fa-85e0e6e6fa64" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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/b73412f6-20d3-45b9-ab45-185ed2b08202" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "0cd3da56-b7c7-4e82-b0d5-a9bff733df28" ], + "x-ms-correlation-request-id": [ "0cd3da56-b7c7-4e82-b0d5-a9bff733df28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081055Z:0cd3da56-b7c7-4e82-b0d5-a9bff733df28" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F60FDAD5A0844665A89A03D66CB99CD7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:55 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, "isContentBase64": false } }, @@ -1015,7 +1067,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1030,18 +1082,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0995ac06-079f-4145-bbcd-8e5313977a34" ], + "x-ms-request-id": [ "fa298a17-3b05-4421-9a02-fe6b9f08b769" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e60ff68-4de3-47fe-8bda-8f324570c57b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/615bb7db-f76e-4a90-95cd-a353541452da" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "28e514ce-1f67-475f-8591-7eb4089d8684" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054459Z:28e514ce-1f67-475f-8591-7eb4089d8684" ], + "x-ms-correlation-request-id": [ "386e9b91-1cd9-43e2-9b05-49f367870bd2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081056Z:386e9b91-1cd9-43e2-9b05-49f367870bd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CDF29120A9C41C8A3CB6278D4F4EB11 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 970A7EDE9BB640F18265EF32A3CB0EAD Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1059,12 +1111,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "b1789331-d762-4f4e-baf8-674b2033c116" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "fadfc121-9481-4cb5-b5c0-750b21518539" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1076,25 +1128,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5106e15d-2f9f-4155-a63a-00fb855d9ded" ], + "x-ms-request-id": [ "66266cab-0126-43a2-9748-3a70a3e131fe" ], "X-AspNet-Version": [ "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/188ff7d6-dea0-4e9a-8df9-ea23a7614c7d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/01829745-597b-42e8-a039-a77edcbd12df" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54150c03-4286-4c0d-aa29-e40aa288ff5f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054459Z:54150c03-4286-4c0d-aa29-e40aa288ff5f" ], + "x-ms-correlation-request-id": [ "4630d84b-e2eb-40e5-9941-e3b80abd4e53" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081056Z:4630d84b-e2eb-40e5-9941-e3b80abd4e53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 336EABE7F4B14AA0A239519F4FEF6B03 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85E523C86F7F4A7598D07943B5BBACDC Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -1105,12 +1157,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "ecef72a3-a96c-43a5-ae52-6bd46f93c4bc" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "1979ed1a-495e-419b-b1d4-244aa3e897d9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1121,40 +1173,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2070d91a-2afd-4c3b-8b97-8e1d1bce0ade" ], + "x-ms-original-request-ids": [ "af7a42a9-f35c-464b-9770-518c16d60f3e" ], "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": [ "89c22019-fa34-464b-ab92-022f31ea21c0" ], - "x-ms-correlation-request-id": [ "89c22019-fa34-464b-ab92-022f31ea21c0" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054500Z:89c22019-fa34-464b-ab92-022f31ea21c0" ], + "x-ms-request-id": [ "507f6cfe-8d6b-4424-a8bd-2382d8e74210" ], + "x-ms-correlation-request-id": [ "507f6cfe-8d6b-4424-a8bd-2382d8e74210" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081056Z:507f6cfe-8d6b-4424-a8bd-2382d8e74210" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7E080A1985F46EC922DD3420F435021 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:44:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53C4D5053E5B4E28A736C0DD9BA3FAAD Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "62c31c4e-e770-42b3-9cbe-15273a2fd39f" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "392457a4-763f-431b-a49e-25dcf66e43a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1165,30 +1217,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e88eee10-c654-410c-915a-4b6c4f3c23f6" ], + "x-ms-request-id": [ "f82c0bde-25f3-45d7-a873-2accabb9e14f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d96ebffc-bde9-4781-8bc2-cd245c01de24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ffb8f5ee-d8ad-4339-a0f2-206484beee80" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a466ca9e-f510-4d6e-801b-037c944c4236" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054500Z:a466ca9e-f510-4d6e-801b-037c944c4236" ], + "x-ms-correlation-request-id": [ "f1afd2f1-31c9-4a86-bee3-b6c514da445f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081056Z:f1afd2f1-31c9-4a86-bee3-b6c514da445f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7648CCA15BB040D996C2BF33A6CA72B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:44:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 412F7684464F4289BFD887DDD0032ABF Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:10:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?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": { @@ -1208,22 +1260,68 @@ "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/26e78767-9a53-4d54-9d96-777daeded8d6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d43accb-f37a-49bb-876c-003d97e2c938" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], - "x-ms-correlation-request-id": [ "172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054501Z:172d59aa-7294-4d3f-bd45-4b6f0d9b0e4f" ], + "x-ms-request-id": [ "3ae68578-b58b-4a33-b1c1-1f51c6662fcd" ], + "x-ms-correlation-request-id": [ "3ae68578-b58b-4a33-b1c1-1f51c6662fcd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081102Z:3ae68578-b58b-4a33-b1c1-1f51c6662fcd" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F819DECFBAD145D3801D46B083FE0DF5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BB0CD9AD64445748693FB8B0474103B Ref B: MWH011020808025 Ref C: 2025-11-07T08:10:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900a9de-0000-0300-0000-68e74bdc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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\": \"\\\"d3033203-0000-0300-0000-690da9950000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-TestAppName-xwq3uydkht\",\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"AppId\": \"90efe8c5-6df8-4c62-9101-f23b11ea6e42\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0cd33c84-5bd9-49a4-be3c-92cb27fbef71\",\r\n \"ConnectionString\": \"InstrumentationKey=0cd33c84-5bd9-49a4-be3c-92cb27fbef71;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=90efe8c5-6df8-4c62-9101-f23b11ea6e42\",\r\n \"Name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"CreationDate\": \"2025-11-07T08:10:57.1649498+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-testappname-xwq3uydkht_90efe8c5-6df8-4c62-9101-f23b11ea6e42_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-xwq3uydkht-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 New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+6": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "3843469a-a85d-4b92-82bf-29e36f488bc8" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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/3c115d78-46b1-4a9c-81aa-b25481ce1e1d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "1d07cefc-3868-407a-be20-9143a96a141c" ], + "x-ms-correlation-request-id": [ "1d07cefc-3868-407a-be20-9143a96a141c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081106Z:1d07cefc-3868-407a-be20-9143a96a141c" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7608BA047AA24754B748B163F26D3BFE Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:06 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, "isContentBase64": false } }, @@ -1231,7 +1329,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1246,18 +1344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2d2d58a-9beb-429c-830f-1aa43e693ac5" ], + "x-ms-request-id": [ "9c3000dc-4cd2-4e13-ac17-c8450c87d6cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fe45c29c-94be-4df0-9d1d-9292e4d914e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8191de6-e9b4-41a3-953d-893221f97171" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "173635c6-0058-4398-91b3-c9674157db56" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054502Z:173635c6-0058-4398-91b3-c9674157db56" ], + "x-ms-correlation-request-id": [ "8fc55a92-cfd2-46ad-bff2-59f0bffde621" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081106Z:8fc55a92-cfd2-46ad-bff2-59f0bffde621" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71FD6CB1BEC144DAB984AE7F6C58E85C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 292606B06FB74B4E9B17FB5631AD3D7D Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1275,12 +1373,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "9d7e3ef1-3f72-4555-872c-77b72d750fd4" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "c37ba80e-dd6a-4466-8217-55bf90981eb0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1292,25 +1390,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "335d939d-0092-4e59-88b6-daa003518790" ], + "x-ms-request-id": [ "44531607-80ff-4b21-8fa5-d47bdd38bf2a" ], "X-AspNet-Version": [ "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/eadc46c4-ae8f-402a-a92f-d807318dc7e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ceb9088d-27fc-4cfa-b9b3-85b8c46f27a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1bd1602a-e4e9-4863-8297-f78c785f3004" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:1bd1602a-e4e9-4863-8297-f78c785f3004" ], + "x-ms-correlation-request-id": [ "80b62e12-dd1a-46f9-b535-f021feec14a3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081106Z:80b62e12-dd1a-46f9-b535-f021feec14a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B506C83952CC47719C22B54398091E01 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5DCB6CF284E458CA278A54A35A06D8A Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -1321,12 +1419,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "168" ], - "x-ms-client-request-id": [ "0e68f620-9ed3-4b0c-8079-d4f454ce5377" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "671cb98c-9023-4c7a-9d81-2b057ec1125a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1337,40 +1435,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "343f973a-0cc6-422a-ba7b-32ccf21374fa" ], + "x-ms-original-request-ids": [ "a7635212-316b-40f6-8a5a-762cc671dda7" ], "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": [ "5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], - "x-ms-correlation-request-id": [ "5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:5ae65e7f-b6b1-4b92-9ff0-7ec532e5e37f" ], + "x-ms-request-id": [ "08043b9b-11c1-4da3-a300-6521371ed7cc" ], + "x-ms-correlation-request-id": [ "08043b9b-11c1-4da3-a300-6521371ed7cc" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081107Z:08043b9b-11c1-4da3-a300-6521371ed7cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF4F67A7E27445F9A1BD3F822EF7B79C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6A80E98C1684C00B614221ECC970A77 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "3e1d9881-c3a9-46b7-a375-004301161052" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "48e0e951-006f-4be6-bd40-1326ad1bcd27" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1381,30 +1479,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0d88557b-5587-49b7-a8d2-54b2251e5f93" ], + "x-ms-request-id": [ "cf5fe514-d59c-4d25-990d-ad755e936212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a00faa40-81ca-4664-a1bc-88a8a005145f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7ddc24f0-c755-4253-bdd4-93eb30baec79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "19c38db7-edb9-4563-a065-68276a1d3fe1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054502Z:19c38db7-edb9-4563-a065-68276a1d3fe1" ], + "x-ms-correlation-request-id": [ "5dc4bd21-18e1-4832-af15-b1dc9760df32" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081107Z:5dc4bd21-18e1-4832-af15-b1dc9760df32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56FF5FEB8FEE4ACD9F100E50A6E3106F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62F61EB26A8A4213B52E34F22131A0B5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?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": { @@ -1424,22 +1522,68 @@ "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/2e7dc493-a7c4-462c-8a82-050413706f47" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/534b2f2d-e161-4979-bf9c-09302890ac8a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "61901721-fef1-4600-8dce-9c494bcd20bf" ], - "x-ms-correlation-request-id": [ "61901721-fef1-4600-8dce-9c494bcd20bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054503Z:61901721-fef1-4600-8dce-9c494bcd20bf" ], + "x-ms-request-id": [ "8cb383a2-5e06-4e5e-8c8b-b1116d358071" ], + "x-ms-correlation-request-id": [ "8cb383a2-5e06-4e5e-8c8b-b1116d358071" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081112Z:8cb383a2-5e06-4e5e-8c8b-b1116d358071" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0634EC2538EE4F47A9898FEDBD9BD570 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:02Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CE7AEF98E4B4736BFB49703057E11F9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900bcde-0000-0300-0000-68e74bde0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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\": \"\\\"d303e605-0000-0300-0000-690da99f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-TestAppName-xwq3uydkht\",\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"AppId\": \"83e03166-eb1a-47c7-a3b9-2947290ff216\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0971efdd-91d6-40dc-8089-0938eadf6d18\",\r\n \"ConnectionString\": \"InstrumentationKey=0971efdd-91d6-40dc-8089-0938eadf6d18;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=83e03166-eb1a-47c7-a3b9-2947290ff216\",\r\n \"Name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"CreationDate\": \"2025-11-07T08:11:07.8152085+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-testappname-xwq3uydkht_83e03166-eb1a-47c7-a3b9-2947290ff216_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-xwq3uydkht-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 New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+6": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "9de12fb7-5358-4ae5-90d9-073965c16c65" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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/c4e6a69c-43c0-486f-a83d-506f5f7eebb8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-request-id": [ "183ab588-f5a6-487f-b8c6-605ed58219fc" ], + "x-ms-correlation-request-id": [ "183ab588-f5a6-487f-b8c6-605ed58219fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081120Z:183ab588-f5a6-487f-b8c6-605ed58219fc" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 267E751217484BDDBE130F451865DFA0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:19 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, "isContentBase64": false } }, @@ -1447,7 +1591,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1462,18 +1606,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43816e8c-1bd2-48df-9f79-d1299858762f" ], + "x-ms-request-id": [ "dafbea5e-e355-480a-b477-8726ac993059" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eddfb0c7-f9a4-4bc5-84ef-6503aae3b770" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8394e0a5-f7d4-437c-9c5c-a5f83f712709" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4944e09-fdf8-4f67-9e59-5c95a7ecd4b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054504Z:e4944e09-fdf8-4f67-9e59-5c95a7ecd4b6" ], + "x-ms-correlation-request-id": [ "eafbc618-c1be-45ef-aef8-c91c1f915e8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081120Z:eafbc618-c1be-45ef-aef8-c91c1f915e8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 216CE76A3D0A4BB39978B4C02E7F692D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:03Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 087B753ACF944C63B8309AE5DB9E42F8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1491,12 +1635,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "4e0041f3-0c2c-468d-8953-5d0e3625e32c" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "2964f7cc-683f-4ce5-9ab3-f171366344cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1508,25 +1652,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "850dbb74-4ae6-41da-9d37-9967708a5e96" ], + "x-ms-request-id": [ "fad12b1c-9ff7-4ad4-8c5c-86b681c687fe" ], "X-AspNet-Version": [ "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/f28251ec-202c-41a6-8d8e-9ea231945e36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/323cb599-b762-4057-9213-b85919b7948e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "006338b6-9d07-422a-8f95-4a297b5409d3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054504Z:006338b6-9d07-422a-8f95-4a297b5409d3" ], + "x-ms-correlation-request-id": [ "6fffa07b-0ba4-477d-9611-36e935ef3c74" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081120Z:6fffa07b-0ba4-477d-9611-36e935ef3c74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78F7D3A3DD3B4359AA442395B9CDD4A7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:04Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BDB159649EC45E2B586AF278C734D22 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -1537,12 +1681,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "47758325-fd3a-4d81-b086-bc368073a4ef" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "461f95cd-b465-4e1e-b18f-26e3f85f1527" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1553,40 +1697,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7cbb88e3-4e3a-4df8-a7d8-d3d93ece3ccf" ], + "x-ms-original-request-ids": [ "5214a81e-0c65-4ebb-8132-bf509f4c7889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "85253cee-3fa5-44c6-8589-a009638195c5" ], - "x-ms-correlation-request-id": [ "85253cee-3fa5-44c6-8589-a009638195c5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054505Z:85253cee-3fa5-44c6-8589-a009638195c5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c235cbbd-4aeb-428a-85ba-0a6628bb6ff3" ], + "x-ms-correlation-request-id": [ "c235cbbd-4aeb-428a-85ba-0a6628bb6ff3" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081121Z:c235cbbd-4aeb-428a-85ba-0a6628bb6ff3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0A37442BADF4C698FD211A0D95E8DF8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:04Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53B188647F0440B488DFE74819A95FC6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "174" ], - "x-ms-client-request-id": [ "040402e6-b749-4922-987e-b717393c0b0a" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "14e059bf-7f46-49ae-b4ce-349754151623" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1597,30 +1741,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f09216b4-475e-4e68-9dc7-a3728cad0e00" ], + "x-ms-request-id": [ "708dd748-1ae2-4256-a822-8aba8c14b756" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bdd61239-2375-44f7-a3ea-ed5e9ce27bee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/be102e36-6a3d-405f-a56d-390516def2b3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc6b3508-3115-4f2b-ad3b-8684f35fcc16" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054505Z:dc6b3508-3115-4f2b-ad3b-8684f35fcc16" ], + "x-ms-correlation-request-id": [ "6c43e124-e741-4839-a7be-1d0476f5102a" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081121Z:6c43e124-e741-4839-a7be-1d0476f5102a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6EBAD1537644EE68ABDBD5BAF0677E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:05Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55666C1D21D143BBAB5070E1C3718825 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?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": { @@ -1640,22 +1784,68 @@ "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/32181888-8193-4943-8a47-904cbc0b34c6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d035228-962f-4a7b-89cd-e7714bbfed38" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "b0417180-6886-4298-8299-ea07e7b0b183" ], - "x-ms-correlation-request-id": [ "b0417180-6886-4298-8299-ea07e7b0b183" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054506Z:b0417180-6886-4298-8299-ea07e7b0b183" ], + "x-ms-request-id": [ "d9eb1f62-6a8d-4e79-910b-62e1927236d5" ], + "x-ms-correlation-request-id": [ "d9eb1f62-6a8d-4e79-910b-62e1927236d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081126Z:d9eb1f62-6a8d-4e79-910b-62e1927236d5" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B58DB2EC3164DD58AD68518DD202EA2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:05Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10E2A09668AD471981C8B79A16674699 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900dede-0000-0300-0000-68e74be10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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\": \"\\\"d303b409-0000-0300-0000-690da9ae0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-TestAppName-xwq3uydkht\",\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"AppId\": \"c4e1ae5e-59e4-4a6b-bd48-1b749777d898\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"edf21587-1293-461c-ab7e-aa59b77e7cfc\",\r\n \"ConnectionString\": \"InstrumentationKey=edf21587-1293-461c-ab7e-aa59b77e7cfc;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c4e1ae5e-59e4-4a6b-bd48-1b749777d898\",\r\n \"Name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"CreationDate\": \"2025-11-07T08:11:21.9249986+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-testappname-xwq3uydkht_c4e1ae5e-59e4-4a6b-bd48-1b749777d898_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-xwq3uydkht-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 New-AzFunctionApp default OSType and FunctionsVersion for Java+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+6": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "64b0fdd8-24c5-4513-aa49-2fb774c499b6" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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/d318f033-3895-4bc6-949c-83ae869c5a71" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "90d9f52d-00b2-4d0e-bddf-477ef1bb30ee" ], + "x-ms-correlation-request-id": [ "90d9f52d-00b2-4d0e-bddf-477ef1bb30ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081131Z:90d9f52d-00b2-4d0e-bddf-477ef1bb30ee" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B857F00960154CD39A4FC9192D6085D1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:30 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, "isContentBase64": false } }, @@ -1663,7 +1853,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1678,18 +1868,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2cc8dc2c-47f2-49d7-8844-ea60985b7efe" ], + "x-ms-request-id": [ "6b8f9358-1f38-4c92-ade0-bc2ffc0a7fda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9dad1df0-27a2-4da0-99b4-d5e98f0b8d33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56e6d70e-dd6e-4b60-b7dc-5be700d4c773" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ba0c78e1-9e49-49c7-a1de-cd57ca3ba0a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054507Z:ba0c78e1-9e49-49c7-a1de-cd57ca3ba0a5" ], + "x-ms-correlation-request-id": [ "6b48ff5a-9c7f-45aa-981f-4ed744e9ccc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081131Z:6b48ff5a-9c7f-45aa-981f-4ed744e9ccc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4BBC4CEA6724D85AD0DB70CC01BE296 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:06Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 771E7A60E9134E00BDA5943AFC62CC79 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1707,12 +1897,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "5a56c73c-deac-4649-99f5-d4e7b0a37225" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "18a9c8fa-3a19-4fee-90a1-f122aabd6790" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1724,25 +1914,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26701638-b76d-4ab2-8323-b85ce360c7bd" ], + "x-ms-request-id": [ "dc97575f-9f44-4627-ae8e-05de1eccc05d" ], "X-AspNet-Version": [ "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/62718561-7e9b-470c-afdc-33085bdfdc36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/08c62bc8-2ab0-4344-a970-11efbbbeb425" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "69b9fad6-1000-4beb-b5f7-6f749fa7b68c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:69b9fad6-1000-4beb-b5f7-6f749fa7b68c" ], + "x-ms-correlation-request-id": [ "d8e07c73-6e86-4858-867f-71d52cbeabf8" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081131Z:d8e07c73-6e86-4858-867f-71d52cbeabf8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9CA768E479442528EF9CA9171FA26D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83EA550A319E40FBA4880AC2C1929B58 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -1753,12 +1943,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "178" ], - "x-ms-client-request-id": [ "c12c2e35-61e6-4cf7-89dc-a8a61b896c05" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "8a9d9464-f2e2-443e-a0ce-c7802d073d84" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1769,40 +1959,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f7fc9429-d13b-4e2a-ab93-4e7331cb9254" ], + "x-ms-original-request-ids": [ "a7f0d3d3-599e-439c-9dac-5f87662c2607" ], "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": [ "22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], - "x-ms-correlation-request-id": [ "22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:22fe20c3-bc48-4be6-a81a-55eb637cf25a" ], + "x-ms-request-id": [ "0ccee02b-4dc3-4afd-a7cc-83f0c2d3906b" ], + "x-ms-correlation-request-id": [ "0ccee02b-4dc3-4afd-a7cc-83f0c2d3906b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081131Z:0ccee02b-4dc3-4afd-a7cc-83f0c2d3906b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD9585DAD58647E2A62B6E5C6F260C61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7932C1EA5A94A23B53DD73AC5654979 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "8c45823f-3b92-4b06-90f1-0c7958e4fc56" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "30b5bcce-1152-4f07-b0ef-766e5c490e95" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1813,30 +2003,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2145286e-dbd5-4b38-a455-3e98cb26217a" ], + "x-ms-request-id": [ "6944ab4f-5ea4-4f29-a9e3-fb720992f3cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ea10e3f8-55b6-43c2-8aba-70b2b29cb435" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/3bec1cbe-1b4d-4e8f-94bc-47db4b3b25dd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "37f0b7d3-67cf-4c4f-b448-fe868fc9b7ad" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054507Z:37f0b7d3-67cf-4c4f-b448-fe868fc9b7ad" ], + "x-ms-correlation-request-id": [ "e04c1f0d-d965-4824-ab78-63e9be24fef8" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081132Z:e04c1f0d-d965-4824-ab78-63e9be24fef8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58BAEDB43ED04EC6A6588AACA8FE9E65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64EDF0ED4D0748EBA6B47639AF39869A Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-TestAppName-4xrbthc6ij?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?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": { @@ -1856,36 +2046,41 @@ "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/westus2/8011f0c8-1101-43d1-b1e5-2fa717eeeb2e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b630d404-909d-4a90-b38c-449797c58045" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], - "x-ms-correlation-request-id": [ "f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054511Z:f8f6fa1e-89e6-4c1e-a268-14c78aebf8d1" ], + "x-ms-request-id": [ "03c89ede-d011-4328-b10e-d5592fd3d7b1" ], + "x-ms-correlation-request-id": [ "03c89ede-d011-4328-b10e-d5592fd3d7b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081137Z:03c89ede-d011-4328-b10e-d5592fd3d7b1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 573222A7D70B42A2B65FCD5AC613F1D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:07Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5215C15E39844341839C97BF596B5115 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:32Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1666" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900fade-0000-0300-0000-68e74be40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\r\n \"name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"AppId\": \"bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\r\n \"ConnectionString\": \"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\r\n \"Name\": \"Functions-TestAppName-4xrbthc6ij\",\r\n \"CreationDate\": \"2025-10-09T05:44:37.7380797+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-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-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\": \"\\\"d303a70c-0000-0300-0000-690da9b90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-TestAppName-xwq3uydkht\",\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"AppId\": \"93c2d524-3921-4bc1-89fe-03a3204bdf6f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6fa66be4-80f4-48ee-a178-69270a302fd3\",\r\n \"ConnectionString\": \"InstrumentationKey=6fa66be4-80f4-48ee-a178-69270a302fd3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=93c2d524-3921-4bc1-89fe-03a3204bdf6f\",\r\n \"Name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"CreationDate\": \"2025-11-07T08:11:32.5898365+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-testappname-xwq3uydkht_93c2d524-3921-4bc1-89fe-03a3204bdf6f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-xwq3uydkht-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]+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]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01+6": { "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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-TestAppName-xwq3uydkht?api-version=2015-05-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "221" ], + "x-ms-client-request-id": [ "0d2aa233-65d7-4e0e-8429-e5a59de00358" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] } }, "Response": { @@ -1893,34 +2088,34 @@ "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-ms-request-id": [ "c823f540-1f77-481e-8921-a008d56f8a34" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03d315d0-cb4d-423f-a7b5-29d1a8d87c9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0cb108b5-228a-4105-bf76-5fe055b60004" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054512Z:0cb108b5-228a-4105-bf76-5fe055b60004" ], "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/2362d9b3-4f24-4044-9f00-4a24d0234105" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "e9452898-deb7-48ed-b94e-f40613c31ab2" ], + "x-ms-correlation-request-id": [ "e9452898-deb7-48ed-b94e-f40613c31ab2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081142Z:e9452898-deb7-48ed-b94e-f40613c31ab2" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0475D9786123474F98AFD4759E0F29B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:11Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAB3926DB376464FB21488258976D616 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": null, "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Node 10 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 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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1935,18 +2130,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e32001b-3715-4955-af99-9b5939dd29a7" ], + "x-ms-request-id": [ "9e1735ad-a684-4a57-b46e-40d7dbcc7f2e" ], "X-AspNet-Version": [ "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/5b0153c6-395c-4d9b-97f0-8c950c0b2e9b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af1b6601-2a8b-450f-a1fb-f19faaf389be" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54c9995d-6a2b-4c63-a372-08201532e6aa" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054512Z:54c9995d-6a2b-4c63-a372-08201532e6aa" ], + "x-ms-correlation-request-id": [ "9fb8b258-2b8e-442b-9d5d-0aae01c08503" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081142Z:9fb8b258-2b8e-442b-9d5d-0aae01c08503" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 402BAE5B8C9F4A92B34A640DF083CC19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:12Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 559D0CFC741645ED833225BAD9A3E293 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1961,7 +2156,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1976,18 +2171,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a96cae37-580c-4865-9c7f-a46271fbd829" ], + "x-ms-request-id": [ "d2efda9e-938f-45c1-bfbf-59a607caa125" ], "X-AspNet-Version": [ "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/91385b5b-525c-4875-bd71-e2f2dc7aee4c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/58ac526e-b037-4013-994d-56fd31012692" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1dbc7029-e5c7-46a2-9d81-ab6028e6c16c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054513Z:1dbc7029-e5c7-46a2-9d81-ab6028e6c16c" ], + "x-ms-correlation-request-id": [ "3f08a351-d934-4294-94c7-12a28fcb651c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081143Z:3f08a351-d934-4294-94c7-12a28fcb651c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F0B7AD7BBBA4BF8ACFD4C59442C06F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBEFCE38F8584D828B6F9A14804B662F Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1998,11 +2193,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Node 10 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 RuntimeNotSupported when trying to create a function app for an invalid runtime+$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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2017,18 +2212,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aea3eb14-9463-4dd2-a863-d5dcd84d2369" ], + "x-ms-request-id": [ "ee7768fa-8c23-4162-bdb5-1568e6dafe75" ], "X-AspNet-Version": [ "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/b7e631ac-08a8-442f-9f49-1a89208ec073" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1bd92e95-1f83-43e3-864f-ec4d40af25e9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "76026a2b-490a-436e-8dc0-5212d8e75c43" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054514Z:76026a2b-490a-436e-8dc0-5212d8e75c43" ], + "x-ms-correlation-request-id": [ "647317f9-538a-47cd-932c-a43d8040a1ba" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081143Z:647317f9-538a-47cd-932c-a43d8040a1ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABDA07C2923948C1B0A56A423DF3496E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70D2E05887DB49089B01C129C8EC3BBB Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2039,17 +2234,17 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw RuntimeNotSupported when trying to create a function app for an invalid runtime+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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/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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-ohwj1te7lf\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "69" ] + "Content-Length": [ "64" ] } }, "Response": { @@ -2058,18 +2253,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b57d965d-e4b2-4a9f-8cad-bb03acb1655b" ], + "x-ms-request-id": [ "d4e0fbd9-acbb-487d-a010-503f60bb908c" ], "X-AspNet-Version": [ "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/93111d74-61c0-4338-984d-af5d33491322" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bfe8c2d5-5c1d-4a23-9b28-967de9c81019" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ebbe903a-58dd-4334-a71a-d526b62c4ae1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054514Z:ebbe903a-58dd-4334-a71a-d526b62c4ae1" ], + "x-ms-correlation-request-id": [ "1a568d9a-5a7a-4eb5-969d-869a1616782e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081144Z:1a568d9a-5a7a-4eb5-969d-869a1616782e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DCF4175F6BE04CB0BBF4AD9DD419F403 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DF2A4E768C042CB9268B276CEDA6C75 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2080,17 +2275,22 @@ "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/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "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.Web/serverfarms?api-version=2023-12-01+2": { "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-jcai4tloxm\",\r\n \"type\": \"Site\"\r\n}", + "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": [ "226" ], + "x-ms-client-request-id": [ "a6ed4f68-95ce-432f-8c2d-4c4aff73977b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "64" ] } }, "Response": { @@ -2098,42 +2298,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "08911980-7a78-45b4-ae60-891435b7c537" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb104e4f-e215-42d0-a5a5-b3090e481aac" ], "X-AspNet-Version": [ "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/5c7e980f-a12a-4838-a95d-36e9f532c55c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1dfc7548-85e2-4d3f-99ab-e161b04a2109" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054515Z:1dfc7548-85e2-4d3f-99ab-e161b04a2109" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "f2fcb06b-ea9d-4ead-95c6-83b761417856" ], + "x-ms-correlation-request-id": [ "f2fcb06b-ea9d-4ead-95c6-83b761417856" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081144Z:f2fcb06b-ea9d-4ead-95c6-83b761417856" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E27B0F8225FA44B0AFAF92E9A2630786 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E0F6839B4B3A4ADB8231E21902ACD787 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] + "Content-Length": [ "7011" ], + "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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.Web/serverfarms?api-version=2023-12-01+2": { + "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-1us9gb/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/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "1021db2a-e7e7-47d2-8a4a-89732830b407" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "4eef7d10-09d5-459b-b9de-463d938be7b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2144,125 +2343,86 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bb4d14da-513f-4c49-ae82-142408068d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d2afdca5-e7ea-4f40-8517-12afb3eda386" ], "X-AspNet-Version": [ "4.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": [ "12a0c91e-815f-4391-87d8-0493e27399fd" ], - "x-ms-correlation-request-id": [ "12a0c91e-815f-4391-87d8-0493e27399fd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054517Z:12a0c91e-815f-4391-87d8-0493e27399fd" ], + "x-ms-correlation-request-id": [ "5ed2e998-2d40-4ceb-b449-844da686cd7d" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081144Z:5ed2e998-2d40-4ceb-b449-844da686cd7d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 846D29291F68422BB234A9832AB2C78B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC6C3D62175C4FD19E873006B0BFA01F Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Linux-Consumption-pxiydk/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-Windows-Consumption-z05kh6/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-pxiydk/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "188" ], - "x-ms-client-request-id": [ "c14de8b9-0d21-4917-a3e9-8b1658a6265b" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "14963f6f-7e56-423c-8549-ad2a7ec5ba46" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "3f31290c-c9b2-48da-be6e-9686206683b3" ], - "x-ms-correlation-request-id": [ "3f31290c-c9b2-48da-be6e-9686206683b3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054517Z:3f31290c-c9b2-48da-be6e-9686206683b3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CC6996B60EA48BDB0273774D65B31E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", - "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-m4501w/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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "b715cbc0-fe7b-4059-8fff-b75ea71b0162" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 404, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], - "x-ms-correlation-request-id": [ "856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054517Z:856a1416-0c62-4e8e-a1c7-ebb58e955dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5a59a63e-e09a-4702-9bec-1c9dd20c155a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b36decba-2d6b-49db-9863-e9e2c83ace02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081145Z:b36decba-2d6b-49db-9863-e9e2c83ace02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CB668E4202F4A8FA57BCAAC65B523E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B652676A0D54ED58A88633207C6BEFA Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "252" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSPlan\u0027 under resource group \u0027Functions-Test-Windows-Consumption-m4501w\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "3cf6365b-c74f-4071-8210-be85fdd6e632" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "ecf0a46c-8161-4d7c-ab13-6e9edc7b2afc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2274,40 +2434,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5299cdb-4a2b-4bbd-b17f-98a150714469" ], + "x-ms-request-id": [ "1a0acf65-2eb0-4ee8-9dd9-82877f0bcb12" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b09f995-5e73-414a-a904-0a245991b5ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054517Z:6b09f995-5e73-414a-a904-0a245991b5ce" ], + "x-ms-correlation-request-id": [ "f9b11f24-388b-4d1e-b19d-31506f90de54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081145Z:f9b11f24-388b-4d1e-b19d-31506f90de54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42976CA024B844B88C047766C08BE60C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B12678BE15B46788BFA046B4F5F79CB Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "4dcfa081-667f-408d-a0fa-52f45281a921" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "8acab924-6b8c-4ec1-96cf-ffcc5dedb78e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2319,24 +2479,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5b9005a-306d-4745-9a47-0c0d2b3a5462" ], + "x-ms-request-id": [ "bcb58f5b-2587-4c93-bc24-704a7fcf8d9a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c620b6dd-f140-4686-87d0-4ffcb0a1d1c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054518Z:c620b6dd-f140-4686-87d0-4ffcb0a1d1c4" ], + "x-ms-correlation-request-id": [ "648af881-6137-4e65-b681-03ed5b9728d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081145Z:648af881-6137-4e65-b681-03ed5b9728d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38289CB4C2544C54953E930C27030CA0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 520A77B444E045E28EC01A8EF797A2B6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -2347,12 +2507,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "92942130-f965-4e51-a7e3-bf93ba4c89e2" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "d0d0b374-01ae-4e5c-a5f5-f5506039a34d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2363,40 +2523,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "123f3ebc-516d-4bb2-9cce-4d63070a1ab8" ], + "x-ms-original-request-ids": [ "f66f9953-ddc5-49f5-b608-6e87a0058d22" ], "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": [ "dfecae40-90c7-42db-bba6-fea93d5d3aba" ], - "x-ms-correlation-request-id": [ "dfecae40-90c7-42db-bba6-fea93d5d3aba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054518Z:dfecae40-90c7-42db-bba6-fea93d5d3aba" ], + "x-ms-request-id": [ "27c3bdc5-1c2c-4e9d-8320-2607f526ad16" ], + "x-ms-correlation-request-id": [ "27c3bdc5-1c2c-4e9d-8320-2607f526ad16" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081145Z:27c3bdc5-1c2c-4e9d-8320-2607f526ad16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03D4BF3F7D334EE58F6FF867154C3391 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12E2485748F04527AE50AFEB21BB7FB6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01+8": { + "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-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "4b1ae50d-d4be-4b6f-b35f-7bdbe238b67e" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "99f285cc-52a6-4054-8d58-59ad2d7b7b79" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2407,30 +2567,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "253f5dae-9ab0-4f1a-b40a-7c9afea44bab" ], + "x-ms-request-id": [ "8ca94672-4317-4f7b-bff7-608a08748901" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f2caafab-338a-48bb-8414-f16349727637" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f57c6577-9489-42c1-a428-6d663414bc07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6e4530e8-72b7-4c79-a781-18d84655ea38" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054518Z:6e4530e8-72b7-4c79-a781-18d84655ea38" ], + "x-ms-correlation-request-id": [ "ecb31409-1ef5-47bc-8784-c38b42919315" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081146Z:ecb31409-1ef5-47bc-8784-c38b42919315" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 917399C074AB4C7F94A7744587B4B099 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD4B9F856C044CD9A80D56C6B30404E1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"wnxFFwQSGeJ1dLtZonlXRHUMG2fvkLta3Kafx++scJ0kOKyogGnmJjuIhsT+R8mqSeSOpbUd4lAY+AStMNKVLg==\",\"permissions\":\"FULL\"}]}", "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-xa1y0o/providers/Microsoft.Insights/components/Functions-Python-jcai4tloxm?api-version=2015-05-01+9": { + "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-0a1x3e/providers/Microsoft.Insights/components/Functions-Python-ohwj1te7lf?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Insights/components/Functions-Python-jcai4tloxm?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Insights/components/Functions-Python-ohwj1te7lf?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": { @@ -2450,36 +2610,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/399dfdd1-a0da-428a-a70a-8ad1d7f7ac63" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], - "x-ms-correlation-request-id": [ "00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054553Z:00c727db-4344-4a1d-ab11-6b5ee9a60d72" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8ca963a9-8b04-467a-a8ed-a2c6d377a115" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "b74bed99-2fca-4e79-8488-9cad1312ab2b" ], + "x-ms-correlation-request-id": [ "b74bed99-2fca-4e79-8488-9cad1312ab2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081150Z:b74bed99-2fca-4e79-8488-9cad1312ab2b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53BB6E6CEE414B48B82F59E30AB030BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:18Z" ], - "Date": [ "Thu, 09 Oct 2025 05:45:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B069CAE9502049BB9EA3DC86ABA7CD8D Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:11:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1634" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900f0e0-0000-0300-0000-68e74c110000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Python-jcai4tloxm\",\r\n \"name\": \"Functions-Python-jcai4tloxm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-jcai4tloxm\",\r\n \"AppId\": \"edc06622-67e1-40ea-b636-abe100011ad9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\",\r\n \"ConnectionString\": \"InstrumentationKey=5b9248eb-d543-4c30-b6a2-cbee25bfc09f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edc06622-67e1-40ea-b636-abe100011ad9\",\r\n \"Name\": \"Functions-Python-jcai4tloxm\",\r\n \"CreationDate\": \"2025-10-09T05:45:19.1816838+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-jcai4tloxm_edc06622-67e1-40ea-b636-abe100011ad9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-jcai4tloxm-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\": \"\\\"d3034110-0000-0300-0000-690da9c60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/microsoft.insights/components/Functions-Python-ohwj1te7lf\",\r\n \"name\": \"Functions-Python-ohwj1te7lf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-ohwj1te7lf\",\r\n \"AppId\": \"8b918d4a-92f9-4cd2-8b7a-90517dc93425\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ad7acc56-8da1-422f-b305-d030411a305a\",\r\n \"ConnectionString\": \"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\",\r\n \"Name\": \"Functions-Python-ohwj1te7lf\",\r\n \"CreationDate\": \"2025-11-07T08:11:46.8601234+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-ohwj1te7lf_8b918d4a-92f9-4cd2-8b7a-90517dc93425_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-ohwj1te7lf-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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.12\",\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-jcai4tloxm\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"\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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-ohwj1te7lf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1885" ] + "Content-Length": [ "1811" ] } }, "Response": { @@ -2487,43 +2647,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DFFBA40B0B\"" ], + "ETag": [ "\"1DC4FBE2D23B14B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70cf72fe-04b9-4302-a8ae-1795983325b2" ], + "x-ms-request-id": [ "96e452ec-4ff8-4ead-93ff-10fd2f478e4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/477b7abb-dacb-4437-a63a-f6a7312c1329" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a1b4aa4-9315-45eb-bddf-31db43e6d690" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "890a139c-4554-4797-8882-165f9b24cb3e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054616Z:890a139c-4554-4797-8882-165f9b24cb3e" ], + "x-ms-correlation-request-id": [ "1d3aba62-4d78-4b07-8fee-31940dcab2c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081213Z:1d3aba62-4d78-4b07-8fee-31940dcab2c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9E2096A88BE44AFB0941F54F8AE8365 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:45:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 124C5121079C436F841F8E72F8D06E24 Ref B: MWH011020808025 Ref C: 2025-11-07T08:11:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8374" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:45:55.6866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-ohwj1te7lf\",\"state\":\"Running\",\"hostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Python-ohwj1te7lf\",\"repositorySiteName\":\"Functions-Python-ohwj1te7lf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\",\"functions-python-ohwj1te7lf.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-ohwj1te7lf.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-ohwj1te7lf.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:11:52.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-ohwj1te7lf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Python-ohwj1te7lf\\\\$Functions-Python-ohwj1te7lf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-python-ohwj1te7lf.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}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01+11": { + "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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "196" ], - "x-ms-client-request-id": [ "852e1836-ba46-4979-ab74-bf5040518e0e" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "cbc1b490-4c74-43f2-ba2f-08b8c7ba6176" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2533,42 +2693,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E00779EE15\"" ], + "ETag": [ "\"1DC4FBE38D165E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "845a26a2-897f-40c1-aee8-10cdaddae383" ], + "x-ms-request-id": [ "c98172f6-33f0-43a0-be95-2bd418fa9d94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3f9ee3db-2778-4fb9-b610-c469e83fe0fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:3f9ee3db-2778-4fb9-b610-c469e83fe0fb" ], + "x-ms-correlation-request-id": [ "bfe4897b-9324-41f2-a582-9ca2391ec1de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081244Z:bfe4897b-9324-41f2-a582-9ca2391ec1de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BFD119930254D0FB92DD8F25A286FC6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E11D36811874203B12B2C9CBDF87F6F Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8251" ], + "Content-Length": [ "8367" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-ohwj1te7lf\",\"state\":\"Running\",\"hostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Python-ohwj1te7lf\",\"repositorySiteName\":\"Functions-Python-ohwj1te7lf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\",\"functions-python-ohwj1te7lf.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-ohwj1te7lf.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-ohwj1te7lf.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:12:12.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.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-ohwj1te7lf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Python-ohwj1te7lf\\\\$Functions-Python-ohwj1te7lf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-python-ohwj1te7lf.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "0a3bd222-e613-42b5-a14c-4ed06bc114cb" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "1c90f2ee-5d16-4ed9-b0be-ce582cd6e44a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2579,42 +2739,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E00779EE15\"" ], + "ETag": [ "\"1DC4FBE38D165E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4483e8cf-491b-4528-b720-ce997a74708e" ], + "x-ms-request-id": [ "f6b2fdeb-ed18-44ec-b179-53052eab5690" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "638e826b-662b-4db0-aa57-f6ef4a6c147b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:638e826b-662b-4db0-aa57-f6ef4a6c147b" ], + "x-ms-correlation-request-id": [ "384adf93-415a-4bad-8bef-f9b7af7a9951" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081244Z:384adf93-415a-4bad-8bef-f9b7af7a9951" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8B766F49BDB407397678878497C1852 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B370AB6C05C4FA48FA12BC76670654C Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8251" ], + "Content-Length": [ "8367" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-ohwj1te7lf\",\"state\":\"Running\",\"hostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Python-ohwj1te7lf\",\"repositorySiteName\":\"Functions-Python-ohwj1te7lf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\",\"functions-python-ohwj1te7lf.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-ohwj1te7lf.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-ohwj1te7lf.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:12:12.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.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-ohwj1te7lf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Python-ohwj1te7lf\\\\$Functions-Python-ohwj1te7lf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-python-ohwj1te7lf.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01+13": { + "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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "121b84cf-f4a8-4be5-a5b9-58fd81fb23ec" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "aa648307-e882-41e1-b44f-e4777a63fef9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2626,40 +2786,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb9cccf0-bbe6-4865-97d5-affc0bcd07eb" ], + "x-ms-request-id": [ "18434cd0-38a6-4622-bcb3-e170b87b7268" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/969ec193-b591-4b79-8b1c-a9b888ceba71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/580f0bdb-6f75-4895-96cf-16f1ab3a24ec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7fbd56bd-50c4-4be5-be0a-cef5b6037f77" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054647Z:7fbd56bd-50c4-4be5-be0a-cef5b6037f77" ], + "x-ms-correlation-request-id": [ "e7be9aeb-adb3-4477-89cb-dc32802e8aab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081244Z:e7be9aeb-adb3-4477-89cb-dc32802e8aab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4E01AA0BA51486E91265BB5EC5ABAB0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BE638E0A6E1495EBB0C1A386FA9A8A3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-ohwj1te7lf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\"}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "01cbb71a-02a9-4711-82ab-6ec4f31f74b8" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "704be1df-225c-4548-a70f-df361e152e1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2671,41 +2831,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7414a381-af61-4a55-8f13-4384cb1821b4" ], + "x-ms-request-id": [ "adc601ff-4ee5-4312-a288-96ae365a646f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee85c97b-ee24-4209-808d-7c239829ca22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b141f91e-624e-4beb-8037-ed3d00821182" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2b220f6b-28f7-4aa2-a381-c90d107e029e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:2b220f6b-28f7-4aa2-a381-c90d107e029e" ], + "x-ms-correlation-request-id": [ "770d1835-32bd-48c5-9ca4-7df9f5e58194" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081244Z:770d1835-32bd-48c5-9ca4-7df9f5e58194" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6ADB9192C6244074B3B4ACA89ECABC55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5577B52DA8E44399B2E0C5A62BB7DD27 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites/config\",\"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\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/web\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites/config\",\"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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "efd5a445-d585-49d6-bf67-1a13e768ed22" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "2c7c7ef4-0bdb-413c-b6b2-b0c03947fd34" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2717,40 +2877,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c6ef2e5-005a-4811-8918-93941c825217" ], + "x-ms-request-id": [ "370ca64c-073c-4365-8c64-d4c542c7c79d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be6e13fb-d5e0-497c-b93c-37ff130ce779" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e11e1fff-f392-4d3e-936b-8c50ca68ea49" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d4a65c93-5527-4ae5-b872-73638953a3f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:d4a65c93-5527-4ae5-b872-73638953a3f6" ], + "x-ms-correlation-request-id": [ "d226be86-e036-4c27-8c4b-880d65e77e84" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081245Z:d226be86-e036-4c27-8c4b-880d65e77e84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86FC049E222D40C9808C2866B020A2E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E60050CDFCB4A559DBC5BDD3AC30BF0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-ohwj1te7lf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\"}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "201" ], - "x-ms-client-request-id": [ "689cbb26-c85f-41b3-9bde-25129cf3774b" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "2554565e-4740-4afc-8e35-d1009090bab0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2761,42 +2921,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E00779EE15\"" ], + "ETag": [ "\"1DC4FBE38D165E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a19b58b6-a822-46c4-bf1f-ce0531e89454" ], + "x-ms-request-id": [ "353d93c7-6476-4529-885a-b24885dadab9" ], "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": [ "8098548a-e588-4359-8a48-4dea46eb7322" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054648Z:8098548a-e588-4359-8a48-4dea46eb7322" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "52367b33-c7c9-42d6-886e-079c8917db3f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081245Z:52367b33-c7c9-42d6-886e-079c8917db3f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B9AEBF328CA4CC29ABF99ED8CFF83F8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1485493862B4CF8A3281C5126B7BB50 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8251" ], + "Content-Length": [ "8367" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-jcai4tloxm\",\"state\":\"Running\",\"hostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Python-jcai4tloxm\",\"repositorySiteName\":\"Functions-Python-jcai4tloxm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-jcai4tloxm.azurewebsites.net\",\"functions-python-jcai4tloxm.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-jcai4tloxm.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-jcai4tloxm.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:46:16.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\":\"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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jcai4tloxm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-jcai4tloxm\\\\$Functions-Python-jcai4tloxm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-python-jcai4tloxm.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-ohwj1te7lf\",\"state\":\"Running\",\"hostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Python-ohwj1te7lf\",\"repositorySiteName\":\"Functions-Python-ohwj1te7lf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-ohwj1te7lf.azurewebsites.net\",\"functions-python-ohwj1te7lf.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-ohwj1te7lf.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-ohwj1te7lf.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:12:12.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.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-ohwj1te7lf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Python-ohwj1te7lf\\\\$Functions-Python-ohwj1te7lf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-python-ohwj1te7lf.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "ce41fb1c-15c6-4d9c-9246-6e37a0ac07ba" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "9483ca5a-2b78-4b88-9420-0b855e4434e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2808,40 +2968,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13f5ebac-21c7-4050-ab24-a6a0aebea15c" ], + "x-ms-request-id": [ "5e8af9c5-49d7-4df8-9fc3-9fc6988b4ff9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96949c8d-6c19-45e9-98cc-a56f19fca6f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee06f334-d631-460b-ab0c-d2fb85fe40c9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a0e5b94d-c59a-46a5-ac99-585e509b66a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054649Z:a0e5b94d-c59a-46a5-ac99-585e509b66a6" ], + "x-ms-correlation-request-id": [ "2c49e307-3929-4f88-a755-a8662371cc51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081245Z:2c49e307-3929-4f88-a755-a8662371cc51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8A5EE0D43474EE08586900E30AAD9F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACA3C4EF8AAC47518D1125D717EEF137 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1220" ], + "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-jcai4tloxm\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-ohwj1te7lf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\"}}", "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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "2562cf68-0c9e-42c7-a16e-4ba8a7da62f4" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "49692700-407a-4f15-9cc9-6e726b6c4566" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2853,41 +3013,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e558da61-367c-4812-8dac-49a678e68538" ], + "x-ms-request-id": [ "71c058d4-5f84-4e95-a51d-2b3807ce1023" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a64184bb-5be9-454b-aac9-7806ecda1497" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c7921b6e-dd2b-435e-bfd7-f958d6698c2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fbee801-ce8f-45ef-aa53-7a0c39e78d5a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054649Z:0fbee801-ce8f-45ef-aa53-7a0c39e78d5a" ], + "x-ms-correlation-request-id": [ "bb361f1e-522f-40f2-92c8-7ad71a2b5923" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081245Z:bb361f1e-522f-40f2-92c8-7ad71a2b5923" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5CBC97C3E23482C8CCE0E99AC073ECC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D27E2E2EF9C142E1A1D660FB228E5BE1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm/config/web\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"Microsoft.Web/sites/config\",\"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\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf/config/web\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?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-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Python-jcai4tloxm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Python-ohwj1te7lf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "204" ], - "x-ms-client-request-id": [ "cba9e257-014b-4218-ba41-3fafc365cd69" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "801369f2-03e3-44ab-8188-8a534176d318" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2898,20 +3058,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E00779EE15\"" ], + "ETag": [ "\"1DC4FBE38D165E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "895dceb4-1452-4c22-8f37-783141dff5dd" ], + "x-ms-request-id": [ "27d692f1-7dc6-4357-81ae-badea92c71a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be6c158b-0a55-4feb-b698-90fc85e4c5fe" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "a863d02f-83aa-4542-9747-94b065edbdb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054657Z:a863d02f-83aa-4542-9747-94b065edbdb3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/998ae2be-c933-48e5-92ed-43173f959b93" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "3fdf1f58-c463-4c6b-bed4-94f22a4db569" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081253Z:3fdf1f58-c463-4c6b-bed4-94f22a4db569" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DF0403CD3DC4F898419BDA05F3999D4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15EC85706AA240F89FBBD209D701FF30 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2925,7 +3085,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-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2940,18 +3100,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b5c7cd-2a4b-4636-827c-fdc7a0397f3c" ], + "x-ms-request-id": [ "f7982a80-946b-4399-99e5-9bdb91f26f13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22370464-57bc-436e-ab3f-e39af160e54a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/966223c5-6232-492c-aec0-31ad8658d5a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b91259b5-1dbb-4831-81f9-3fb9e8f9768c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054658Z:b91259b5-1dbb-4831-81f9-3fb9e8f9768c" ], + "x-ms-correlation-request-id": [ "c6d13488-c799-4f98-bb2a-b0273f159dca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081254Z:c6d13488-c799-4f98-bb2a-b0273f159dca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 628843C4C12D48B6B999E074A243B688 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 477088BE1D45411AB6150F0864156C77 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2969,12 +3129,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "206" ], - "x-ms-client-request-id": [ "77d80879-f1f1-4935-a8bd-d6e331613171" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "5595b5e1-cd2c-452c-b410-c73e7e4adc73" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2986,25 +3146,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b77b09f1-7316-4a35-82f5-3b2bc9f7de9d" ], + "x-ms-request-id": [ "311cf512-22d8-4b1d-a5e8-652ad9b32009" ], "X-AspNet-Version": [ "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/92e94d6a-7a75-47c1-94a2-41fd87c40466" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1f0a9b2b-a9c1-4038-b2b0-4e9f73aa251d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61c8339c-b69b-4ff0-9e11-88c71ea8b5f8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:61c8339c-b69b-4ff0-9e11-88c71ea8b5f8" ], + "x-ms-correlation-request-id": [ "02d48fd5-17a5-40e1-9239-4c7bcc338d05" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081254Z:02d48fd5-17a5-40e1-9239-4c7bcc338d05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D30BEDB87F9548748E33F4DE781CC3C6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E102A8A4EADD4D8C97DC9D33E19C4FD3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36289" ], + "Content-Length": [ "36852" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -3015,12 +3175,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "207" ], - "x-ms-client-request-id": [ "0479b6ee-3401-4032-8cb9-34cc066e89a1" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "038a9e0b-76e5-47fb-abc3-6cca80fadab5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3031,40 +3191,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "488a2bba-3249-429e-89ba-0b2dd970de8a" ], + "x-ms-original-request-ids": [ "f412f475-a16f-46af-a167-4df6ba8528fe" ], "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": [ "a2640dc6-6763-4131-a40d-7e0c75847c49" ], - "x-ms-correlation-request-id": [ "a2640dc6-6763-4131-a40d-7e0c75847c49" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:a2640dc6-6763-4131-a40d-7e0c75847c49" ], + "x-ms-request-id": [ "68ead4c2-4548-4fa3-aa8a-750ebe908c95" ], + "x-ms-correlation-request-id": [ "68ead4c2-4548-4fa3-aa8a-750ebe908c95" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081254Z:68ead4c2-4548-4fa3-aa8a-750ebe908c95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9E1A54025D34C989661CBDCF28C9057 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A8BC517B274409E8D8DDA3E3DE07F41 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "208" ], - "x-ms-client-request-id": [ "cd47dc4d-78ac-48c6-b347-568ed90b8748" ], + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "d4929767-11f9-40b8-9d40-54f86a1fa79c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3075,30 +3235,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6fc2d848-fc5c-44e8-b92b-0cd642d092d9" ], + "x-ms-request-id": [ "80d3f7b6-1f1b-4fb1-ac13-025c2354159f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/526bd3c4-5217-4eab-9809-b84dbd80db5c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9bdf846d-8150-49e0-a2ba-c621229ded0c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "49548607-76b2-4018-8359-19af02398cc8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054658Z:49548607-76b2-4018-8359-19af02398cc8" ], + "x-ms-correlation-request-id": [ "19b6a439-ca0c-410f-b45a-bd72ef10b0af" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081254Z:19b6a439-ca0c-410f-b45a-bd72ef10b0af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C9F6A6DE29C4362AA619525AFEC74C3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:46:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 213D6B4D71F54EA2B7941D65D4CB4386 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-m4501w/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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-z05kh6/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?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-m4501w/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?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": { @@ -3118,36 +3278,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/fb8eac61-b53e-4e10-84a8-775d62799bb4" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "0014cfc1-533a-4d60-81c5-fa050e1532e7" ], - "x-ms-correlation-request-id": [ "0014cfc1-533a-4d60-81c5-fa050e1532e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054720Z:0014cfc1-533a-4d60-81c5-fa050e1532e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d65bc9ff-fb12-4d44-8548-c1c3d4104138" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "78835dcd-c285-4bed-b2d6-942a037be2b1" ], + "x-ms-correlation-request-id": [ "78835dcd-c285-4bed-b2d6-942a037be2b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081258Z:78835dcd-c285-4bed-b2d6-942a037be2b1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01D987A2148B44F09BA2F7EFD7F78C67 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:46:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:47:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83C3787E15E147B3A09580449F7667CF Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:12:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69006de4-0000-0300-0000-68e74c680000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c60160b5-1df3-403a-ae09-477312b2167d\",\r\n \"ConnectionString\": \"InstrumentationKey=c60160b5-1df3-403a-ae09-477312b2167d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:46:59.3886076+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-8l0a19iyrf_4410ee6b-fa30-4aa6-80c2-d8bed8c860be_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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\": \"\\\"d303d122-0000-0300-0000-690daa0a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4\",\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"AppId\": \"374e7aee-deff-44c3-a89e-562bf281dd0e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"543764a0-472d-41c9-bb9d-12e05ac971af\",\r\n \"ConnectionString\": \"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\",\r\n \"Name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"CreationDate\": \"2025-11-07T08:12:55.348328+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-hup7w2scx4_374e7aee-deff-44c3-a89e-562bf281dd0e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"c60160b5-1df3-403a-ae09-477312b2167d\"\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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-hup7w2scx4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1917" ] + "Content-Length": [ "1845" ] } }, "Response": { @@ -3155,43 +3315,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E02F4A4AE0\"" ], + "ETag": [ "\"1DC4FBE55B0C160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19984114-b74c-473e-bde1-28042a9a4e99" ], + "x-ms-request-id": [ "e453bbb7-9c4e-406e-925a-befe79cfef58" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25e70201-333c-4d2e-8490-5bfed0b10891" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df424f89-f903-4c21-af70-2fff7df11be3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "00616a8e-7845-4614-8cf9-bf51033fbd5b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054804Z:00616a8e-7845-4614-8cf9-bf51033fbd5b" ], + "x-ms-correlation-request-id": [ "d4ede830-a017-4b7a-92a6-08d3183ec28f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081341Z:d4ede830-a017-4b7a-92a6-08d3183ec28f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D72399D0E0E4CF5A8E200134AC0253F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:47:20Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 210D2B42A6FC456084EFB2E35D64A4B9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:12:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:13:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8953" ], + "Content-Length": [ "8942" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:47:22.4433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:13:00.5633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-hup7w2scx4\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.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}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "ce3a8373-074e-4833-b2c9-9b8985e6efc9" ], + "x-ms-unique-id": [ "250" ], + "x-ms-client-request-id": [ "dd18f2ce-0445-41bd-a6a7-e7b0cc090e24" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3201,42 +3361,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0479FF28B\"" ], + "ETag": [ "\"1DC4FBE6D999075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a8a5898-4660-490e-96c0-f893af8a18de" ], + "x-ms-request-id": [ "9c5d055a-8f4a-4ab5-9059-aaf18aa0cfa7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "91b64b14-efcf-44bb-a8f7-e709c7a16182" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054834Z:91b64b14-efcf-44bb-a8f7-e709c7a16182" ], + "x-ms-correlation-request-id": [ "a1e08ef3-fdf9-4f61-8727-3f7f6c6c506e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081412Z:a1e08ef3-fdf9-4f61-8727-3f7f6c6c506e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F72D06FA11448B5823F25AB9DE77577 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:34Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32946178FCD84EED9386F01A47A55363 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8822" ], + "Content-Length": [ "8919" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:13:41.5433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-hup7w2scx4\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "68fb5888-5c72-4ff3-a1ed-c933f24f7ee8" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "c7681c74-00d9-4cfd-952f-e0a6b992d1ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3247,42 +3407,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0479FF28B\"" ], + "ETag": [ "\"1DC4FBE6D999075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bf72158-21b5-42b2-964c-05c5410023d2" ], + "x-ms-request-id": [ "be4727a7-950b-40c9-a7b3-c2e9dc5db185" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6df1eb84-70eb-4502-960d-7b91e9ba2075" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:6df1eb84-70eb-4502-960d-7b91e9ba2075" ], + "x-ms-correlation-request-id": [ "692fdfa1-4559-423d-864c-fba9e6d7c5e0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081413Z:692fdfa1-4559-423d-864c-fba9e6d7c5e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 833116FC54C24A67B0C132C67A81ED42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 869A4B351797486A8DEB01DB51C882DE Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8822" ], + "Content-Length": [ "8919" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:13:41.5433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-hup7w2scx4\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "213" ], - "x-ms-client-request-id": [ "94ae3efa-ed16-4d1d-b9a4-6f1ad22bd366" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "68f848c2-430c-4fc1-874f-56b3a3e7167c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3294,40 +3454,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3860afe3-6b58-4cc3-92e6-72f6560cf928" ], + "x-ms-request-id": [ "1e886da1-44b5-41ee-ae3d-cfbc6d3c81b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b878863-de5a-4a52-b7d2-4146bdb59cee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5c6a2cf-7152-46a2-8a28-6fd56b637d4b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d4a170fc-bd80-4c4e-adfc-5a94db1c8f72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:d4a170fc-bd80-4c4e-adfc-5a94db1c8f72" ], + "x-ms-correlation-request-id": [ "b6a6e739-aa68-405f-84f5-fe73a0d53f4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081413Z:b6a6e739-aa68-405f-84f5-fe73a0d53f4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF3D1D82F84C413DB645EB02990F492D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8695C39B2E524DBF9A13A871F928CCA4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1309" ], + "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "b0ab4b0c-731f-4fa9-bcf9-ab743615f742" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "e8683165-3e25-4df8-bbe6-d91666f77ca5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3339,41 +3499,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "868c21dc-6272-45c1-8e93-0ec98d5128f5" ], + "x-ms-request-id": [ "b8090fbd-76bf-4924-b8f3-533deee233ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/01811e01-311f-4047-8e75-4290a4727df5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e10ba12-818e-4275-a1ed-76cbb5477fb4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "243c61db-6db3-483f-98a0-c9900c2d569b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054835Z:243c61db-6db3-483f-98a0-c9900c2d569b" ], + "x-ms-correlation-request-id": [ "7c36c2b1-02fb-43d5-ad23-f4a4b08bef56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081413Z:7c36c2b1-02fb-43d5-ad23-f4a4b08bef56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 177BB7AEDB14458A85855CCEA1652503 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0658C868F3864C3A94C069EE1F5260E4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14: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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "2fe8fde0-068f-4daa-9dd2-94b0637cdc7d" ], + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "4c4cec6f-0a7c-4cf0-90fe-8ed5766c7930" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3385,40 +3545,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "729bb04f-89c8-46ed-a43b-75e7812a2e94" ], + "x-ms-request-id": [ "e8aa384a-373f-432c-b023-2888049b15e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a7df9a6f-3dc9-4445-8c79-6ec85461ec8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ef85ed1-2cac-46da-ab21-ff2c80785ce4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7ad83cbf-a4e1-4fc9-a2d4-c391a3981b45" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:7ad83cbf-a4e1-4fc9-a2d4-c391a3981b45" ], + "x-ms-correlation-request-id": [ "e6c3c6cb-8ff9-46ed-9405-86bc12cba268" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081413Z:e6c3c6cb-8ff9-46ed-9405-86bc12cba268" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5536BA4685141F5AD50E7100CF7307D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:35Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9532FB7DB1A24C2699ADD69576E8F07B Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1309" ], + "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "d6cb06d9-9e3d-472a-8608-8a14cd596ab9" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "17d11c27-bbc3-4b57-99aa-ffe965006f1d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3429,42 +3589,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0479FF28B\"" ], + "ETag": [ "\"1DC4FBE6D999075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e0bb261-680e-44e2-aa9f-229e0a0a81ed" ], + "x-ms-request-id": [ "747ac25b-7d61-412a-85ad-48088b9dd1c2" ], "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": [ "7a315798-05b0-4b7a-b187-14bb9b091cbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:7a315798-05b0-4b7a-b187-14bb9b091cbb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b726883d-ba82-47b0-802c-bd25f927af99" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081414Z:b726883d-ba82-47b0-802c-bd25f927af99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 147474D0A4054593A25ABF6019644762 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B9A18C487984CC1BB8FB01E9C7E6F95 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8822" ], + "Content-Length": [ "8919" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:48:03.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:13:41.5433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-hup7w2scx4\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "d0422bc2-918e-4632-b816-340479144870" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "06a77c7f-ad00-4e48-a9f3-675d9e8bddd3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3476,40 +3636,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "434605ad-e190-45ed-9a48-94e74e7f3390" ], + "x-ms-request-id": [ "a90a7d31-806d-4248-beff-2f7d77ae1fa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6b80662-b97a-4c83-9d0f-f419f92e1b7a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a4fb6fc-e6de-455c-bb65-8f9e19e0b911" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "acca92da-f031-46e3-97d3-46dfa1b359cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054836Z:acca92da-f031-46e3-97d3-46dfa1b359cf" ], + "x-ms-correlation-request-id": [ "48bfbada-e80f-44c3-9e78-70ca21da65ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081414Z:48bfbada-e80f-44c3-9e78-70ca21da65ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B601EFD21473434B831E5FF7301E737A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8F754D86869466F8DF11375A76295FC Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1309" ], + "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\",\"AppSetting2\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting3\":\"\"}}", "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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "c3a54d33-23fa-48da-a147-2466e4a2c4ad" ], + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "ea436ad9-6527-4c70-9a78-2916d4ad0120" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3521,41 +3681,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83a20579-6194-453c-ba77-ff19e0cb5808" ], + "x-ms-request-id": [ "e7e81c79-bb91-4b76-b91f-5dfa6e4aa5af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50ac7b85-e36b-4dbe-9f9f-c3d0dbb75bdf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ca9e366-e43a-487f-896e-17ed1d0df11f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054837Z:8ca9e366-e43a-487f-896e-17ed1d0df11f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02c95b86-8cfe-4b58-99c3-7125a92cc960" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "78646776-7761-4a18-9560-6082fb4e6629" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081414Z:78646776-7761-4a18-9560-6082fb4e6629" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C7DA46C799640738A167334B7D73C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C0569A2DEFA457EA6AFF99603938191 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"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-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "15b70aff-f55a-40e3-894f-8aec550991e4" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "d617b6ee-07e9-4a57-81bc-629eda394ab4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3566,20 +3726,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0479FF28B\"" ], + "ETag": [ "\"1DC4FBE6D999075\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e465a8e6-2a2a-4d50-94b8-513b6c33b440" ], + "x-ms-request-id": [ "7c3c7ad1-49bc-448c-9d90-60674d669d11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/424306dc-93a3-4782-8c04-e4415bcab918" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8844071-6cb3-4d82-91ed-4d18bd80b80d" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "e03f3878-23b4-4dfd-aa2a-fe5530259ed9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054846Z:e03f3878-23b4-4dfd-aa2a-fe5530259ed9" ], + "x-ms-correlation-request-id": [ "141c66f4-b8be-4d9c-9648-e796fe6e1f3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081423Z:141c66f4-b8be-4d9c-9648-e796fe6e1f3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB122B03FCC34335AB308A10C8CCD800 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:37Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AA579A2E65944F8A224139B5CD54A4C Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3593,7 +3753,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-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3608,18 +3768,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43f43d7f-851d-4d0d-ba08-c8e3388ac870" ], + "x-ms-request-id": [ "fd580c75-3ddf-432f-91e1-7d0849419c3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b78bf6b4-b6ff-415e-a737-cef415749c71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1e900b8-b6a7-4dd8-830a-84bd1e3f5d8b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d8a8484-84b4-47b2-adaa-004ea8523629" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054847Z:0d8a8484-84b4-47b2-adaa-004ea8523629" ], + "x-ms-correlation-request-id": [ "a6b603f8-59ab-461b-8a59-11947847b43b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081423Z:a6b603f8-59ab-461b-8a59-11947847b43b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1781E94D1EF54623BE18F0001E6F64A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B29BA3F30DEA4C619B9B6BDADF025043 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3637,12 +3797,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "5e19e404-1d3b-4f84-a677-a31876a98c17" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "6bb9d4e4-8beb-4183-bce7-dbad7f8774c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3653,83 +3813,86 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "af45bb20-6207-4146-acd0-45853c7d96d7" ], + "x-ms-original-request-ids": [ "982e3f33-1315-4183-b06b-e90a2158e1c5" ], "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": [ "9a390876-ffed-4d51-92bb-c825e4ac5d66" ], - "x-ms-correlation-request-id": [ "9a390876-ffed-4d51-92bb-c825e4ac5d66" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054847Z:9a390876-ffed-4d51-92bb-c825e4ac5d66" ], + "x-ms-request-id": [ "424e6229-cb7b-4994-b069-e193e4b59448" ], + "x-ms-correlation-request-id": [ "424e6229-cb7b-4994-b069-e193e4b59448" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T081424Z:424e6229-cb7b-4994-b069-e193e4b59448" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D31299BB86A42FDB7717B826B39F923 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB33E178A8EC4100BACA351D15FD156E Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "222" ], - "x-ms-client-request-id": [ "1b8fb8b9-d09e-4d08-876c-bba8ea2ecb26" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "7c121711-4639-4f5e-8cf9-42ebf66243cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], - "x-ms-correlation-request-id": [ "a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054847Z:a2dbc910-ffcb-47a6-9c53-86ee1fe62d4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8f2f1898-b7ac-47ba-97a8-b010f9faefa5" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "064a42e7-3bc4-4952-ad3b-970bbe428ef5" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T081424Z:064a42e7-3bc4-4952-ad3b-970bbe428ef5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2945D7E9432C46EA9C6B055839B5FEDC Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F36BE83326144AB7B7AB2C1625B115BE Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "223" ], - "x-ms-client-request-id": [ "3c7ffb50-1914-4908-b275-c3c27fd9c0b3" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "4ffe9c6a-7c08-4b2d-b459-b8ea1de4f0ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3741,40 +3904,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1b72a9f1-d22b-4eff-a9b7-a935b58d4f9c" ], + "x-ms-request-id": [ "095bf55b-07c8-4bfb-afb5-2681ba440307" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5c509cd7-2070-49d8-8f7c-a4abf4c752b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:5c509cd7-2070-49d8-8f7c-a4abf4c752b6" ], + "x-ms-correlation-request-id": [ "a0e46759-7fdc-44c9-9345-562094973bac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081424Z:a0e46759-7fdc-44c9-9345-562094973bac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF8F9D8A53874B8CAA1233FB45E7A02E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 033BAB96D1D8407E9249332F8FFDDD43 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "224" ], - "x-ms-client-request-id": [ "b83d289a-9dbe-48b5-ac16-6ef2a4605368" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "58f99401-3781-4375-96ab-67a9e8d09849" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3786,40 +3949,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3ce57dc-2c15-4221-bde8-ffdad77e6c47" ], + "x-ms-request-id": [ "6a607e2f-9da1-4530-af56-4fd87d8407cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4cef1454-44fc-40a4-baff-e27508960be0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:4cef1454-44fc-40a4-baff-e27508960be0" ], + "x-ms-correlation-request-id": [ "b8e52ad8-0cef-4243-a891-826820190fba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081424Z:b8e52ad8-0cef-4243-a891-826820190fba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FC896841DF14366BE942D7EB78105B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A8ECABE6F89454383E0113F12112F11 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "2aa5c90f-1a4f-4c97-b502-18b522929459" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "ca5df381-67c7-4cd9-bdce-fc8a8f635bf0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3831,24 +3994,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9620f3a-9083-4934-bce6-f28c3b586643" ], + "x-ms-request-id": [ "d816d4ab-dca9-427c-823c-00895fa2bead" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "152da4fc-194d-49b9-b6f0-006bfd7de7f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054848Z:152da4fc-194d-49b9-b6f0-006bfd7de7f7" ], + "x-ms-correlation-request-id": [ "b1664778-418b-4d92-8fee-82c86ef6e1c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081424Z:b1664778-418b-4d92-8fee-82c86ef6e1c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3BEF82954164772838D40F0F27AD917 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBEDC95B27E94F988B40FCC7F36BF8D1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -3859,12 +4022,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "226" ], - "x-ms-client-request-id": [ "9b42af78-10b8-41bd-90e0-829a18e9b470" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "5016df5b-565c-4774-b90a-dfb2e57278d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3875,40 +4038,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "120b38f3-d2e4-48dc-982c-db418b3e687d" ], + "x-ms-original-request-ids": [ "dc21982e-88e2-45be-a9c1-55953787fb04" ], "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": [ "3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], - "x-ms-correlation-request-id": [ "3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054849Z:3003f74f-8526-488a-bbc3-2736c9b6d7d5" ], + "x-ms-request-id": [ "c13967fc-9927-4df0-b77f-1f651433e196" ], + "x-ms-correlation-request-id": [ "c13967fc-9927-4df0-b77f-1f651433e196" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081425Z:c13967fc-9927-4df0-b77f-1f651433e196" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37534FC0921C48A09140974C2124D959 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1E3ED69366C4077A4B3157D98CE6A9F Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "0fbe8798-dcc1-4ab3-bb2a-009a2a8a8841" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "f7835b5b-09e6-4b68-ac3a-3a4da97dd9c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3919,30 +4082,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c8f2a0a4-b0b6-4ab6-af89-3fbf2f266ebd" ], + "x-ms-request-id": [ "aa31809c-cccf-40ca-b0f5-9ec9f5013fc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/069357a6-6c87-4988-ae8f-6bf059e9360f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cc096572-154a-4464-a9e9-77f2e14b57d2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2cfa1e1-0dd8-4917-ba92-7cdeb2309a43" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T054849Z:c2cfa1e1-0dd8-4917-ba92-7cdeb2309a43" ], + "x-ms-correlation-request-id": [ "9b3dbb43-4982-4716-9d78-fc28d1736c3e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081425Z:9b3dbb43-4982-4716-9d78-fc28d1736c3e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 783D7EC20DAE449C9D40D56967C64ABD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7B07F2F04AF4312A4A41075C745B3D4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { + "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-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?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": { @@ -3962,36 +4125,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/5e969db3-cb32-44b8-be16-fec5680faa87" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "7b6978a5-645d-4a75-bea4-f997fe407225" ], - "x-ms-correlation-request-id": [ "7b6978a5-645d-4a75-bea4-f997fe407225" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054900Z:7b6978a5-645d-4a75-bea4-f997fe407225" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86c9afc7-0b7e-47d7-849b-e73d3e53b43a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "9205f8fe-86ae-47da-8d81-f1da3ed948fd" ], + "x-ms-correlation-request-id": [ "9205f8fe-86ae-47da-8d81-f1da3ed948fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081429Z:9205f8fe-86ae-47da-8d81-f1da3ed948fd" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A72E239FC17418E886FBF08E8AED2CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:48:49Z" ], - "Date": [ "Thu, 09 Oct 2025 05:48:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B39AADB449C84CCBA65916DE53477619 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:14:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69000fe8-0000-0300-0000-68e74ccc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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\": \"\\\"d3037f3b-0000-0300-0000-690daa650000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4\",\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"AppId\": \"8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a7a1d55-f3f8-403f-82a7-3df5d34bfba8\",\r\n \"ConnectionString\": \"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"CreationDate\": \"2025-11-07T08:14:25.9596242+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-hup7w2scx4_8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\"\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-n8vg16/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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-hup7w2scx4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\"\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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2071" ] + "Content-Length": [ "1999" ] } }, "Response": { @@ -3999,43 +4162,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E06AE0F630\"" ], + "ETag": [ "\"1DC4FBE8BFF09C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7f52793-864a-40d5-ab80-77dbb2f1fee5" ], + "x-ms-request-id": [ "e7408a7d-e162-4d29-a545-6f0356cb075f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b038161-f4cd-4898-83d8-37b43f66121e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6a867acb-2460-4552-830d-705b00f21518" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e227a2dd-038a-4fd8-8c44-50dd0243ec6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T054942Z:e227a2dd-038a-4fd8-8c44-50dd0243ec6d" ], + "x-ms-correlation-request-id": [ "2ac89721-caf0-4a53-83c9-d78ae53ab90e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081513Z:2ac89721-caf0-4a53-83c9-d78ae53ab90e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1599A08ADAA443C1A4E0C130EAD1E4E9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:49:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F58A17BC56E467D9518D239D273B079 Ref B: MWH011020808025 Ref C: 2025-11-07T08:14:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8902" ], + "Content-Length": [ "8903" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:02.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:14:31.747\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+11": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "82873200-2047-4dce-a192-34e86f6c77c1" ], + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "a8910f82-1e2f-422c-a52b-66223f805977" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4045,42 +4208,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0823E6830\"" ], + "ETag": [ "\"1DC4FBEA40258B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c6caf12-3274-490e-8a2e-eb691afb8e5f" ], + "x-ms-request-id": [ "9c424deb-7851-4364-bc4b-a5c2bc23cbc1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66fbb65a-2d5b-415b-89b8-d21d39d9e484" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055013Z:66fbb65a-2d5b-415b-89b8-d21d39d9e484" ], + "x-ms-correlation-request-id": [ "8c01fdce-eb4e-45a6-ac88-7124b413dce7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081543Z:8c01fdce-eb4e-45a6-ac88-7124b413dce7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FADEC04503F4B53985BF1667DB290B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A98206D03D1A43EF97CA1E0DF47572D8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8769" ], + "Content-Length": [ "8877" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:15:12.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "494ea597-96ac-44f5-b0d0-3ca3ed2e830b" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "a4fae50a-653e-466b-a0a0-c987254e8fd5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4091,42 +4254,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0823E6830\"" ], + "ETag": [ "\"1DC4FBEA40258B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5abcd383-4f98-4120-8ce0-990eb6598cea" ], + "x-ms-request-id": [ "83a2c0f1-aa53-47c6-9196-6af472eb69cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aaf05c46-8c01-47b0-92e3-3bbcc3d656a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055013Z:aaf05c46-8c01-47b0-92e3-3bbcc3d656a8" ], + "x-ms-correlation-request-id": [ "1e52dbb2-c0b5-4ab5-a1f1-681d19cae0c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081544Z:1e52dbb2-c0b5-4ab5-a1f1-681d19cae0c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F0B5313F14742688054803BF0069186 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 387CF1F8284E44C090C764AE4A2F0038 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8769" ], + "Content-Length": [ "8877" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:15:12.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+13": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "232" ], - "x-ms-client-request-id": [ "fc886488-05f5-44e0-9d98-7188201fe6dc" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "93557ad6-11e5-4a8c-b543-bf603bf48f69" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4138,40 +4301,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dda86243-ab5c-4c23-a578-588b272eb00c" ], + "x-ms-request-id": [ "a4e3f243-e6b0-4fe0-92f0-5988e21ba902" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2fe6edae-2613-4253-93d3-cc141d6fe743" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/faec7556-8180-4161-b6be-0c59b9ef2744" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5b3615eb-f9c3-4639-8d52-f96ec82185d8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:5b3615eb-f9c3-4639-8d52-f96ec82185d8" ], + "x-ms-correlation-request-id": [ "1ca31a27-d3de-4e43-9f85-0d0bae0a0b1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081544Z:1ca31a27-d3de-4e43-9f85-0d0bae0a0b1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F15CCEEFDF6C4C1B90FF911A51448902 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28AC0BBA02484BF697C9E0D35B714661 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "b291a9c4-40da-4640-a49a-35ccc314318a" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "a60c7319-0b1c-4142-889b-1ae4825d00ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4183,41 +4346,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87d481c9-e82d-40b5-9089-280d800e631e" ], + "x-ms-request-id": [ "6116f26d-50c6-40a8-b96b-1679b2c99a1a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8597ca27-f66a-4429-a465-08ecfef43a09" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69dc002a-e353-4211-87bb-3a11900cf21b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72822952-7c59-4b07-acac-0f304b800033" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:72822952-7c59-4b07-acac-0f304b800033" ], + "x-ms-correlation-request-id": [ "5fb90dcb-f56e-41bf-a2c4-e65e3a9163f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081544Z:5fb90dcb-f56e-41bf-a2c4-e65e3a9163f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 910C99361D2B4539836BADE283C1D3E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41A01DC4F4574F4AAE69A58B41FE6E85 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:44Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29157,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30512,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "1470ea6f-4ea8-499d-adc9-c6c81ab821b3" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "15dc9709-911b-4e4c-8e5d-16b05e451e53" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4228,42 +4391,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0823E6830\"" ], + "ETag": [ "\"1DC4FBEA40258B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5d535b8-276a-47cb-b315-ac7f93bfe875" ], + "x-ms-request-id": [ "9ac706b7-09a8-44f2-b293-d1644b6f4867" ], "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": [ "4fc27e0d-a040-4352-ada8-2d66ae3ab970" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:4fc27e0d-a040-4352-ada8-2d66ae3ab970" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8bc90601-d93c-4a1a-a5d1-014f9c1a2e7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081545Z:8bc90601-d93c-4a1a-a5d1-014f9c1a2e7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4982C7A697F3448DA3679DBFD1605153 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F64B78FD184D4F17A9C121ED88C0E915 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8769" ], + "Content-Length": [ "8877" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:49:42.323\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:15:12.827\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+16": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "235" ], - "x-ms-client-request-id": [ "ceae63a8-dea2-4dc9-a64a-a7e46243ebe9" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "07167880-f4cd-42a8-bde0-064d0c790a14" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4275,40 +4438,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d4c6b270-52e7-4882-a46c-94744b6b7960" ], + "x-ms-request-id": [ "d3c48bfa-908b-472c-9a19-737e847e1953" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5210eecf-f60a-411e-b0a4-9e411b8df367" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50cd82d7-6a02-427c-9932-7be667d7eb71" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ac3b8492-0a0e-4ec8-bc86-88f2fdc56159" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055014Z:ac3b8492-0a0e-4ec8-bc86-88f2fdc56159" ], + "x-ms-correlation-request-id": [ "bc211d96-f0a4-4237-950a-1453920c8103" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081545Z:bc211d96-f0a4-4237-950a-1453920c8103" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EFCEDAF53F3F4F36B008C832CBD83848 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B40EDCCD02FF4F288A48FC3687BFA17E Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01+17": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "d69ac547-097b-4429-94ec-d30569038884" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "34ad4956-5baf-4133-82a3-b1c372426591" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4320,41 +4483,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2607a3fa-37e4-4804-8796-a93cceb078e6" ], + "x-ms-request-id": [ "4ebb56de-3e1e-4460-a9c9-9b1e62da21f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea0f896f-8674-4128-acdb-81d9bfa47b88" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "19ca81db-76e2-4cf9-9b73-f7406ff20ed9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055015Z:19ca81db-76e2-4cf9-9b73-f7406ff20ed9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/704db5ae-fd34-428e-bfd0-319fde4db83e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bbf4a2fe-c1ea-4aae-ad24-ffed86083b95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081545Z:bbf4a2fe-c1ea-4aae-ad24-ffed86083b95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 548833888D8A48A88263E67E2DC84D3E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55991344EB2345B98B1C8DF999F7B4B3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29157,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30512,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "9a4001c3-b9b4-49c4-96f1-de8356293659" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "4f12d514-52fd-42ee-bd46-e761d8ed38a5" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4365,20 +4528,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0823E6830\"" ], + "ETag": [ "\"1DC4FBEA40258B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99c246fe-eab3-400d-93d4-4ab865c67fd1" ], + "x-ms-request-id": [ "0701278d-6c31-4ffe-9b2f-79fdcf03ddcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac866b24-bcfa-4a5f-b86c-ff0c5e625855" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6c333a8-2b89-425a-9c2a-0e6d43fbb032" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f4bcf21b-a5c5-4912-b9ac-2f2f83a8e5a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055023Z:f4bcf21b-a5c5-4912-b9ac-2f2f83a8e5a4" ], + "x-ms-correlation-request-id": [ "1bddb0e1-42da-4325-8507-51f0fc45264b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081557Z:1bddb0e1-42da-4325-8507-51f0fc45264b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A636899F53AF41E4A7A426E04D41280D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBB338FB51BA455DB53CA87C8AEC9D87 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4392,7 +4555,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-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4407,18 +4570,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1cc3b97a-77e7-45a3-9108-44363438e3ac" ], + "x-ms-request-id": [ "0a416346-5397-46d2-a182-f84b49035d38" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad7c3fb7-2b51-4cdf-b7a6-67d128a2b172" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4205438-b452-4405-acc0-d83fa70e0319" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "abe48cc5-92b1-494c-be4b-0200747cc01d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055024Z:abe48cc5-92b1-494c-be4b-0200747cc01d" ], + "x-ms-correlation-request-id": [ "49509de2-70dc-4d2e-82cc-0d363e054319" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081558Z:49509de2-70dc-4d2e-82cc-0d363e054319" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5409568182C3417E96E83E290626ADC7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:23Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7A3DD031B034A87831FBDE422A0FA17 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4436,12 +4599,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "5af2a143-34e2-4e55-9687-c4017a25bc32" ], + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "facce38c-3c78-4a30-89ac-19c6a3d1dc06" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4452,83 +4615,86 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e80c26ad-8d31-49d6-a5e1-5e949825523d" ], + "x-ms-original-request-ids": [ "bd53172f-f91d-4144-88a1-4f833cc3289d" ], "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": [ "7750a675-4135-4bee-b318-8397815b43cc" ], - "x-ms-correlation-request-id": [ "7750a675-4135-4bee-b318-8397815b43cc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055024Z:7750a675-4135-4bee-b318-8397815b43cc" ], + "x-ms-request-id": [ "3f1d0a09-b6e9-43d3-aff6-fa5ea3d105d5" ], + "x-ms-correlation-request-id": [ "3f1d0a09-b6e9-43d3-aff6-fa5ea3d105d5" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20251107T081558Z:3f1d0a09-b6e9-43d3-aff6-fa5ea3d105d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42A947EF814A4679B784C1D8404F1220 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA750B29546940C1BA00F1D395714740 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "933d506d-0091-4dd6-bea9-bcf39e3e0a05" ], + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "a406786c-abe8-4b45-99e9-2b50c5286cb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], - "x-ms-correlation-request-id": [ "41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055024Z:41634fd0-94b6-43c4-a7b6-69a10462ac6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ac7eac82-2cee-4eb0-a9af-3e7cbedd37a4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5380cf48-9de8-4906-a8ac-74d6edf1cca9" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T081558Z:5380cf48-9de8-4906-a8ac-74d6edf1cca9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C637275B9184129971392D0612879E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 466D1BB0B77B4926A7D2572CCD9D9B26 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "241" ], - "x-ms-client-request-id": [ "b2a7ee87-b511-467a-af32-0506b8e6f8b9" ], + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "e508b0a3-fb11-4caa-ba00-82d2f88da7bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4540,40 +4706,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "752114ea-68fb-4d76-9460-4bfff862cfc0" ], + "x-ms-request-id": [ "cc276b75-aacf-4363-bbb7-63940c6f9411" ], "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": [ "9bce9c9e-5fca-49a4-bb20-301bd77b0e8e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055024Z:9bce9c9e-5fca-49a4-bb20-301bd77b0e8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a8432acf-896f-402c-8a5f-8829defe6db7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081558Z:a8432acf-896f-402c-8a5f-8829defe6db7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E48EA9961FE4783B8CD17B467BFB5D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D675F350F883437EBEC7A26196B3FD16 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "22bc956d-ec41-4e78-9014-da1b6ea09da7" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "e156ebaa-218d-49ab-8532-79049082a94e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4585,40 +4751,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9ca0c03-df0a-4fb8-a2b1-e94ce082abe4" ], + "x-ms-request-id": [ "63678f22-6bbd-4ae2-96af-862c18ad1484" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ef08831a-4b56-4f38-ad13-1d6f5f3e0a69" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:ef08831a-4b56-4f38-ad13-1d6f5f3e0a69" ], + "x-ms-correlation-request-id": [ "9e354ddb-26b1-452c-b2e6-5529e816b631" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081559Z:9e354ddb-26b1-452c-b2e6-5529e816b631" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02E438CB2D6B4AD6BD006C62BC0652E9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C4272CDE47743A898C2BE96C510172F Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "f44a2c01-2ef5-48e6-b0d6-ef0a103b89ae" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "685ef183-db5d-4dc6-bbbc-854502eaad7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4630,24 +4796,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2932efa8-2232-4b65-9b43-19c6bc8f25f7" ], + "x-ms-request-id": [ "4faa692b-9140-4893-aec5-4fae422eb240" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "70a8cae6-403b-47c4-b298-8b65603083b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:70a8cae6-403b-47c4-b298-8b65603083b3" ], + "x-ms-correlation-request-id": [ "945a7ab4-22b7-4855-b2fd-c3ccbd7ebf4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081559Z:945a7ab4-22b7-4855-b2fd-c3ccbd7ebf4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BE69BF450734C7AB534ED879F44FC97 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A29AC9CF8FF4FB187F7AC846F0A4C24 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -4658,12 +4824,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "e7f9b429-b8e4-423f-9cf4-1332fed7e5a9" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "449303a9-8c37-4fd7-b962-c1e1f7d9d8d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4674,40 +4840,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9d17c09e-6953-4489-a78b-677182ac0b98" ], + "x-ms-original-request-ids": [ "36691754-24b9-462c-95e2-e6960d61c13f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-request-id": [ "759156ef-e691-4c79-8175-169d94a51776" ], - "x-ms-correlation-request-id": [ "759156ef-e691-4c79-8175-169d94a51776" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055025Z:759156ef-e691-4c79-8175-169d94a51776" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "bdd40393-dcae-46fb-a4d0-a56b2390a8cf" ], + "x-ms-correlation-request-id": [ "bdd40393-dcae-46fb-a4d0-a56b2390a8cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081559Z:bdd40393-dcae-46fb-a4d0-a56b2390a8cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA7CF757AA944A2F96D1899D1F7B3AD8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF548990D9CC45E195984FD87DC26EED Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "0282a322-a24c-4402-bfcf-e3ca1f43ab81" ], + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "579c2bf4-36e5-41de-9b1c-a7797108db0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4718,30 +4884,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5f243530-86e8-4ae6-b868-36a54389256f" ], + "x-ms-request-id": [ "be5d0092-6335-4db4-8edd-57648459ce2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/73fbffd2-3b81-4c2e-bfea-9e0d97fc25d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0c82fef9-836c-47f7-8b1a-8ccf0f14e348" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "68ff55f5-0773-4a3f-8a4b-42c6c29484f7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055025Z:68ff55f5-0773-4a3f-8a4b-42c6c29484f7" ], + "x-ms-correlation-request-id": [ "11e62f71-9e89-4537-80f2-8abeb8ec5a6e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081559Z:11e62f71-9e89-4537-80f2-8abeb8ec5a6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05C08EA1347A49F1BE30167F70B87C73 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BF25C9492DC4DDEA9302C30C986E2A4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:15:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:15:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"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-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { + "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-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?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": { @@ -4761,36 +4927,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/2020206e-9f6a-497e-9c17-b17ff14d316b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c659c781-0342-43e4-8d26-fa800bbb7311" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "6faa6e22-5817-4f65-b141-a0b490450674" ], - "x-ms-correlation-request-id": [ "6faa6e22-5817-4f65-b141-a0b490450674" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055029Z:6faa6e22-5817-4f65-b141-a0b490450674" ], + "x-ms-request-id": [ "f07d0de8-1b05-42a2-9d78-4322d964b453" ], + "x-ms-correlation-request-id": [ "f07d0de8-1b05-42a2-9d78-4322d964b453" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081601Z:f07d0de8-1b05-42a2-9d78-4322d964b453" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E72D151B34A8404DAC273DFD50992105 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:26Z" ], - "Date": [ "Thu, 09 Oct 2025 05:50:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25AE691CCC84444E88FCD88092E5677E Ref B: MWH011020808025 Ref C: 2025-11-07T08:16:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:16:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69009feb-0000-0300-0000-68e74d220000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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\": \"\\\"d303d153-0000-0300-0000-690daac00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4\",\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"AppId\": \"8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a7a1d55-f3f8-403f-82a7-3df5d34bfba8\",\r\n \"ConnectionString\": \"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"CreationDate\": \"2025-11-07T08:14:25.9596242+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-hup7w2scx4_8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-hup7w2scx4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\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": [ "2018" ] + "Content-Length": [ "1946" ] } }, "Response": { @@ -4798,43 +4964,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0AB45A450\"" ], + "ETag": [ "\"1DC4FBED178AEC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ac34f20-188c-4522-8017-9dc3b19922f0" ], + "x-ms-request-id": [ "99024fad-316b-4015-8efd-f25d40d093a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b7f7e86-491d-4875-a0f4-e022e1e3709c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ecf10ab-203d-455f-b016-6a419ff8c227" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a4c50deb-abe1-45e1-9178-dce0adb6af31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055113Z:a4c50deb-abe1-45e1-9178-dce0adb6af31" ], + "x-ms-correlation-request-id": [ "90cc22a1-d532-4f93-9b98-a61411594764" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081644Z:90cc22a1-d532-4f93-9b98-a61411594764" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDD15E0693A540CFAF2EA414898126D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:50:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57BFC7AD54D6414B9133778719EB1360 Ref B: MWH011020808025 Ref C: 2025-11-07T08:16:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:16:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8705" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:50:32.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:16:03.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.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\":\"85096428-a1a6-463d-93da-7f45508cc750\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+11": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "8f03b926-a3dd-4371-81e6-11f359635997" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "9183b546-204a-46e0-aabb-664d095b7c9c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4844,42 +5010,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0B822F240\"" ], + "ETag": [ "\"1DC4FBEDA3306F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad5fc646-2a5d-46e2-bb58-f2e5327e0f7d" ], + "x-ms-request-id": [ "750c18bc-c705-432c-8601-985c63e6dc15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f74ffd65-e9e2-4bd7-9f3b-57b912d3fe39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055143Z:f74ffd65-e9e2-4bd7-9f3b-57b912d3fe39" ], + "x-ms-correlation-request-id": [ "cf9ade1e-998e-4d5c-b54b-3e3b2061fab7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081714Z:cf9ade1e-998e-4d5c-b54b-3e3b2061fab7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73927EEB93634B92AB5053D35844195B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E43FD40DD484F43B003FF22F8DAF7FD Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8571" ], + "Content-Length": [ "8680" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:16:43.743\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"85096428-a1a6-463d-93da-7f45508cc750\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "249" ], - "x-ms-client-request-id": [ "95d54e05-f2a7-46a7-ad5b-ed4249919ba5" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "f9079d7c-e849-47cc-b603-07f33f8acfb9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4890,42 +5056,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0B822F240\"" ], + "ETag": [ "\"1DC4FBEDA3306F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48260738-ecf9-41d3-a851-2983c2491c17" ], + "x-ms-request-id": [ "cc402d04-373a-4d50-8337-4b4c8823cef5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1011dfb5-03ff-407a-b0bb-42b7e1c1aaaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:1011dfb5-03ff-407a-b0bb-42b7e1c1aaaf" ], + "x-ms-correlation-request-id": [ "15d81288-3fa1-4d6d-bad7-8bf509587460" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081715Z:15d81288-3fa1-4d6d-bad7-8bf509587460" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 28B418503C13431794255E2295CFD513 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:43Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34E025D750E84F1498B88A3998F97702 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8571" ], + "Content-Length": [ "8680" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:16:43.743\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"85096428-a1a6-463d-93da-7f45508cc750\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+13": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "250" ], - "x-ms-client-request-id": [ "5b55696e-5630-4b09-8360-47add2072fac" ], + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "5c416825-f31c-4a90-a2c6-5d2f7ad4ab47" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4937,40 +5103,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "363ccbf4-3b5b-40b4-9ba8-63d0bca6ce6a" ], + "x-ms-request-id": [ "4a030488-9413-4e99-add9-80094fb461a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8582475f-2aa6-48dd-9a31-a70775bba91e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b850adf-97fd-414a-9f52-17d75369f955" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2279344d-e2aa-4d2a-8653-e6b7e714aa6a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:2279344d-e2aa-4d2a-8653-e6b7e714aa6a" ], + "x-ms-correlation-request-id": [ "03ce4848-ff7d-43ff-a4bb-484c233cbddc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081715Z:03ce4848-ff7d-43ff-a4bb-484c233cbddc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C5EB45A25E94F2D97F6253CF91F035F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED226BCA4F17416580D6908517196C59 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01+14": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "8f35b026-5670-4ced-a510-a0fdcbffd976" ], + "x-ms-unique-id": [ "290" ], + "x-ms-client-request-id": [ "deb3fcea-41a7-441b-9e83-6b366e613e1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4982,41 +5148,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2b05aa7-ba12-48d4-a895-b71534d0a7a2" ], + "x-ms-request-id": [ "f525cc4b-bf70-4418-b33d-c291f5e4def7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07931bae-1353-4bb2-b4f7-b11d1690755a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c4c53a3-3ff3-4d77-8032-cafe0e4c79d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5fa0c02e-043f-46af-9c8f-f6fe1e7e95ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055144Z:5fa0c02e-043f-46af-9c8f-f6fe1e7e95ce" ], + "x-ms-correlation-request-id": [ "148a2321-af9b-42b0-8732-edc0c9cf0bdf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081715Z:148a2321-af9b-42b0-8732-edc0c9cf0bdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E9765510EBDA4AA4A70D17B612E0A9D3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6B9B2E615034114859A4DFA11512751 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29158,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30513,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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 +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "252" ], - "x-ms-client-request-id": [ "fff726c7-8fe1-48f9-bf90-7ad855359e4e" ], + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "5950c1c1-735e-4ead-9b20-ca7956db1fed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5028,40 +5194,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e70cdccf-ea81-47d5-a4d6-22cb5540f7bd" ], + "x-ms-request-id": [ "21396a80-114e-493e-8676-ced856bc07b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ef08533-3910-459d-8df9-672858e6e909" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c48d238a-2d52-454a-9516-87024b69d457" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2f012a76-6c0b-4e8b-9173-c31d32075208" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:2f012a76-6c0b-4e8b-9173-c31d32075208" ], + "x-ms-correlation-request-id": [ "e447ff64-eb99-4b59-85a6-1c917be65fcc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081715Z:e447ff64-eb99-4b59-85a6-1c917be65fcc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57B972DADAA84B8DB6C78EE38B179283 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:44Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCC5C33DA9B24DDEA09B5AB02FA3C151 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+16": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "1f6d5122-2992-4347-9d38-0a753e8ce95c" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "1c8d1524-d41a-4e64-96ff-558c08ebe7c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5072,42 +5238,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0B822F240\"" ], + "ETag": [ "\"1DC4FBEDA3306F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "508f4c32-e0f8-4677-8e98-66f4966c2cf8" ], + "x-ms-request-id": [ "e110a325-1f48-4ec7-93b5-452595470da7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7e32e738-babb-4632-9087-db1cc3927cae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:7e32e738-babb-4632-9087-db1cc3927cae" ], + "x-ms-correlation-request-id": [ "5f0fa88d-8550-4ab1-a525-0d2633241b04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081716Z:5f0fa88d-8550-4ab1-a525-0d2633241b04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A85EEE1AD88549D9843EFA5167E79669 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66A6B121060841B5939C2F38D962A5D6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8571" ], + "Content-Length": [ "8680" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:51:12.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"8280eb6e-5057-422b-b2ad-9652f3173efc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:16:43.743\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"85096428-a1a6-463d-93da-7f45508cc750\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+17": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "7f11ccc7-0ddc-442e-852c-3a8e32f3bfdb" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "c21a4256-afe6-45dd-92a0-fda5d1368e3b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5119,40 +5285,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c373e33-545a-43a4-a088-6344921a5d52" ], + "x-ms-request-id": [ "cbc3f98d-f944-474a-94ab-f2efa4599c06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9603bd24-a71f-4dc7-b1d0-ef5783c4cacb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8056cd6-8a46-4a96-8437-dc241aac58af" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ec845fc8-4f36-4190-a1cd-8317ac21dd7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:ec845fc8-4f36-4190-a1cd-8317ac21dd7c" ], + "x-ms-correlation-request-id": [ "b40a844b-f3bf-4a64-9091-aa325d22e674" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081716Z:b40a844b-f3bf-4a64-9091-aa325d22e674" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5C6EAD2B66F4AD7864142176F5A8BA5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6B2AA3A45C0411C9B0E136618EC0DE9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1240" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\"MyAppSetting1\":\"98765\",\"MyAppSetting2\":\"FooBar\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "4ac3ab56-b7a5-45b2-ab04-45c145731c57" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "45feb4fd-fe85-4f82-ab82-90df10bc0291" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5164,41 +5330,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acd2a408-7ce2-43e9-950f-2ba47d74f231" ], + "x-ms-request-id": [ "a3128d8c-406a-45b9-9b3d-670ac34ac42a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c864268-e788-4338-ad0f-764a8eea27e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3840a95-fada-433d-a1af-a2c3c371359d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07b2cc37-72a3-4c19-b5bb-071fca5e3162" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055145Z:07b2cc37-72a3-4c19-b5bb-071fca5e3162" ], + "x-ms-correlation-request-id": [ "a5dcbf5d-c990-4936-b48b-7e3942678d1f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081716Z:a5dcbf5d-c990-4936-b48b-7e3942678d1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A44FAC305D1047EC9DCA6AC37813D5A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F291AC18D6845B1BCFC1F577A8B74E0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29158,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30513,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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 +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "6b0648cc-4a06-4489-84a5-ac3d8593a6f9" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "3f854a55-58d1-48f7-90ae-5ae8124d2742" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5209,20 +5375,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0B822F240\"" ], + "ETag": [ "\"1DC4FBEDA3306F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "677b12d9-bc1a-447e-82e8-ccf8e3543839" ], + "x-ms-request-id": [ "e18706c9-54f9-4995-926c-e7f63f7bccef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcbe4000-a004-4fe3-927c-b3093921b7e1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e21b0d59-e96f-4a0b-9eab-4ca5e2cc0147" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "78c47124-916e-4dae-8389-7c30ad7b1e7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055156Z:78c47124-916e-4dae-8389-7c30ad7b1e7c" ], + "x-ms-correlation-request-id": [ "57db4e86-5525-4029-90c8-bbcdd193efd9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081725Z:57db4e86-5525-4029-90c8-bbcdd193efd9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2684295E219A457B8E44E6CBB8741F15 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5676EF1D8E44468FA872F9A7B3F461CC Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,7 +5402,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-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5251,18 +5417,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c85d4e0d-8a64-4f0d-8dac-09e28172ecf8" ], + "x-ms-request-id": [ "16ff7989-b732-444a-99e0-59e9a60273dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18e61c0c-6539-48ef-8147-53e99f34f5bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8978c3b3-cd50-4d9c-954d-5de9a6003ed0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c602c1f0-fadf-4ee9-b115-51027928b26e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055157Z:c602c1f0-fadf-4ee9-b115-51027928b26e" ], + "x-ms-correlation-request-id": [ "ad4f61ea-07be-42b6-8c3c-08a89350d898" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081725Z:ad4f61ea-07be-42b6-8c3c-08a89350d898" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D6F8957D0F24BA1B474C847F03DC108 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:56Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BEC8582DDAAC4CD2A1653475D8E08B9E Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5280,12 +5446,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "70a4df29-efdb-4437-9325-f6291948368b" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "354b4af9-131a-47f1-b98f-592bd221900a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5296,83 +5462,86 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b1cc9fdc-f870-467d-a0d6-fd0f6bc12e4c" ], + "x-ms-original-request-ids": [ "fbf6e400-6eac-4394-b5b3-f124c78f2cbd" ], "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": [ "f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], - "x-ms-correlation-request-id": [ "f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055157Z:f0b15c50-e67a-479a-a3ab-d52b2b45eaf9" ], + "x-ms-request-id": [ "9b802944-04ec-4862-b8ea-998ef442fa58" ], + "x-ms-correlation-request-id": [ "9b802944-04ec-4862-b8ea-998ef442fa58" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081725Z:9b802944-04ec-4862-b8ea-998ef442fa58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53838CF85AC7403083EF0C6754C58AF2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C8B4D8AB794410EAF48F83CEDF88F3C Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "6651" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "491874e9-e729-41ef-8a13-9539216405b9" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "4f0d344a-f1b1-4db1-a999-247c5141f863" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "fa3ef9cc-926a-48db-936d-c6944d268d3e" ], - "x-ms-correlation-request-id": [ "fa3ef9cc-926a-48db-936d-c6944d268d3e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055158Z:fa3ef9cc-926a-48db-936d-c6944d268d3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "059b9d45-4713-4d75-8767-2600dd8f1815" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c1d8c7de-e0fd-43fc-a528-e5e2b46f5877" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081726Z:c1d8c7de-e0fd-43fc-a528-e5e2b46f5877" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12012B2ACA9349A496AB94B0DF554BEF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FAFB4B249BEC4819B3D87D0C91F1F65A Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "262" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/CentralUSLinuxDynamicPlan\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "f03949f3-cda1-4eee-b851-7414b8e7f97c" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "4e1f1f12-d2c8-445f-a450-4742e42db23b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5384,40 +5553,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58b4e7c0-b571-477f-b1db-8051f23b1ad1" ], + "x-ms-request-id": [ "8abbb158-5e29-40dc-b6d4-c8f41f2c3273" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bf45909f-dc28-4806-b04b-195d1536910b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:bf45909f-dc28-4806-b04b-195d1536910b" ], + "x-ms-correlation-request-id": [ "f4b16ffc-84c4-4fe5-95b3-1bc30678b198" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081726Z:f4b16ffc-84c4-4fe5-95b3-1bc30678b198" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91EEEDC35AF148BA8A4678924981D0C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7FB0C2DCAF14A7E9D9BED7618D1047D Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "e7cabb2c-837f-47d2-b8c2-e236918487b5" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "5eb02f78-bc11-4f38-b6d7-f6a8e05b634b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5429,40 +5598,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c741be6-168f-4d42-a654-774bf36e4634" ], + "x-ms-request-id": [ "b17c9a53-ce24-437f-94d7-5b415209e081" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fecbee0b-ce8f-4d84-863b-9e5c5d8ee2c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:fecbee0b-ce8f-4d84-863b-9e5c5d8ee2c7" ], + "x-ms-correlation-request-id": [ "ab8dce81-2def-4f73-9977-75e87c2aa5d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081726Z:ab8dce81-2def-4f73-9977-75e87c2aa5d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F8B3EA1A86E40ED9475B0290F66F079 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 233553098EE349C4A5F470F853F8DFB1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "262" ], - "x-ms-client-request-id": [ "4f2b67d5-31f6-4f69-b54b-a018d50ebb3d" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "5d9f2dca-6aef-49f5-b961-4820da090986" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5474,24 +5643,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8bb00962-1817-40b7-9dd5-7fb086202ac3" ], + "x-ms-request-id": [ "7d697052-fbe1-4017-8624-f9fd36b130b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7678e0c2-f25b-4861-8177-166138a45b59" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:7678e0c2-f25b-4861-8177-166138a45b59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e379179f-c0c1-4ea5-82aa-87aebba3ed87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081726Z:e379179f-c0c1-4ea5-82aa-87aebba3ed87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD3470FCCADB4228A933BD1F40686993 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A150E03248C64D519738B899286FD52A Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -5502,12 +5671,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "263" ], - "x-ms-client-request-id": [ "58281abd-3618-4634-a247-642ae316ba5e" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "db940650-93e6-4054-8e96-b5fe6af548f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5518,40 +5687,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e5647cc7-a83b-4603-a21f-5da32a29ea30" ], + "x-ms-original-request-ids": [ "453fcf14-d29c-4d72-b8bb-6a9932fd0baa" ], "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": [ "37812caa-7696-4e48-a5fe-ba31de67d2d1" ], - "x-ms-correlation-request-id": [ "37812caa-7696-4e48-a5fe-ba31de67d2d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055158Z:37812caa-7696-4e48-a5fe-ba31de67d2d1" ], + "x-ms-request-id": [ "13d5cd37-2bd4-4b9c-81c5-a1dd68f48568" ], + "x-ms-correlation-request-id": [ "13d5cd37-2bd4-4b9c-81c5-a1dd68f48568" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081727Z:13d5cd37-2bd4-4b9c-81c5-a1dd68f48568" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9B4651D121344D6951DE82274F4F1D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51FD32D694B94993A881C032FB4653C5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "b0a0d2ef-b7ae-47cb-98de-6b334cde1d4f" ], + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "061e9282-e5ee-42cd-95ff-bfe40608f6d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5562,30 +5731,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ad19b8cc-42ff-438c-ade6-a8db479f2606" ], + "x-ms-request-id": [ "1d5173c5-c08f-4a53-afff-ba9644d28450" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d53bebbd-d001-4889-b707-72a81e9bd862" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0a243717-ecd7-42f4-91f5-895a81e5f9a1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "368b6345-4ccf-418f-bb03-c22d197f9db6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055159Z:368b6345-4ccf-418f-bb03-c22d197f9db6" ], + "x-ms-correlation-request-id": [ "129c104e-530d-4990-a27d-18df20b20be1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081727Z:129c104e-530d-4990-a27d-18df20b20be1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B300484E6F64D59BC6D38EABEF63113 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 141967C2BDFE487186B4A6636040C01A Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01+9": { + "New-AzFunctionApp+[NoContext]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?api-version=2015-05-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?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": { @@ -5605,22 +5774,68 @@ "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/f7e67d4c-47e2-4d3b-824d-e07ffe880584" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af37cae8-314e-4917-ba22-acfd8b2c234e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "b95bbc3b-4675-46f3-8d93-453cfaea5946" ], - "x-ms-correlation-request-id": [ "b95bbc3b-4675-46f3-8d93-453cfaea5946" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055200Z:b95bbc3b-4675-46f3-8d93-453cfaea5946" ], + "x-ms-request-id": [ "34e1918a-108b-4342-b0e5-e7fc94fa7407" ], + "x-ms-correlation-request-id": [ "34e1918a-108b-4342-b0e5-e7fc94fa7407" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081729Z:34e1918a-108b-4342-b0e5-e7fc94fa7407" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9696635E63C148CA811D422F1A43C8D8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:51:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90F7374559D344A893212E1E42209C88 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"69000ff0-0000-0300-0000-68e74d7f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\r\n \"ConnectionString\": \"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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\": \"\\\"d303306e-0000-0300-0000-690dab170000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4\",\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"AppId\": \"8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"9a7a1d55-f3f8-403f-82a7-3df5d34bfba8\",\r\n \"ConnectionString\": \"InstrumentationKey=9a7a1d55-f3f8-403f-82a7-3df5d34bfba8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a\",\r\n \"Name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"CreationDate\": \"2025-11-07T08:14:25.9596242+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-hup7w2scx4_8320044e-23e4-4e8b-b2b0-eb7f1d2bc87a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-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]+Creating a function app with \u0027UserAssigned\u0027 managed identity should throw if IdentityID is not provided +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?api-version=2015-05-01+10": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-PowerShellTest-hup7w2scx4?api-version=2015-05-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "e51a7500-3e60-4de7-a213-788b9fd7b02f" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzAppInsights" ], + "FullCommandName": [ "Remove-AzAppInsights_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "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/17e2f386-ec7b-421e-a4a3-dd0d628321d6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "e26e3705-b52d-4c3c-951e-f4166897c5c0" ], + "x-ms-correlation-request-id": [ "e26e3705-b52d-4c3c-951e-f4166897c5c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081732Z:e26e3705-b52d-4c3c-951e-f4166897c5c0" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F6269685927D450DB25A3412EF955859 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:29Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:32 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, "isContentBase64": false } }, @@ -5628,7 +5843,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-8ae9thv0pn\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-yvmb5achgj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5643,18 +5858,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4bd2f1be-1995-4fba-9770-1cdc64bb7382" ], + "x-ms-request-id": [ "7f2adc2a-778b-4b0d-8e5c-995b930fb60d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acd2b2ab-62ef-4154-aef7-ac5ae69a9ca2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd25d12b-7dc9-4946-8343-7f7bfea8d510" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cf4c0a5e-575a-442c-b36e-0883e74257e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055200Z:cf4c0a5e-575a-442c-b36e-0883e74257e6" ], + "x-ms-correlation-request-id": [ "a1dc2358-dcd8-4220-b221-4986a3086d37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081733Z:a1dc2358-dcd8-4220-b221-4986a3086d37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F85E641D23C74CA08E9D7B937264BD55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:51:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FDA22447B044DE0A5BC3FE2B7183F31 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:32Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5672,12 +5887,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "4fd883ff-dbe3-4305-a59b-566ad2120d21" ], + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "946a2cca-7c80-4458-b15a-12d5b2f36a79" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5689,25 +5904,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88e3968f-fffd-4f77-9ba3-c80669444707" ], + "x-ms-request-id": [ "f354cc5f-d975-4daa-aecb-1a4e6264c340" ], "X-AspNet-Version": [ "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/b6058451-1ec7-4cc6-87cc-b8d86b4e9f2e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/216c6fdb-2057-4421-b84b-6c6d8f99962e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41a5b681-ce4f-479a-990f-f7508c24e56f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:41a5b681-ce4f-479a-990f-f7508c24e56f" ], + "x-ms-correlation-request-id": [ "4b95876b-b60d-47f6-8b8f-79c6d244f506" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081733Z:4b95876b-b60d-47f6-8b8f-79c6d244f506" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 23063AE33EED4B5AB1B58268D53796BD Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E80B61A1D8344B1961837754D6031F5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37141" ], + "Content-Length": [ "37704" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -5718,12 +5933,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "22f638ee-4ce6-4cce-8822-177e2e66b01c" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "fe6b3416-149d-4c2e-8d12-c10b9f365a99" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5734,40 +5949,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a9014e0b-8f68-4266-b080-40a661439141" ], + "x-ms-original-request-ids": [ "529ef579-8159-4630-8adf-abf9a5aefb8c" ], "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": [ "3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], - "x-ms-correlation-request-id": [ "3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:3b10a95b-6fb5-4f56-9abf-c24aef17ea49" ], + "x-ms-request-id": [ "29ccbfcf-5856-43a4-9b15-9eed1d0dd9cb" ], + "x-ms-correlation-request-id": [ "29ccbfcf-5856-43a4-9b15-9eed1d0dd9cb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081733Z:29ccbfcf-5856-43a4-9b15-9eed1d0dd9cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B843A9EA9AA42268D8683FE1056BA14 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4C61BDC10764F499623EA5EA13B07B4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "1b76ae96-55b7-420e-b72e-c968c11a2fe6" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "869fa790-dd30-4964-9600-0001169a1145" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5778,30 +5993,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "837d69ce-7729-4629-b4e7-30093dfe581f" ], + "x-ms-request-id": [ "fe3cfe29-0c6c-4a76-a71a-2c4fbf5bbb85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f60cf97-2c21-4813-b345-4bf82d104a25" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ce6e4b98-124e-4d8e-9fd2-8d62dc4ece9c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc071dfd-99a7-4b49-bfe4-f6a15e816c1b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055201Z:bc071dfd-99a7-4b49-bfe4-f6a15e816c1b" ], + "x-ms-correlation-request-id": [ "cf642ff5-ee8d-423d-ade5-6b433179007e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081733Z:cf642ff5-ee8d-423d-ade5-6b433179007e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B8A2A685DC741C6BCD6605F034B2914 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:52:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0200FE479BE48B3801E0AF11E1708B4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"wnxFFwQSGeJ1dLtZonlXRHUMG2fvkLta3Kafx++scJ0kOKyogGnmJjuIhsT+R8mqSeSOpbUd4lAY+AStMNKVLg==\",\"permissions\":\"FULL\"}]}", "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-pxiydk/providers/Microsoft.Insights/components/Functions-DotNet-8ae9thv0pn?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-1us9gb/providers/Microsoft.Insights/components/Functions-DotNet-yvmb5achgj?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-pxiydk/providers/Microsoft.Insights/components/Functions-DotNet-8ae9thv0pn?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Insights/components/Functions-DotNet-yvmb5achgj?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": { @@ -5821,36 +6036,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/cbcebc61-4caa-4e91-8395-fd3d4815324f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], - "x-ms-correlation-request-id": [ "a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055223Z:a47b7ff1-5aa7-485b-8e72-3775edd8cc4f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1eb66016-4982-428d-842c-7333b4f1b665" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "617dfce8-8a3c-4521-9ee9-62703745f7e6" ], + "x-ms-correlation-request-id": [ "617dfce8-8a3c-4521-9ee9-62703745f7e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081738Z:617dfce8-8a3c-4521-9ee9-62703745f7e6" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C499B4BFA0224EBE85A16C5FCA3822C6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD943E38E32341228C66B761CCFB093C Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1638" ], + "Content-Length": [ "1637" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6900f7f0-0000-0300-0000-68e74d970000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-DotNet-8ae9thv0pn\",\r\n \"name\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"AppId\": \"882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\",\r\n \"ConnectionString\": \"InstrumentationKey=f3ec4fb2-d80b-4510-aa34-7b544e9d4361;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\r\n \"Name\": \"Functions-DotNet-8ae9thv0pn\",\r\n \"CreationDate\": \"2025-10-09T05:52:02.2302285+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-8ae9thv0pn_882b5dc6-655a-4f8b-9cff-8bb93f098cb9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8ae9thv0pn-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\": \"\\\"d303f971-0000-0300-0000-690dab220000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-DotNet-yvmb5achgj\",\r\n \"name\": \"Functions-DotNet-yvmb5achgj\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-yvmb5achgj\",\r\n \"AppId\": \"16a76f21-1ee5-4481-8eae-06c31e91645f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e1039b65-53b2-46c5-9809-3ed6ac49794a\",\r\n \"ConnectionString\": \"InstrumentationKey=e1039b65-53b2-46c5-9809-3ed6ac49794a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=16a76f21-1ee5-4481-8eae-06c31e91645f\",\r\n \"Name\": \"Functions-DotNet-yvmb5achgj\",\r\n \"CreationDate\": \"2025-11-07T08:17:34.365051+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-yvmb5achgj_16a76f21-1ee5-4481-8eae-06c31e91645f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-yvmb5achgj-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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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|6.0\",\r\n \"appSettings\": [\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-8ae9thv0pn\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"\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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?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_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-yvmb5achgj\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e1039b65-53b2-46c5-9809-3ed6ac49794a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=16a76f21-1ee5-4481-8eae-06c31e91645f\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1689" ] + "Content-Length": [ "1714" ] } }, "Response": { @@ -5858,43 +6073,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0E36A5A60\"" ], + "ETag": [ "\"1DC4FBEFC1DD66B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b08a2248-317b-4f1a-a75c-24bf21e58ba2" ], + "x-ms-request-id": [ "ecf3da31-a30d-463c-89bc-2b7236e866ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/296e4942-5155-4f2d-b8be-9b151dce87b9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8ad0555-127c-4659-9605-4deb50731ac0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "40fa2585-cdf7-44a0-8df2-077808d85f85" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055244Z:40fa2585-cdf7-44a0-8df2-077808d85f85" ], + "x-ms-correlation-request-id": [ "07f15a7d-8740-401c-b900-3dee35f67311" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081759Z:07f15a7d-8740-401c-b900-3dee35f67311" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC6F99D3943A4280B865141C87FD3424 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:52:23Z" ], - "Date": [ "Thu, 09 Oct 2025 05:52:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8DB02E0ED4624C28BEFCC6CEF6339CE9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:17:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:17:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8346" ], + "Content-Length": [ "8757" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:24.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-yvmb5achgj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-DotNet-yvmb5achgj\",\"repositorySiteName\":\"Functions-DotNet-yvmb5achgj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"functions-dotnet-yvmb5achgj.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-yvmb5achgj.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-yvmb5achgj.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:17:39.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\":\"Functions-DotNet-yvmb5achgj\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-DotNet-yvmb5achgj\\\\$Functions-DotNet-yvmb5achgj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-dotnet-yvmb5achgj.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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "17d84e7d-b5dc-4a9c-987f-bb160ca322a0" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "4494fd34-b8d7-4e5f-b5ae-94faa256aed4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -5904,42 +6119,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0EEAEC5D5\"" ], + "ETag": [ "\"1DC4FBF074A5A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94c9c2fb-a2b0-4da2-94e9-753108afe0b8" ], + "x-ms-request-id": [ "0a7bbf62-1f32-4162-9826-26ba5f1a5b79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a95c67c-5e4f-478b-b019-b232d8319f92" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:3a95c67c-5e4f-478b-b019-b232d8319f92" ], + "x-ms-correlation-request-id": [ "79b5978d-5d78-4020-8b3c-f65718142eb8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081830Z:79b5978d-5d78-4020-8b3c-f65718142eb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DBB9728A9114E18AA3CF3FFDBFD55E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B652E1D0F7D748A6AD8DBBF724C23464 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8224" ], + "Content-Length": [ "8748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-yvmb5achgj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-DotNet-yvmb5achgj\",\"repositorySiteName\":\"Functions-DotNet-yvmb5achgj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"functions-dotnet-yvmb5achgj.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-yvmb5achgj.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-yvmb5achgj.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:17:59.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\":\"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-yvmb5achgj\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-DotNet-yvmb5achgj\\\\$Functions-DotNet-yvmb5achgj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "273" ], - "x-ms-client-request-id": [ "b2c46481-ce1d-48e9-9f0b-f3b0127cc4bc" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "c77b8031-3d12-45b3-b8b5-be8d9b3b17ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5950,42 +6165,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0EEAEC5D5\"" ], + "ETag": [ "\"1DC4FBF074A5A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4656379c-e8c3-4537-8ad5-b6719594f90f" ], + "x-ms-request-id": [ "66abd3f8-3125-4826-84f0-cd1e42aa4641" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cf8f08ee-32f2-4a5c-b0d4-2c9abbb333db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:cf8f08ee-32f2-4a5c-b0d4-2c9abbb333db" ], + "x-ms-correlation-request-id": [ "9d3d3e62-fb31-458b-989b-4d0db63c7790" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081830Z:9d3d3e62-fb31-458b-989b-4d0db63c7790" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 083C3EC041474F9AB232C8B8997C039E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65EA0FF770094A1BB7EA9EFADBE58576 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8224" ], + "Content-Length": [ "8748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-yvmb5achgj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-DotNet-yvmb5achgj\",\"repositorySiteName\":\"Functions-DotNet-yvmb5achgj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"functions-dotnet-yvmb5achgj.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-yvmb5achgj.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-yvmb5achgj.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:17:59.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\":\"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-yvmb5achgj\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-DotNet-yvmb5achgj\\\\$Functions-DotNet-yvmb5achgj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "70c3e0da-21dc-4bb7-997b-1c54b5eab80f" ], + "x-ms-unique-id": [ "314" ], + "x-ms-client-request-id": [ "b4897148-64d0-4fbc-9aa0-8894451d23c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5997,40 +6212,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ab09db6-b606-4a9b-8eb9-b41461aedae3" ], + "x-ms-request-id": [ "2b8dc3c1-3546-402b-9268-e7dfc209064d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86675379-4cda-4f2c-a131-fd7aa594fb92" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37faff79-4535-4e85-b49d-056f21fe6950" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "69cc95a8-38d2-44f7-96c0-6aa66343f2ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055315Z:69cc95a8-38d2-44f7-96c0-6aa66343f2ab" ], + "x-ms-correlation-request-id": [ "d0dc8695-6323-4ccf-8b0c-716cc93ac25b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081831Z:d0dc8695-6323-4ccf-8b0c-716cc93ac25b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C134D4D390194199B38FA52A3D8A57A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31A0443D3B244FE38F13D360D690670C Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8ae9thv0pn\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-yvmb5achgj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e1039b65-53b2-46c5-9809-3ed6ac49794a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=16a76f21-1ee5-4481-8eae-06c31e91645f\"}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "dd6e9bb7-a587-4dcf-9375-1396be4b7cdd" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "e934af50-b780-4e95-885a-953dae431794" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6042,41 +6257,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e583eed-0a19-4d02-9c8c-ccd5b22c3330" ], + "x-ms-request-id": [ "e4613478-6726-4ca2-98ce-0931f0b01f1f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/529514b0-8066-4767-8749-ca0ebd660f80" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/01c8144e-5811-453a-b436-554ab41a9ba6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bbc8420e-4e5b-4cf6-a530-5fdd5798d8a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:bbc8420e-4e5b-4cf6-a530-5fdd5798d8a6" ], + "x-ms-correlation-request-id": [ "fedb5462-c742-44cb-b896-744a108bb3f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081832Z:fedb5462-c742-44cb-b896-744a108bb3f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8796F3D770E419C927F88E628B57675 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C2CE4FCC82F4A918D25B1D59879087C Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/web\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites/config\",\"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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "68385374-30fe-4abc-98f9-65f30ca55b2d" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "58c79268-6002-48ea-a54e-b1fce290d459" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6087,42 +6302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0EEAEC5D5\"" ], + "ETag": [ "\"1DC4FBF074A5A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9187706-65a0-4af0-93d2-84ce1b2a4130" ], + "x-ms-request-id": [ "6485c1fe-70c4-48d8-a8ca-4c09986adf65" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a495d977-cb42-419e-898c-b07da6c05743" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:a495d977-cb42-419e-898c-b07da6c05743" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "071eec0f-c14d-47a1-a2a9-05dbd0f60fa3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081832Z:071eec0f-c14d-47a1-a2a9-05dbd0f60fa3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C91988C6927403F861134179E2D7579 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C329E382B8DF4BFE9C55D459B643E3A1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:32Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8224" ], + "Content-Length": [ "8748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8ae9thv0pn\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-DotNet-8ae9thv0pn\",\"repositorySiteName\":\"Functions-DotNet-8ae9thv0pn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"functions-dotnet-8ae9thv0pn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|6.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8ae9thv0pn.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-8ae9thv0pn.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:52:44.2533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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|6.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-8ae9thv0pn\",\"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-8ae9thv0pn\\\\$Functions-DotNet-8ae9thv0pn\",\"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-pxiydk\",\"defaultHostName\":\"functions-dotnet-8ae9thv0pn.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-yvmb5achgj\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-DotNet-yvmb5achgj\",\"repositorySiteName\":\"Functions-DotNet-yvmb5achgj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"functions-dotnet-yvmb5achgj.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-yvmb5achgj.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-yvmb5achgj.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:17:59.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\":\"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-yvmb5achgj\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-DotNet-yvmb5achgj\\\\$Functions-DotNet-yvmb5achgj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-dotnet-yvmb5achgj.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "3354de3a-705d-4c81-a04a-3dd47abb7596" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "1bc750b7-1c26-4b9f-8cd6-70211425177d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6134,40 +6349,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd5ad667-b3af-4769-9723-9fdcb14bd8dd" ], + "x-ms-request-id": [ "7dffa778-7557-4d24-893a-0af4f69c5d71" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c666873f-4394-457a-8be1-0e7b58f076ec" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "30887f59-ed7a-45bd-9e6a-094b57f71ed7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055316Z:30887f59-ed7a-45bd-9e6a-094b57f71ed7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6bebb231-c177-4823-bd05-6f8e4e52159d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3e27222f-24cb-42bb-95e6-c6960afc6fd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081832Z:3e27222f-24cb-42bb-95e6-c6960afc6fd0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E40ED715DB64037B5A000182586611D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:16Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28D33F39A6F2405488F0A5E53A733F46 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:32Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8ae9thv0pn\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-yvmb5achgj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e1039b65-53b2-46c5-9809-3ed6ac49794a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=16a76f21-1ee5-4481-8eae-06c31e91645f\"}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/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-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "7282aa5d-f38a-435a-a30e-5c249d6d4f12" ], + "x-ms-unique-id": [ "318" ], + "x-ms-client-request-id": [ "ed13204e-82fb-4cf6-a755-959440ac9a19" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6179,41 +6394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71b66382-4080-4bb9-8ab1-b7951d3411fe" ], + "x-ms-request-id": [ "2a33f280-92a7-48be-827f-3644f347a536" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d579c62c-0e1a-4204-bcba-a46195231363" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11f16be7-a09d-465d-b408-b7a744e21036" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82ff7313-cad4-4b92-b96b-453f35d08515" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055317Z:82ff7313-cad4-4b92-b96b-453f35d08515" ], + "x-ms-correlation-request-id": [ "9172d5bd-0190-486f-a288-06d33a81e91d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081833Z:9172d5bd-0190-486f-a288-06d33a81e91d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5B211B5F07C4C338D2FB9A83BFCEB5F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D599A4D9ECC642C79C99A8389D6E732F Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn/config/web\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"Microsoft.Web/sites/config\",\"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|6.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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj/config/web\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+14": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-DotNet-8ae9thv0pn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-DotNet-yvmb5achgj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "82db110c-f264-4862-befe-05c80cadea54" ], + "x-ms-unique-id": [ "319" ], + "x-ms-client-request-id": [ "f0c2aced-7ddd-4954-ac0d-e9fbb283704d" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6224,20 +6439,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E0EEAEC5D5\"" ], + "ETag": [ "\"1DC4FBF074A5A15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51931dc6-b52b-4cb8-b0a7-24a2bd451ed2" ], + "x-ms-request-id": [ "651c1135-463e-4068-b62c-65c3cf6772b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed41a378-5e48-451d-9864-99e9003e3091" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f13f2bc-79e1-415c-9b84-1f09820e36f9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "3bff98ba-ab71-4ef1-97c9-5dc076e1b596" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055327Z:3bff98ba-ab71-4ef1-97c9-5dc076e1b596" ], + "x-ms-correlation-request-id": [ "f5ccc48e-cdec-46a1-9cc2-3cb90349cb2d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081840Z:f5ccc48e-cdec-46a1-9cc2-3cb90349cb2d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E604BEB81BF4496199846EB6644E0671 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:17Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8636B84CE0C44CEBBFEBE0EB6B35A644 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6251,7 +6466,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-8l0a19iyrf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-hup7w2scx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6266,18 +6481,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8b7aa4f-13d1-48d4-98b1-23c7888c4a09" ], + "x-ms-request-id": [ "4178518e-6edb-42f4-8343-a4be7d213114" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9336b3d6-22c1-4e63-80f5-ce641e039306" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24ce1b24-4a34-43c6-a074-ca00b0542b72" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "24cc2ac8-d202-4df1-bda2-08f36c223a89" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055328Z:24cc2ac8-d202-4df1-bda2-08f36c223a89" ], + "x-ms-correlation-request-id": [ "4c700fb6-cfc7-4307-94e6-5fb918c39a68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081841Z:4c700fb6-cfc7-4307-94e6-5fb918c39a68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47EE45C697924F188774353BAA757073 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:27Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D554307217048118D94CAF302782ED1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6295,12 +6510,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "a9d2a549-d412-427d-b475-3c7f50d7d65a" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "465c3b7f-3fb0-455f-8cb8-244b09a36f09" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6311,41 +6526,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "62d27942-946b-4067-b4bc-305389a0ad1a" ], + "x-ms-original-request-ids": [ "15d7129e-fd31-47ec-845e-aa8cafe9a417" ], "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": [ "fe6d2549-c1db-43a6-927b-fe77b005b875" ], - "x-ms-correlation-request-id": [ "fe6d2549-c1db-43a6-927b-fe77b005b875" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055328Z:fe6d2549-c1db-43a6-927b-fe77b005b875" ], + "x-ms-request-id": [ "426231a9-903b-43a5-853e-82280cf5a5c1" ], + "x-ms-correlation-request-id": [ "426231a9-903b-43a5-853e-82280cf5a5c1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081841Z:426231a9-903b-43a5-853e-82280cf5a5c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91E8FE306F8F4F9B906AB3A4E99A1E67 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:28Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D7E5FA177E14C3B9DB3C6D54C251EF7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8241" ], + "Content-Length": [ "7011" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "1a8b16d6-2f37-4a84-a011-fb28a4487e23" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "b65a98f6-9f5d-4c28-a583-318ef1067d5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6357,40 +6572,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35e1cf2f-e211-48a4-9a9c-c23c7fd5f523" ], + "x-ms-request-id": [ "1ef79dbb-3359-42b5-894b-89a412786e52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74b8101f-868b-4bc1-b771-22d3410abae9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055329Z:74b8101f-868b-4bc1-b771-22d3410abae9" ], + "x-ms-correlation-request-id": [ "dd1fc970-b839-4040-89ef-3430561dfceb" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081842Z:dd1fc970-b839-4040-89ef-3430561dfceb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CEFF86DD87E945D99DD5056438E06181 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:28Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2821C03DDEBF4515A6B70BBD63EF701A Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "696ad74e-454f-43fb-a3b8-e2cc5ae7fbc6" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "161a5b34-081c-48a9-b2a4-abbe5d427871" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6402,82 +6617,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6674cbbd-17ce-488c-ad81-2e14417b6025" ], + "x-ms-request-id": [ "42ea0799-6926-44a9-8658-787b650e1ce7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "545f9d24-b900-482e-8ee5-52ccfffc5b69" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:545f9d24-b900-482e-8ee5-52ccfffc5b69" ], + "x-ms-correlation-request-id": [ "7f436d0f-526b-4295-9f0a-f187ceb067b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081842Z:7f436d0f-526b-4295-9f0a-f187ceb067b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85E782E5C52944ED8257B28070480A75 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E1ACBC0E1E24A40B6CF60ED7DC393EB Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "4c34e72e-8eb2-4201-8153-4035e7a15b75" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 404, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "8a5b886e-29dd-482c-8b86-becb53e99e2c" ], - "x-ms-correlation-request-id": [ "8a5b886e-29dd-482c-8b86-becb53e99e2c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:8a5b886e-29dd-482c-8b86-becb53e99e2c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 654AF21DD34049B887B54B2DA52585B2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "245" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "285" ], - "x-ms-client-request-id": [ "34f02c19-844a-4e65-8aed-e2c6f5155e52" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "9decec8a-7d36-46b2-af49-a4aa51905289" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6489,40 +6662,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8828f98-df70-4948-9a16-4beedd78690f" ], + "x-ms-request-id": [ "d0f1adaa-d7d8-4f81-a456-ca5b74ad3efb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5d161a3b-6993-44d2-adce-034036821ac4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:5d161a3b-6993-44d2-adce-034036821ac4" ], + "x-ms-correlation-request-id": [ "d27b22a8-1fd0-41df-8333-e2491268dd22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081842Z:d27b22a8-1fd0-41df-8333-e2491268dd22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8029FD733BBB4B8CB5ACB478B08870ED Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A948F874CC284559BB4C89B3A3D87109 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:42Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "286" ], - "x-ms-client-request-id": [ "d99d9472-eee2-4ffe-9839-7345954ed65f" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "2cb1d855-1d85-47f7-85fd-4088d035d18a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6534,40 +6707,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "686ef0c6-6b7e-4e6d-8004-d70c858fbdc1" ], + "x-ms-request-id": [ "b31f6216-71d5-4bfd-bca3-1676abb47ae1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e856f1e2-1d87-43f2-8314-8785070290bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055329Z:e856f1e2-1d87-43f2-8314-8785070290bc" ], + "x-ms-correlation-request-id": [ "c03f50fc-d340-4b15-9c35-38bd4897eada" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081843Z:c03f50fc-d340-4b15-9c35-38bd4897eada" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F43A3665E5E342FFB21E7D0F8E0A6B1B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:29Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4968026B25334108B51324B7AFEE2EC1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+7": { "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": [ "287" ], - "x-ms-client-request-id": [ "30a2a278-3d1d-42df-bfc1-901f9dde992d" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "3ac2bbea-6ecb-4662-be04-88b1085c2001" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6578,40 +6751,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "68549883-80a3-411b-974c-d16d8c4dc180" ], + "x-ms-original-request-ids": [ "31a3d4df-f3bb-4bfc-a2f0-29a86d55bae3" ], "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": [ "27192dfd-c031-4e58-8117-94755e16a38a" ], - "x-ms-correlation-request-id": [ "27192dfd-c031-4e58-8117-94755e16a38a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055330Z:27192dfd-c031-4e58-8117-94755e16a38a" ], + "x-ms-request-id": [ "4bb5ece7-d7c9-4b12-85d3-2935287132f5" ], + "x-ms-correlation-request-id": [ "4bb5ece7-d7c9-4b12-85d3-2935287132f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081843Z:4bb5ece7-d7c9-4b12-85d3-2935287132f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6EB965F8E3C47C98DB6C949E81E1001 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C798090A2D834264A2C6EB1BE0DD0D22 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+9": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "23a5b772-cfc2-480d-a3b6-9cec1a8dc0b8" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "a9531c57-9146-421e-ae87-86016fdbcb98" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6622,31 +6795,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c46052af-9c8a-4f20-b058-4799f14f20d8" ], + "x-ms-request-id": [ "28a26b2d-aa75-47ec-9df4-a747547181a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b347a4e6-b9b7-4982-80b9-5e0a29c738f1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ff83c489-84fd-4ae3-ab79-2f5515ba96b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f1e0a778-4d91-4e46-9c30-3975197b5650" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055330Z:f1e0a778-4d91-4e46-9c30-3975197b5650" ], + "x-ms-correlation-request-id": [ "d1a11148-2d2c-4bf9-a1ac-6ed099ecdff1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T081843Z:d1a11148-2d2c-4bf9-a1ac-6ed099ecdff1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 807CD29B38B741FF9B793B456AC61F77 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:53:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2845A84DB6AE4B83A69E892CE104B341 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:18:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+10": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-hup7w2scx4\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6660,43 +6833,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E10BD7EE90\"" ], + "ETag": [ "\"1DC4FBF22E84EF0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c67bed99-0f09-42a5-8a01-ef87c1621f8a" ], + "x-ms-request-id": [ "0f0361ac-5068-47db-aac0-b694892311c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af48fa00-2cfe-49af-a00d-cf16595b903d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12c568a2-d426-43cd-be4d-e5c36cede494" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "bc3e04f1-2a32-47a5-b6d8-078042298c37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055414Z:bc3e04f1-2a32-47a5-b6d8-078042298c37" ], + "x-ms-correlation-request-id": [ "65086e7e-3e98-41c5-abb4-7ceb2f914e2c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081925Z:65086e7e-3e98-41c5-abb4-7ceb2f914e2c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B65228887FC5465095E3E3CA5C3911B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:53:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28789793D4EC405F83FC407EA1EA5F33 Ref B: MWH011020808025 Ref C: 2025-11-07T08:18:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:53:32.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:18:45.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+11": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "2e1c0b47-f07e-4638-96b9-72f2adb81503" ], + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "a9e274d5-1201-4c06-9046-b9aa03ead849" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -6706,42 +6879,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E124468270\"" ], + "ETag": [ "\"1DC4FBF3AA8EF90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34b67080-3551-4df9-8934-b2f9a34e5f1b" ], + "x-ms-request-id": [ "fb6a42ed-ec38-4f79-94cd-2f58a0ec7fad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3affa0f5-ecea-413b-b45d-3857c1452282" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055445Z:3affa0f5-ecea-413b-b45d-3857c1452282" ], + "x-ms-correlation-request-id": [ "fc8d7282-5b57-4fc5-97db-bb161e4175ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081956Z:fc8d7282-5b57-4fc5-97db-bb161e4175ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F8AA2B801C24125B49D9CAF94F90326 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A390B9452514734B34267509270CC09 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:19:25.577\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "291" ], - "x-ms-client-request-id": [ "2182497b-0652-40ae-b576-391196a1f449" ], + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "f37c5168-ba9a-43e7-9ce3-e54cedbacc71" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6752,42 +6925,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E124468270\"" ], + "ETag": [ "\"1DC4FBF3AA8EF90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "160d3930-ddff-47a3-a544-76051dc366ee" ], + "x-ms-request-id": [ "ad399fb8-1ae2-4676-8844-e79e2bfc96a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5ba7c4bd-751e-439a-8bb0-ed01a3bb674b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:5ba7c4bd-751e-439a-8bb0-ed01a3bb674b" ], + "x-ms-correlation-request-id": [ "1f9d2674-dca9-4fd8-95a0-fc3435bf9d0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081957Z:1f9d2674-dca9-4fd8-95a0-fc3435bf9d0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6100363FE0074F7A829C41D9A5B0EC62 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:45Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C0B784DB2A747D8A3704F04BDA6004A Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:19:25.577\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+13": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "79642951-22b7-48cc-9b0f-e7290536580e" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "826fe60a-c1fc-48f9-881b-61424cd0127a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6799,40 +6972,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8409f437-a8da-4090-bde7-bc6fbc7ca505" ], + "x-ms-request-id": [ "5a3cb31b-86b8-4de1-9318-a4b8276b6ea1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8130acfc-19d6-4b7c-aaca-6bae7bc0a296" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15b94b81-33d0-4c47-a389-dfe44964c2af" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1ec97885-b1e1-4033-8373-9e2d5e68ca9d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:1ec97885-b1e1-4033-8373-9e2d5e68ca9d" ], + "x-ms-correlation-request-id": [ "3b1e16a1-0b4a-42f1-9782-03b6d8cefbfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081957Z:3b1e16a1-0b4a-42f1-9782-03b6d8cefbfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00650CD768FD40AD9735C31074EFE84E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 071AC9264DB74DFE89B6A5434D9700B4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01+14": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "09848217-14d3-4b2d-a90c-6374a2985aaa" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "bdbac1ec-b235-41ba-bf31-780c59215f59" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6844,41 +7017,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ad8e730-b354-4918-8572-5acf69a433f4" ], + "x-ms-request-id": [ "53436234-c6bb-4a2a-8e37-7cdd55082b0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/473425db-030c-462d-9ea6-878c6872a42c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b79c606d-6b70-43dd-8934-5de4a8feae38" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3effefe6-1e65-4ae2-8a10-8362e50248bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055446Z:3effefe6-1e65-4ae2-8a10-8362e50248bf" ], + "x-ms-correlation-request-id": [ "b39d694c-f0df-42f7-9267-5a1bee1b23f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081957Z:b39d694c-f0df-42f7-9267-5a1bee1b23f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8AE4229A2374AB693C055984449E6F9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3431D188C23A4FC983A1C211C692709B Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+15": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "a05489b3-313e-43dd-a917-3b2ad9da5a02" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "2e2bdb81-96eb-4e38-9af6-c95196d0b893" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6890,40 +7063,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6edb3b8d-134b-4810-9d3c-bd575815fbc4" ], + "x-ms-request-id": [ "52d61853-51e0-49a4-a1c0-744f4df8c332" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3353f871-6189-4ed4-97be-58ff35edb936" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "98fc7025-80ff-4106-b520-51386dcdf7e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:98fc7025-80ff-4106-b520-51386dcdf7e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff3efd84-df3c-45db-9a0f-3d1dba4fcf25" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "eb53337f-d3a0-4d23-88a1-1407c69f78f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081958Z:eb53337f-d3a0-4d23-88a1-1407c69f78f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06AF08A93138462292A9BBAC729F8252 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:46Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F73BDED5A97D4388B574EC76889200D8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01+16": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "6701c2de-53e5-4cab-b9ad-f1cb9e90d6ab" ], + "x-ms-unique-id": [ "334" ], + "x-ms-client-request-id": [ "00e2085d-e06c-4528-8629-355ab6dc3433" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6934,42 +7107,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E124468270\"" ], + "ETag": [ "\"1DC4FBF3AA8EF90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "787247b9-b1ff-47d3-802c-86a9e7040f79" ], + "x-ms-request-id": [ "bbdf26f7-75c2-4d04-940d-c9ebb139597c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "abaff43d-696e-4385-ba5a-831b473ebf02" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:abaff43d-696e-4385-ba5a-831b473ebf02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a11e779b-8ade-44b8-9d00-225abe544184" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081958Z:a11e779b-8ade-44b8-9d00-225abe544184" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0353DFAAD82445893F81D334B9A2949 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBC10449E8704C64AFA02343245A9BB6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"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-8l0a19iyrf.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-8l0a19iyrf.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:54:14.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-8l0a19iyrf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShellTest-hup7w2scx4\",\"repositorySiteName\":\"Functions-PowerShellTest-hup7w2scx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"functions-powershelltest-hup7w2scx4.scm.azurewebsites.net\"],\"siteProperties\":{\"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-hup7w2scx4.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-hup7w2scx4.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:19:25.577\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hup7w2scx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShellTest-hup7w2scx4\\\\$Functions-PowerShellTest-hup7w2scx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershelltest-hup7w2scx4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01+17": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "f9c0ee37-7dd8-4547-8323-58b10b4081aa" ], + "x-ms-unique-id": [ "335" ], + "x-ms-client-request-id": [ "ee1a849c-74a0-460d-8891-bcf41bfbbe20" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6981,40 +7154,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a05ec33e-b661-4b02-8fcb-3675b6c5a762" ], + "x-ms-request-id": [ "3a6405ac-4322-4d60-8867-8e5891a748e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8948abc9-6756-4fac-9c7e-8560583f84f6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e722cdfe-159b-43c4-866e-38bacdb646da" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:e722cdfe-159b-43c4-866e-38bacdb646da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1ce9f045-41d6-4b25-ae24-1325d313159f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "ba92bec5-08e4-405b-8414-b553c9ebbc5b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081958Z:ba92bec5-08e4-405b-8414-b553c9ebbc5b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0099B39380FE4E8D9F77B628B7A8A3E0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB2E6326712743A683BDB4517E21458C Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-hup7w2scx4\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "9eae290d-3709-4e44-b8e9-4766d95297c2" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "a950ba15-9865-413d-a7d3-703aae211b98" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7026,41 +7199,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a78ac68-9046-4519-b406-b42f544ebe5c" ], + "x-ms-request-id": [ "226b9a72-876d-480a-8fe3-d743139d6e7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ec754d0-3099-46c0-92aa-fe20f6db6626" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "e27cebb2-9481-4378-9afe-4c818b746716" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055447Z:e27cebb2-9481-4378-9afe-4c818b746716" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1455d18-5f78-4d60-b63c-89c10cdb5aaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "638f9253-6757-4852-8365-6858ea7f2358" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T081959Z:638f9253-6757-4852-8365-6858ea7f2358" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCB124A6BDEC45158890C4F7A86CD14E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:47Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CAF5F7ACEA94FE6B973037614A97D77 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:19:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4/config/web\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"Microsoft.Web/sites/config\",\"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.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?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-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShellTest-hup7w2scx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "b97a8f91-8dd8-48d4-97a2-e9a024045565" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "edbe665f-def9-44f0-86d6-e86fcbd8afcf" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7071,20 +7244,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E124468270\"" ], + "ETag": [ "\"1DC4FBF3AA8EF90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5681caa7-1d28-44d5-88c7-6efba057f8bd" ], + "x-ms-request-id": [ "41cc40d6-9555-4f90-a44f-9a1335d5f346" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40ce361d-8ebc-44dd-a981-d657995df7b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4a3e7920-8066-4ae2-8051-153aa263cd4f" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "13f4b2c1-9378-4275-8219-33e0473177ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055456Z:13f4b2c1-9378-4275-8219-33e0473177ac" ], + "x-ms-correlation-request-id": [ "370d500f-74a3-4c5b-a1d8-419e66b00719" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082009Z:370d500f-74a3-4c5b-a1d8-419e66b00719" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C12F8E773682448BBA26A181BC73790B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:48Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A529BC233851480DBAC3F2C85F49A486 Ref B: MWH011020808025 Ref C: 2025-11-07T08:19:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7098,7 +7271,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-n63k2zl8s1\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-ge0rjbhmz4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7113,18 +7286,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "973175af-ac61-431c-ae2e-884ac915f078" ], + "x-ms-request-id": [ "85c44933-2a92-4466-abb3-56459fc87f60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d202f957-c63c-4701-8a65-95a0b460d8b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f947ed76-857a-4b0b-bbdc-00e15c95bf15" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d916e53d-f0e6-457b-86e0-20a9688e1711" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055456Z:d916e53d-f0e6-457b-86e0-20a9688e1711" ], + "x-ms-correlation-request-id": [ "f09eb008-9282-409c-9cb5-99d86a52a5fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082010Z:f09eb008-9282-409c-9cb5-99d86a52a5fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79EF2E923CD148F7A8771F1523B1B34A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:56Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA23EB7C342946B0974A081DD9EB7126 Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7142,12 +7315,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "27158e65-0d40-4587-a4ff-de02372d909e" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "9162b31a-2f55-41db-8aee-6fea9c7eecd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7159,25 +7332,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2d5f814-9c50-4a64-9d74-f212516a1578" ], + "x-ms-request-id": [ "60c16248-7a48-459e-b84e-308b475bbe8e" ], "X-AspNet-Version": [ "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/6d54facb-1e84-4f85-ba5f-1735b497d3c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/435785e6-290b-42b2-bccb-5cc602d126f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2b18c17c-d111-49b0-b223-809ccd769476" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055456Z:2b18c17c-d111-49b0-b223-809ccd769476" ], + "x-ms-correlation-request-id": [ "261f114c-0703-41eb-9958-609d50429950" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082010Z:261f114c-0703-41eb-9958-609d50429950" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FE29046D3E042159B251D8CBD899B36 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:56Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F916C64870DB4C20A0BEF37384C0CEC0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37141" ], + "Content-Length": [ "37704" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "isContentBase64": false } }, @@ -7188,12 +7361,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "301" ], - "x-ms-client-request-id": [ "2f8e4a70-b58a-4142-bf3a-fd4e7d99701b" ], + "x-ms-unique-id": [ "340" ], + "x-ms-client-request-id": [ "c2584b12-16ce-4de7-944f-b68796419f29" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7204,40 +7377,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "072da312-2398-4409-9140-f469d71f3745" ], + "x-ms-original-request-ids": [ "6aca595c-e81e-443a-b3f6-8a9243f67d08" ], "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": [ "eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], - "x-ms-correlation-request-id": [ "eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055457Z:eafcbd0a-7fd5-42a1-8de7-4e8a90f0724b" ], + "x-ms-request-id": [ "1071433e-0ed2-493e-bf9c-3383b36ec9f5" ], + "x-ms-correlation-request-id": [ "1071433e-0ed2-493e-bf9c-3383b36ec9f5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082010Z:1071433e-0ed2-493e-bf9c-3383b36ec9f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10A1C2741EF848EB8FCE021F22A48EA9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAF2AFA1EC3042F6B70522AAF88597C6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "141c3ae2-5581-4689-99f4-79ce417b685f" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "2ed6ddb2-880f-4412-9b60-91c067476eba" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7248,30 +7421,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4a537779-7910-4d19-9e25-61f35a4ccb97" ], + "x-ms-request-id": [ "6b3c829d-64cb-40ff-a97d-fdd5107deb0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/29b36823-6f3b-48ec-8ec1-68f1cf3b6472" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a56641b7-c949-4a31-bca6-10f464597892" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "93ac2dba-2e44-4100-8ab0-bc21208b33cf" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055457Z:93ac2dba-2e44-4100-8ab0-bc21208b33cf" ], + "x-ms-correlation-request-id": [ "ba6e68c4-539d-43b4-bb4f-a9fda365e3b7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082010Z:ba6e68c4-539d-43b4-bb4f-a9fda365e3b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E89C06025DD44889B69D2F629B98FF28 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:54:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3C8B095C7F440B6898A6C0E74459B70 Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"wnxFFwQSGeJ1dLtZonlXRHUMG2fvkLta3Kafx++scJ0kOKyogGnmJjuIhsT+R8mqSeSOpbUd4lAY+AStMNKVLg==\",\"permissions\":\"FULL\"}]}", "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-pxiydk/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?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-1us9gb/providers/Microsoft.Insights/components/Functions-Java-ge0rjbhmz4?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-pxiydk/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Insights/components/Functions-Java-ge0rjbhmz4?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": { @@ -7291,36 +7464,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/50f7541b-b426-4bd6-a59f-4f001edb3dcb" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "81641fd8-f0c4-4fea-aacb-77093ebef747" ], - "x-ms-correlation-request-id": [ "81641fd8-f0c4-4fea-aacb-77093ebef747" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055505Z:81641fd8-f0c4-4fea-aacb-77093ebef747" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42c80885-9e17-446e-ab1a-52fbe62d1d52" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "41e02f68-b4e9-40bb-859c-f06c50478ba0" ], + "x-ms-correlation-request-id": [ "41e02f68-b4e9-40bb-859c-f06c50478ba0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082016Z:41e02f68-b4e9-40bb-859c-f06c50478ba0" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EA713E8BC8A456C8DE40D404F8E5697 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:54:57Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4776E7970EDD4F778393C21D60B0D0DB Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:15 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\": \"\\\"69005ff7-0000-0300-0000-68e74e390000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-n63k2zl8s1\",\r\n \"AppId\": \"edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"be43f23c-478e-4712-ad8c-52104fbcde0f\",\r\n \"ConnectionString\": \"InstrumentationKey=be43f23c-478e-4712-ad8c-52104fbcde0f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\r\n \"Name\": \"Functions-Java-n63k2zl8s1\",\r\n \"CreationDate\": \"2025-10-09T05:54:58.184581+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-n63k2zl8s1_edaec8cc-9f4d-4da8-9bac-b10c8d42651f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-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\": \"\\\"d30398a9-0000-0300-0000-690dabc00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-Java-ge0rjbhmz4\",\r\n \"name\": \"Functions-Java-ge0rjbhmz4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-ge0rjbhmz4\",\r\n \"AppId\": \"50e6341f-0958-40b7-823c-dcf65e3a608e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7ae02cbb-d616-446f-b41a-68afce5f98ac\",\r\n \"ConnectionString\": \"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\",\r\n \"Name\": \"Functions-Java-ge0rjbhmz4\",\r\n \"CreationDate\": \"2025-11-07T08:20:11.5168939+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-ge0rjbhmz4_50e6341f-0958-40b7-823c-dcf65e3a608e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-ge0rjbhmz4-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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-n63k2zl8s1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"be43f23c-478e-4712-ad8c-52104fbcde0f\"\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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-ge0rjbhmz4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1683" ] + "Content-Length": [ "1609" ] } }, "Response": { @@ -7328,180 +7501,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E144A91140\"" ], + "ETag": [ "\"1DC4FBF5B8BAAE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae4f18e6-4254-429e-b6c8-1fda749adcc4" ], + "x-ms-request-id": [ "f4ac032b-1215-4eb9-8dd3-8116439f543d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2c6a521-e1d6-43c9-a34f-70a16fa3f4f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b41ee10c-ad43-4ee3-952d-46ef2bbb59c5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "eb7b6868-4c54-4935-b71f-3350816514f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055528Z:eb7b6868-4c54-4935-b71f-3350816514f2" ], + "x-ms-correlation-request-id": [ "cf32fe5c-8490-44c5-825f-9fea0eb5ddf8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082040Z:cf32fe5c-8490-44c5-825f-9fea0eb5ddf8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1A9BA714B8E4B989765603CF20DE6E2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:05Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3816FF7FB3C45C39F92BDD6B55A0220 Ref B: MWH011020808025 Ref C: 2025-11-07T08:20:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:20:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8309" ], + "Content-Length": [ "8731" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:07.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\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-ge0rjbhmz4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Java-ge0rjbhmz4\",\"repositorySiteName\":\"Functions-Java-ge0rjbhmz4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"functions-java-ge0rjbhmz4.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-ge0rjbhmz4.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-ge0rjbhmz4.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:20:20.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\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-ge0rjbhmz4\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Java-ge0rjbhmz4\\\\$Functions-Java-ge0rjbhmz4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-java-ge0rjbhmz4.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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "110cc0b8-397b-4203-bfe8-164ef3fec6d5" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "1a164e58-6fe6-422e-ad2d-b74b2601fee8" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E150183635\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67956cae-2eee-469d-afaa-b056e836e3e8" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a2568a40-9040-447f-923b-c35e37287a9c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055558Z:a2568a40-9040-447f-923b-c35e37287a9c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 219A74FE98214D90A59863D50C649DAE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:58Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:58 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8190" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "306" ], - "x-ms-client-request-id": [ "cb40f226-7c26-4e5a-b46a-c3a7ada9db0d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E150183635\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd00e811-0d2d-447a-a038-177636ffda6e" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa479af8-0119-4471-95c9-bc0b9d000600" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:aa479af8-0119-4471-95c9-bc0b9d000600" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E728308EB5CC4558BC44734F4417355E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8190" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "7e0c5f4e-4927-4991-a580-3b605f61fda0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "00804885-60a3-4b86-849f-6160285ce2fd" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/000326fb-1e7a-4ed8-99fe-da3650a9b4f6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "97467c7f-86d7-4370-8fab-04371b40961d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:97467c7f-86d7-4370-8fab-04371b40961d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A77505C904A475CA40CB931BB53BD49 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "a9640add-2685-478d-85af-1babd9bf4da8" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -7511,87 +7547,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC4FBF66D21F2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0c5c0a8-e96c-40e7-a095-8b2d044cecfc" ], + "x-ms-request-id": [ "4140243d-e861-4375-8035-36c6b2f7ed12" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/033c8a7d-1541-4f52-84c2-2829e7610750" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8f809636-13b6-43c8-bdc8-e6beeeb58b15" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055559Z:8f809636-13b6-43c8-bdc8-e6beeeb58b15" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EADD6374BA764F8486689C998728C50C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:55:59Z" ], - "Date": [ "Thu, 09 Oct 2025 05:55:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4180" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "beb7f1cf-ac93-409a-8112-396a0cb32078" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "e33ee970-fc10-4605-ab58-731bd566e2a9" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5abdbe3b-cf3c-4ec5-9229-c3ab711eb547" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ad3f5424-2af3-4a3a-b890-645c78276013" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:ad3f5424-2af3-4a3a-b890-645c78276013" ], + "x-ms-correlation-request-id": [ "c7c05146-9814-4f58-ad3a-76d5a7f56e52" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082110Z:c7c05146-9814-4f58-ad3a-76d5a7f56e52" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E41B39CB75CB40A6816DFB000FB64FA9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DF9787EFA8C4008BBC7E40BDA3715A9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1218" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-ge0rjbhmz4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Java-ge0rjbhmz4\",\"repositorySiteName\":\"Functions-Java-ge0rjbhmz4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"functions-java-ge0rjbhmz4.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-ge0rjbhmz4.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-ge0rjbhmz4.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:20:39.6666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-ge0rjbhmz4\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Java-ge0rjbhmz4\\\\$Functions-Java-ge0rjbhmz4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "37ec118b-bca7-415d-bcba-b2ff7218d637" ], + "x-ms-unique-id": [ "345" ], + "x-ms-client-request-id": [ "5ee16f4f-7374-4ad5-a896-d0de60870ad7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7602,42 +7593,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E150183635\"" ], + "ETag": [ "\"1DC4FBF66D21F2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f88c1db-736a-4101-893b-619adefc9b60" ], + "x-ms-request-id": [ "3603f818-05c8-41b9-b399-89bc4a191314" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb400d5b-1a97-4750-80fc-683268e48288" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:bb400d5b-1a97-4750-80fc-683268e48288" ], + "x-ms-correlation-request-id": [ "553670d9-aedf-44b7-b8cf-8521d2b6ea77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082111Z:553670d9-aedf-44b7-b8cf-8521d2b6ea77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F19696381CB4D7EB286B0FC7C2AE6B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E0AF27891134944B71ED577FE6C08E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8190" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.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-n63k2zl8s1.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-n63k2zl8s1.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:55:27.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\":\"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-n63k2zl8s1\",\"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-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"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-pxiydk\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-ge0rjbhmz4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Java-ge0rjbhmz4\",\"repositorySiteName\":\"Functions-Java-ge0rjbhmz4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"functions-java-ge0rjbhmz4.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-ge0rjbhmz4.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-ge0rjbhmz4.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:20:39.6666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-ge0rjbhmz4\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Java-ge0rjbhmz4\\\\$Functions-Java-ge0rjbhmz4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "9ddb2b12-46c5-4e7d-acca-033d0fe94042" ], + "x-ms-unique-id": [ "346" ], + "x-ms-client-request-id": [ "668cb5e4-5c3d-427c-abcc-aef219ec2c76" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7649,1466 +7640,43 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "431b5dc9-82cd-4fc2-92a9-4a76bf6826fa" ], + "x-ms-request-id": [ "fc7af147-f72f-4bc0-89c7-3f53e3a24d23" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a23bcb4-3f0c-437e-a509-26380d72412f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/839e670d-8ecd-4849-9afa-3091fc567c1a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c7c61a83-9b3e-4a70-bf5d-b52e68ed177f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055600Z:c7c61a83-9b3e-4a70-bf5d-b52e68ed177f" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8C08A4D75DB414C990CFB974EF2BA85 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:00Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\"}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "965d81cf-8da2-440d-b9e1-fe93433010cd" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "99dfd80d-eae1-4374-9eec-dd2211cad907" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5f688bd-7ad3-4007-9bae-0128fa714e32" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b678476f-919c-47d8-b6f0-7448886c9ee3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055601Z:b678476f-919c-47d8-b6f0-7448886c9ee3" ], + "x-ms-correlation-request-id": [ "9a9c559a-5c58-423a-b04f-9c9941f8487c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082111Z:9a9c559a-5c58-423a-b04f-9c9941f8487c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB15CEF84BC64EB4B3A19385B8C4E700 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 598291B2BAAC455593E584EA919A7271 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4180" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-ge0rjbhmz4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\"}}", "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-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/web?api-version=2023-12-01+10": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "32d0a966-aad2-4c66-b5c5-3ae37bd52167" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E150183635\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0b5ad90-7320-4f12-b5fa-635c7a397cd6" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5ef108c1-bcc5-489b-8683-ce75684b036b" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "81689f4b-0b29-462e-9850-9232922d6d5d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055609Z:81689f4b-0b29-462e-9850-9232922d6d5d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1042B0603F7543D38FAE90575CDE61D9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:01Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:09 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": 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/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-Node-5ys83coe4k\",\r\n \"type\": \"Site\"\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "65eb8dfb-7e59-433e-97bf-85a66b850371" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ebe1978-8601-4d83-b852-5cb282704376" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df67b6f3-2c57-4d40-aeed-0293466485e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055609Z:df67b6f3-2c57-4d40-aeed-0293466485e8" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F680858B730459FA61B8F377B1BB968 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:09Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:09 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "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/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "ece58613-c13b-47c8-8cba-19e7904720fa" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "ad5f92c1-ec30-41d3-8c97-ea53167044b9" ], - "X-AspNet-Version": [ "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/fe3aec55-b3bd-4478-9e47-47c300a5a0b5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a53f75b9-4047-4092-ac14-fc53064ce578" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:a53f75b9-4047-4092-ac14-fc53064ce578" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8764CC4CD6004650B840565D905AFA03 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "37141" ], - "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { - "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": [ "316" ], - "x-ms-client-request-id": [ "b25cfccd-d414-4640-bdd7-7e1cdf7b26d5" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6e9c997e-8d0f-4902-af4e-04e6a83acb6b" ], - "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": [ "dabf55ca-18c9-4024-a769-397de6c10617" ], - "x-ms-correlation-request-id": [ "dabf55ca-18c9-4024-a769-397de6c10617" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:dabf55ca-18c9-4024-a769-397de6c10617" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A4F79E990E2473BA2A60FDA5AA6FECF Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2811" ], - "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "51787db1-2a0d-42bf-a0e8-135a82e543a3" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "071d2877-15f8-48b9-b4ca-b33b28836332" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9cf0b4ea-4fe1-4162-bdbb-3b686ab015d3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2601cefd-9300-4e91-ac8a-eb84d4851f07" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055610Z:2601cefd-9300-4e91-ac8a-eb84d4851f07" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A85A174B1F14393B3A9B441A136AD34 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", - "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-pxiydk/providers/Microsoft.Insights/components/Functions-Node-5ys83coe4k?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-pxiydk/providers/Microsoft.Insights/components/Functions-Node-5ys83coe4k?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/efd648de-f3fe-419b-902c-b602de580291" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "225b7de0-4c95-456d-8e0b-12d93914ed86" ], - "x-ms-correlation-request-id": [ "225b7de0-4c95-456d-8e0b-12d93914ed86" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055619Z:225b7de0-4c95-456d-8e0b-12d93914ed86" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06A0C8DAFB9444B0A10E1CD299E72F0C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:10Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:19 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1626" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"690056fa-0000-0300-0000-68e74e830000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Node-5ys83coe4k\",\r\n \"name\": \"Functions-Node-5ys83coe4k\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-5ys83coe4k\",\r\n \"AppId\": \"1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8779f78e-5d73-455c-85c7-7e48c434f08c\",\r\n \"ConnectionString\": \"InstrumentationKey=8779f78e-5d73-455c-85c7-7e48c434f08c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\r\n \"Name\": \"Functions-Node-5ys83coe4k\",\r\n \"CreationDate\": \"2025-10-09T05:56:11.3214483+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-5ys83coe4k_1b7ffc5b-2de3-4ad1-b715-c59b306935a6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-5ys83coe4k-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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-5ys83coe4k\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"8779f78e-5d73-455c-85c7-7e48c434f08c\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1683" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1706B8FCB\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c92194b3-661c-4b35-b68d-be1537e58a4e" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1987e44-5291-49a4-882c-75649b06c188" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "562389f0-c764-43b2-bf0e-a0244c3db66d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055641Z:562389f0-c764-43b2-bf0e-a0244c3db66d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B102D1483F8E423EA80B5BA7218C0EFE Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:56:19Z" ], - "Date": [ "Thu, 09 Oct 2025 05:56:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8310" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:21.28\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.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}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "e788d309-33b9-4419-bbd2-bbf8de22d824" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E17BD92E20\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3b0d8c3-d0ad-4210-8dfd-d1be845c5f62" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3f363a2c-63e5-4f39-ae14-ef88f72cb8dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055712Z:3f363a2c-63e5-4f39-ae14-ef88f72cb8dd" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C2FFF050C794BD589BF7275B68F3EF8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:11Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8185" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "321" ], - "x-ms-client-request-id": [ "59a2ebba-a1e3-4672-a69d-d5cd445b6456" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E17BD92E20\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a755b50-c748-45d5-bd7b-550964373ad8" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "896fe30e-1e2b-4271-98ad-1a3cab599a37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055712Z:896fe30e-1e2b-4271-98ad-1a3cab599a37" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D17FA28D8AC4B1D82AAB646721CBF2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:12Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8185" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "d9352d14-05c3-4969-bae0-c815e9c3a1ed" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "a352ba0c-ee1b-4d11-8b96-c0c5b9cf9d92" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3bd3e91-4271-413b-b616-81cd9c23696c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f0fb3897-2f8d-4645-820c-80d56a200eb5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:f0fb3897-2f8d-4645-820c-80d56a200eb5" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85CFB773355C46D1A658172C437635B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:12Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:12 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "be6c764f-5578-4618-8ca7-b2470d67e085" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "cd330d37-4ffd-44f5-b391-5c14d7b053a1" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4501dde-f7d8-42e1-8f86-05a7275c458a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e8b5c4c1-0c32-4e11-8f13-0ac8928aa7df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:e8b5c4c1-0c32-4e11-8f13-0ac8928aa7df" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCD7617CECA24A769175C9C746E55A4A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4180" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites/config\",\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "8a3d8586-724f-436d-8aed-288305a23ec5" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "45ecd65d-a5f9-447b-bcfa-a678a0e47f3f" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9f758fa-335d-40fd-8143-e72a30013b19" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4b2c1f7f-43a1-4c5f-a581-d9a6b7eed07b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:4b2c1f7f-43a1-4c5f-a581-d9a6b7eed07b" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1C4548931974696A4E89593678DC283 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "20808808-aaf1-4a6b-9e33-737efe9ad53c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E17BD92E20\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d49c1a0-8995-4c31-a50f-bef3bfecd567" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e6760a0f-0182-48fd-b717-54a519909f77" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055713Z:e6760a0f-0182-48fd-b717-54a519909f77" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A16652C19B8F416D99DDC90697A8267A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:13Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8185" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-5ys83coe4k\",\"state\":\"Running\",\"hostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Node-5ys83coe4k\",\"repositorySiteName\":\"Functions-Node-5ys83coe4k\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-5ys83coe4k.azurewebsites.net\",\"functions-node-5ys83coe4k.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-5ys83coe4k.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-5ys83coe4k.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:56:41.09\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-5ys83coe4k\",\"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-5ys83coe4k\\\\$Functions-Node-5ys83coe4k\",\"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-pxiydk\",\"defaultHostName\":\"functions-node-5ys83coe4k.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "73802fa5-a167-463c-9f02-32ce653704f4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "a881a082-8e21-469c-b8e4-75f0df138d27" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/475d53be-f254-4aac-963c-447e4d706015" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "71bf54e2-5300-416a-a4f6-f6f2a1b99f2a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055714Z:71bf54e2-5300-416a-a4f6-f6f2a1b99f2a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7A3FDB2B6FE436D9DB771F93F59CD5C Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1218" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-5ys83coe4k\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\"}}", - "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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/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-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "b127e97f-1d4c-42ec-a4e2-13c50f8f3c34" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "945a01b7-c0a2-40fb-9c2c-d2d242ad2955" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/259b7f71-ef18-40a6-8412-4ebe10cdbbee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c5157cb-bf97-4c13-a9fe-66f511ec1ea5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055714Z:2c5157cb-bf97-4c13-a9fe-66f511ec1ea5" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00F0971A9DA14936BD3A734087C84652 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:14Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4180" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k/config/web\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"Microsoft.Web/sites/config\",\"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.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Node-5ys83coe4k?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "3010b412-2dd5-4988-970c-9b8651c108f5" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E17BD92E20\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac751d34-e8a5-4be4-a80f-e40aa364d58c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11a5f574-7a2a-408b-a27b-3bd208e041aa" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f9ce8d06-6304-4c23-9b87-82bff9fdc3e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055723Z:f9ce8d06-6304-4c23-9b87-82bff9fdc3e2" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 961CDED48F844028A17876280E847AF5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:15Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:23 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$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-8l0a19iyrf\",\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": [ "1649c44a-6a6f-4d80-8cd0-e4e8379202ec" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4c7d2fa-3b19-4c21-b17f-e98fd8bae112" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af9fa358-16f6-44b3-b849-f7ae9b8f4866" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055724Z:af9fa358-16f6-44b3-b849-f7ae9b8f4866" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8817CA4112E44AED9EC1CFBEAAA6ACA6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "47" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "1b960d02-2a8e-47ac-b8b4-cacd66509c4a" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], - "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "18c99763-a1f7-45e6-8f6a-8946379f77fa" ], - "X-AspNet-Version": [ "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/561e0912-47e5-4f74-9009-03eef54f5e9f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bc3e44f-89b7-4b29-a19e-d4a43b53382a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055724Z:2bc3e44f-89b7-4b29-a19e-d4a43b53382a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAC5111A777D4701A1298599DB5D9F61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "37141" ], - "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"nextLink\":null,\"id\":null}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { - "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": [ "331" ], - "x-ms-client-request-id": [ "8a434b1e-c96b-4c7b-b552-db892d872270" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], - "FullCommandName": [ "Get-AzStorageAccount_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5b6f6b2f-e938-4273-91e5-6e122bbdf9df" ], - "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": [ "be6d0779-d946-4e34-a95a-3bd33336f7bb" ], - "x-ms-correlation-request-id": [ "be6d0779-d946-4e34-a95a-3bd33336f7bb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055724Z:be6d0779-d946-4e34-a95a-3bd33336f7bb" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A774D981B92E4D10BAA3EFBEE99946B2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:24Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2811" ], - "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/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-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3/listKeys?api-version=2019-04-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "a001aaf0-13be-4ece-a155-e7a18b526ade" ], - "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], - "FullCommandName": [ "Get-AzStorageAccountKey_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "393045ec-5ad6-4ee5-8b73-32e645151685" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b8836515-06dc-4e75-af9e-02b3c8b919f8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6b3fda6c-b0e9-4f69-98a9-d016f12c919c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055725Z:6b3fda6c-b0e9-4f69-98a9-d016f12c919c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 537CA208D3A048C6A8C58FE60FA40657 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "288" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"XSudwSRuz3JP8p4ymeER1QJoSN4fNa45wKx6QpsZm6eb6aTCxefbotIyIBKQxOfXy7GEGHLJwD1U+AStoPnSSw==\",\"permissions\":\"FULL\"}]}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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-pxiydk/providers/Microsoft.Insights/components/Functions-PowerShellTest-8l0a19iyrf?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/8c9adc76-b8cb-456c-91f0-96eb0804fc02" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "f6bb07e7-b503-454f-80c6-56cc363421b5" ], - "x-ms-correlation-request-id": [ "f6bb07e7-b503-454f-80c6-56cc363421b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055736Z:f6bb07e7-b503-454f-80c6-56cc363421b5" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72317B3D37474A11980F5C670D758015 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:25Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1686" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"690090fd-0000-0300-0000-68e74ed00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\r\n \"name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"AppId\": \"a2e23061-6e60-4732-9a62-d9506b484be6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"81f30117-f079-4303-9ab4-cc64b23fdc04\",\r\n \"ConnectionString\": \"InstrumentationKey=81f30117-f079-4303-9ab4-cc64b23fdc04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a2e23061-6e60-4732-9a62-d9506b484be6\",\r\n \"Name\": \"Functions-PowerShellTest-8l0a19iyrf\",\r\n \"CreationDate\": \"2025-10-09T05:57:25.9307232+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-8l0a19iyrf_a2e23061-6e60-4732-9a62-d9506b484be6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-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 PowerShell 7.4 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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\": \"PowerShell|7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-8l0a19iyrf\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"81f30117-f079-4303-9ab4-cc64b23fdc04\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1706" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E19EDE3A35\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13d0aee1-0434-41dd-95db-3c141d6ab540" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75cf1281-6092-435f-8c32-289e2ded2065" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "282ec338-d4d6-48b7-830e-e09cdf797ecb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055759Z:282ec338-d4d6-48b7-830e-e09cdf797ecb" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7960833240E645829A91088505D04E53 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:57:36Z" ], - "Date": [ "Thu, 09 Oct 2025 05:57:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8462" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:39.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.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}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "335" ], - "x-ms-client-request-id": [ "c312a25b-3e57-4175-a5d7-6d20b8dee0f8" ], - "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], - "FullCommandName": [ "New-AzFunctionApp_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1AA580D8B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff58364e-36ea-4dea-b133-d79163cae405" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d175c83-f390-417f-b250-33b64899ba4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055830Z:4d175c83-f390-417f-b250-33b64899ba4e" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFC092C6D96D42F89EC36257DFC8460E Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8344" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "336" ], - "x-ms-client-request-id": [ "6c9d0806-f102-463b-9049-dfd008ddd78c" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1AA580D8B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2562376f-8894-4580-aaa0-8454262cdb2d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "23fb2029-39a5-4008-a544-704ad3756345" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055830Z:23fb2029-39a5-4008-a544-704ad3756345" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C3C61D3F35F4E649D8909E8F5D65C13 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8344" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "840fde75-0a8f-449a-ae1e-39b21ff14dd0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "e1eb1a39-8931-4fb1-accf-62d5fcba09ea" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/299654cf-f515-4dc2-bcef-a34170f42e66" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "37987cff-df89-4fc3-ab2d-78cebcfbf00d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:37987cff-df89-4fc3-ab2d-78cebcfbf00d" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27726CAE775E45DF9F0C3CEE9D3315A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:30Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1244" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "64d847f6-437b-4e5f-8e6c-730d6164a10e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "3717fe5c-8aa4-4e2b-bf69-1e372917e7b0" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a487e4a8-eb40-4773-873f-e4005b194e6a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "55f656c1-7030-42f9-9742-620c643d6ba9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:55f656c1-7030-42f9-9742-620c643d6ba9" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 076A2214F24040B7A2D28274A43E78FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:31 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4207" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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 PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "6f8000aa-b724-45c3-abfc-f661db847229" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "919eb448-8fea-4298-9811-8b0dc9119b6d" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2484185-7007-4416-815b-f21154f28b76" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8c7c634d-b803-4915-9dea-6d15383f5db5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055831Z:8c7c634d-b803-4915-9dea-6d15383f5db5" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2100F1FB0FC74BF58BB0FD9218AB1B6F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:31 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1244" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "a39b6a98-8132-4513-9066-14644687d080" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], - "FullCommandName": [ "Get-AzFunctionApp_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1AA580D8B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "821a7be6-d6b8-4d42-bc1d-6b9bdbf0db4e" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "60a3630f-0d80-4a9c-aea3-0969d64ad44c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:60a3630f-0d80-4a9c-aea3-0969d64ad44c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 070C2B90E2AE4337AA6B605A6367C912 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:31Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "8344" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-PowerShellTest-8l0a19iyrf\",\"repositorySiteName\":\"Functions-PowerShellTest-8l0a19iyrf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"functions-powershelltest-8l0a19iyrf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"PowerShell|7.4\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-8l0a19iyrf.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-8l0a19iyrf.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:57:59.0966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-8l0a19iyrf\",\"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-PowerShellTest-8l0a19iyrf\\\\$Functions-PowerShellTest-8l0a19iyrf\",\"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-pxiydk\",\"defaultHostName\":\"functions-powershelltest-8l0a19iyrf.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "341" ], - "x-ms-client-request-id": [ "3dc3327c-6c11-434d-9ab4-74a9e5e604b7" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "b719de72-f254-465e-a069-bdc9414375ee" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/195b20ec-ef27-42cf-aea9-9aba9c0df137" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1290038f-d2f6-4620-b7b2-563def354cde" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:1290038f-d2f6-4620-b7b2-563def354cde" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99A0DED4DC5D4209B1E9B559248180EB Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:32Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1244" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-8l0a19iyrf\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\"}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux PowerShell 7.4 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/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-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "f5b11ce8-32ef-40f1-a124-1909419ff668" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.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": [ "5b1f72bf-3049-43ad-8a06-dc220cbf7926" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9acc10f-a3a3-4e0b-af7d-c31f32ccc048" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c2086c9-a2a2-475e-b6b5-b338ef1f7cc7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055832Z:2c2086c9-a2a2-475e-b6b5-b338ef1f7cc7" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB05DF31AE5C4C60AD1BA76EA8C0765D Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:32Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4207" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf/config/web\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"PowerShell|7.4\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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 PowerShell 7.4 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-PowerShellTest-8l0a19iyrf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "4c811cb6-c5e2-45d0-bf59-29ff4ece55b6" ], - "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], - "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1AA580D8B\"" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0096349-800c-42d3-9735-e387febb428f" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fbaee5c-1a4b-4abb-b5ad-5efa7f15d2e7" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "8b26b525-0bb0-4962-9ac4-77496d917fea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055840Z:8b26b525-0bb0-4962-9ac4-77496d917fea" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C38F6E539906411CA05994CD3208E20A Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:33Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:40 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": 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/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-DotNet-Isolated279k80n3oe\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/web?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "9da601e7-deb2-4607-a3fe-16e86e26d66a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -9117,41 +7685,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a95aa85b-a387-4ca2-a3e8-6d678a0386b3" ], + "x-ms-request-id": [ "085d6c28-9d0f-4ac6-8402-352744a75ee7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06143232-e0b4-4e5b-bd47-55d330b4a4c8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/38df0872-ef43-4124-9b28-1f920e9c6977" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dfbe7116-bc23-418b-8a42-1c6359c1428f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055841Z:dfbe7116-bc23-418b-8a42-1c6359c1428f" ], + "x-ms-correlation-request-id": [ "29ba0a5a-075d-4b65-a0ed-02c627cae953" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082111Z:29ba0a5a-075d-4b65-a0ed-02c627cae953" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19DABF055EC74024A6A3D8D63595F784 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:40Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 196FEA2E817D4B1683F2F6E377C087C8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/web\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites/config\",\"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 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$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 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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/appsettings/list?api-version=2023-12-01+11": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "d7ebd122-e94c-412f-bedf-d3807b13d8d6" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "41a27978-c960-46a0-9c3c-d32fad8f5575" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9162,41 +7730,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "34031449-70a3-4a01-9385-ddad011bfdcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e449f8d6-289f-4389-a957-d4132dbedecc" ], "X-AspNet-Version": [ "4.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": [ "142d522a-e069-4321-9a62-b10ed46076ae" ], - "x-ms-correlation-request-id": [ "142d522a-e069-4321-9a62-b10ed46076ae" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055841Z:142d522a-e069-4321-9a62-b10ed46076ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a8a482c5-c72f-4cbd-b254-d2f9f3968ed8" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a1b5aef9-4616-43c7-810f-ee8dfc7337ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082112Z:a1b5aef9-4616-43c7-810f-ee8dfc7337ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C8F3F73BA214345BB3140831907237F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97A78E3FD2C74B73B6C7E91A681F3EE5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9825" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "1207" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-ge0rjbhmz4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\"}}", "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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?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-pxiydk/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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "346" ], - "x-ms-client-request-id": [ "ac4700a0-b244-4cf5-80d2-4be0f3a624b4" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "c21aaf15-4916-4c41-b576-abb6a3b9b4fc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9207,41 +7775,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "ETag": [ "\"1DC4FBF66D21F2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "675d4809-d848-4fc7-88ff-1d17b269f681" ], + "x-ms-request-id": [ "7699bdfa-4bf1-4a9c-b4b9-cf55e33d7fcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3397020d-8668-4c25-aa0b-759ba798bac7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055842Z:3397020d-8668-4c25-aa0b-759ba798bac7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c039c4e4-3950-4245-b3d5-bde7e2cf2164" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082112Z:c039c4e4-3950-4245-b3d5-bde7e2cf2164" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 538E268C58AB43ABADDC987C4299DFE6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:41Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01145C3B46E94A62A96658DECD8AAE89 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-ge0rjbhmz4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Java-ge0rjbhmz4\",\"repositorySiteName\":\"Functions-Java-ge0rjbhmz4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"functions-java-ge0rjbhmz4.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-ge0rjbhmz4.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-ge0rjbhmz4.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:20:39.6666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-ge0rjbhmz4\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Java-ge0rjbhmz4\\\\$Functions-Java-ge0rjbhmz4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-java-ge0rjbhmz4.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-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-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/appsettings/list?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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "347" ], - "x-ms-client-request-id": [ "b677be22-f3c6-42ea-921f-37aae3cbae0f" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "e9a20c68-b291-49d3-9ba5-7fd6ca29258a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9253,127 +7822,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c84a5bf-7667-4dc1-bcd1-7f3e6b991f56" ], + "x-ms-request-id": [ "b936e2dd-fa65-451c-a374-63400a339158" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "67aed713-1e97-4f2b-8be4-b4553a0dad84" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055842Z:67aed713-1e97-4f2b-8be4-b4553a0dad84" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0cc08f61-1eb0-45b8-b507-6a080d19adb3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e3883275-52a6-415d-af04-c156648872cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082112Z:e3883275-52a6-415d-af04-c156648872cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00D40CBDCC334AF2B445BC7D159AF793 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:42Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 506FDD614BFA431E905C5BFBDB5AAB2A Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-ge0rjbhmz4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\"}}", "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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01+5": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "d8c4c0a5-c60e-4b2f-bffb-1e73ef796453" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "65764960-0891-4cdd-a3e6-37c0478febbd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "17b47ae7-d8de-483c-9c7e-381c08ed4030" ], - "x-ms-correlation-request-id": [ "17b47ae7-d8de-483c-9c7e-381c08ed4030" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055854Z:17b47ae7-d8de-483c-9c7e-381c08ed4030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "50ce101c-188e-425c-9b1d-5affab03dc3e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3424d7d6-7363-4103-b3e7-ae8d77b04c33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dfb2244c-7ea0-411c-b7ef-c2656fa1ac24" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082112Z:dfb2244c-7ea0-411c-b7ef-c2656fa1ac24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D9DDB0699854A26A6B117B591773953 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69E642EAE8C04F6D955053FB6316E3D2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "4180" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4/config/web\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"Microsoft.Web/sites/config\",\"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 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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01+6": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Java-ge0rjbhmz4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "bf9975af-d820-4296-9e50-e69a7b4fbf98" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "23ada255-14af-4486-9681-901b5dbde321" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], - "x-ms-correlation-request-id": [ "388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055854Z:388e394e-a166-4fe6-bcec-4f2f1f9abcc5" ], + "ETag": [ "\"1DC4FBF66D21F2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b176cb0f-520f-43d8-93b5-0cfa83d1af8a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c895ced-388e-4407-bfdb-8b6d0e0c8136" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "dff5c1c0-d206-4796-90ac-2f150a2a8c4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082120Z:dff5c1c0-d206-4796-90ac-2f150a2a8c4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 844308D32C2F4CC784F6D74A3BACFEE8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:54Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24B7D996CB07430E9EBB965ED0357725 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "245" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": 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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01+7": { + "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/providers/Microsoft.Web/checknameavailability?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", - "Content": null, + "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-nihrl65d71\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "6943f814-141e-472d-9713-a4022577a7f9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "62" ] } }, "Response": { @@ -9382,40 +7954,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6cc25ed3-4e12-4435-9cc5-09dc223b775a" ], + "x-ms-request-id": [ "0d0f9611-fc12-429e-aca4-4ce7a5846ba8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67ba1d49-9f2f-4ad1-ae6f-c93fe158ee17" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "81dcf5ba-9877-48b1-a24d-850f43d02f02" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:81dcf5ba-9877-48b1-a24d-850f43d02f02" ], + "x-ms-correlation-request-id": [ "9adbc329-ace6-4302-bc11-2590aa7ee1e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082121Z:9adbc329-ace6-4302-bc11-2590aa7ee1e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FBBD470E7E9F46C7842A1CE589D8B00F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC628E0C2F5B4EDFAA78F30AB8811BCF Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "47" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=Dynamic\u0026linuxWorkersEnabled=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "6021ff86-9084-4788-8b2c-d6979ad74045" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "1b61dc32-4fe5-4508-b56f-9d76c3fafc05" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], + "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9427,40 +8000,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fd30eac-2e0a-4746-bc0f-dab2e553ec81" ], + "x-ms-request-id": [ "6985b79a-b28b-4dd2-b731-5376807354b7" ], "X-AspNet-Version": [ "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/6a93d2b2-0a03-4046-a393-947f7f7f424a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0a7be5cf-4271-42a6-8f33-0ea75d8afb8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:0a7be5cf-4271-42a6-8f33-0ea75d8afb8a" ], + "x-ms-correlation-request-id": [ "3b137ac3-bdc5-452d-a3a5-02aa66a90f93" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082121Z:3b137ac3-bdc5-452d-a3a5-02aa66a90f93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35F7D16E4DF947FF9F412DC29C959EB4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E146F58E95774C19B1DE2E7FE5602FFA Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "37704" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":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\",\"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}", "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+9": { + "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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+3": { "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": [ "352" ], - "x-ms-client-request-id": [ "454aa765-bf2c-412d-aea9-9fa66f032d0a" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "e9837562-20ef-408e-b35e-eb9a8c4eb265" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9471,40 +8045,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b9c6472a-b4a2-494b-bd37-10543b51dc9d" ], + "x-ms-original-request-ids": [ "ed54d72d-3a87-4b63-badc-6b1f5d5787c4" ], "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": [ "370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], - "x-ms-correlation-request-id": [ "370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055855Z:370c7996-0013-4dfa-aaf1-3c080c4f49ec" ], + "x-ms-request-id": [ "8541512e-9f36-41a0-8f96-6b1789609ef2" ], + "x-ms-correlation-request-id": [ "8541512e-9f36-41a0-8f96-6b1789609ef2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082121Z:8541512e-9f36-41a0-8f96-6b1789609ef2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C78DB0E5CA7744C2A1FF98CE67AB8182 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC236A32471547F9B9BF200DF914EA27 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+10": { + "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-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "66789689-7ad1-4bfc-8246-d6e45512c905" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "8651dd2e-4e68-4820-bb8b-92de720aac63" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9515,31 +8089,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "33c6b9c5-5240-4c61-923a-03b2a9d88666" ], + "x-ms-request-id": [ "c57b1e62-ca33-4152-b193-78ba62143573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2ab5880c-8423-4f73-9048-a8c3230d8b9f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ee3ede54-bff4-4188-8b28-447372ce9273" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d3036331-08a0-4b04-81c7-2f9025086135" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T055856Z:d3036331-08a0-4b04-81c7-2f9025086135" ], + "x-ms-correlation-request-id": [ "b33ca9ea-4dfe-4220-ba39-0f4384d46f60" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082122Z:b33ca9ea-4dfe-4220-ba39-0f4384d46f60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DD0B501454E4CD686DE23B0F14EBD0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:55Z" ], - "Date": [ "Thu, 09 Oct 2025 05:58:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDE36EA94564459DBB644A1121B86235 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"wnxFFwQSGeJ1dLtZonlXRHUMG2fvkLta3Kafx++scJ0kOKyogGnmJjuIhsT+R8mqSeSOpbUd4lAY+AStMNKVLg==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Functions-DotNet-Isolated279k80n3oe?api-version=2015-05-01+11": { + "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-1us9gb/providers/Microsoft.Insights/components/Functions-Node-nihrl65d71?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-DotNet-Isolated279k80n3oe?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}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Insights/components/Functions-Node-nihrl65d71?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": { }, @@ -9558,36 +8132,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/669eb415-66b1-4b48-9053-cad2137392a3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], - "x-ms-correlation-request-id": [ "73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055904Z:73dcb3bf-d0f1-44e5-aaf6-824d1dfc7b98" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5221a773-bc91-43e0-a5b4-0bc2a4ffea6a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "12838c4a-f4a3-491c-b0e9-81c61376ad83" ], + "x-ms-correlation-request-id": [ "12838c4a-f4a3-491c-b0e9-81c61376ad83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082126Z:12838c4a-f4a3-491c-b0e9-81c61376ad83" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B86A498857DB497E9E0D05A98DA4FBC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:58:56Z" ], - "Date": [ "Thu, 09 Oct 2025 05:59:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42432A28424B4E27942B00F16AFC18E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1684" ], + "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a002202-0000-0300-0000-68e74f280000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-DotNet-Isolated279k80n3oe\",\r\n \"name\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"AppId\": \"18182e7d-7fa9-4a35-b63a-8203c339e208\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"32a3312d-4213-42d7-ae86-1012107e72a2\",\r\n \"ConnectionString\": \"InstrumentationKey=32a3312d-4213-42d7-ae86-1012107e72a2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=18182e7d-7fa9-4a35-b63a-8203c339e208\",\r\n \"Name\": \"Functions-DotNet-Isolated279k80n3oe\",\r\n \"CreationDate\": \"2025-10-09T05:58:56.8819319+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-isolated279k80n3oe_18182e7d-7fa9-4a35-b63a-8203c339e208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated279k80n3oe-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\": \"\\\"d30357c0-0000-0300-0000-690dac060000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-Node-nihrl65d71\",\r\n \"name\": \"Functions-Node-nihrl65d71\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-nihrl65d71\",\r\n \"AppId\": \"5923f3f8-c244-47e3-8887-7a65494a1d00\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"89ef16e7-2af1-4430-9b65-fef64522a17a\",\r\n \"ConnectionString\": \"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\",\r\n \"Name\": \"Functions-Node-nihrl65d71\",\r\n \"CreationDate\": \"2025-11-07T08:21:22.9099258+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-nihrl65d71_5923f3f8-c244-47e3-8887-7a65494a1d00_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-nihrl65d71-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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01+12": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated279k80n3oe\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"32a3312d-4213-42d7-ae86-1012107e72a2\"\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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-nihrl65d71\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1869" ] + "Content-Length": [ "1609" ] } }, "Response": { @@ -9595,43 +8169,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1D2B02AF0\"" ], + "ETag": [ "\"1DC4FBF83F9B440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fc6de81-1282-4afa-ac24-70918882f8e3" ], + "x-ms-request-id": [ "05012b33-181e-4e06-bdb8-fc53a81841a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7ff1ccd-ec54-4312-af94-b581ee9189d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/62a3e585-312d-47ae-8efc-acda3d14d589" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "4b21d65a-788f-482c-84e8-31df4a5add4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T055946Z:4b21d65a-788f-482c-84e8-31df4a5add4d" ], + "x-ms-correlation-request-id": [ "d3058c3b-ff08-4d96-81ae-a8ccb55ee692" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082147Z:d3058c3b-ff08-4d96-81ae-a8ccb55ee692" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DE8F467AF2447A59BC16208360E1A3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T05:59:04Z" ], - "Date": [ "Thu, 09 Oct 2025 05:59:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B806BB5DE4A044ACBEF756F76F2AD6B7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:21:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8566" ], + "Content-Length": [ "8731" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:05.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-nihrl65d71\",\"state\":\"Running\",\"hostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Node-nihrl65d71\",\"repositorySiteName\":\"Functions-Node-nihrl65d71\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\",\"functions-node-nihrl65d71.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-nihrl65d71.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-nihrl65d71.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:21:27.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-nihrl65d71\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-nihrl65d71\\\\$Functions-Node-nihrl65d71\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-node-nihrl65d71.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01+13": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "3141e322-92bf-4b98-a677-3a41c6b710f4" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "160ed328-b98c-49a1-9373-0c789f67ca45" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -9641,42 +8215,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1EA3BFFF0\"" ], + "ETag": [ "\"1DC4FBF8F398BD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7108c691-1e5f-432d-8f3e-a3409bc98fda" ], + "x-ms-request-id": [ "0db7acee-1e53-4709-8a36-73dc0e8613f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f7b9d1ff-5808-4c31-8766-a09197ccd487" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060017Z:f7b9d1ff-5808-4c31-8766-a09197ccd487" ], + "x-ms-correlation-request-id": [ "9cd8db64-6f8b-403f-b0ad-78fec4b65705" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082218Z:9cd8db64-6f8b-403f-b0ad-78fec4b65705" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24415B7F86924AEA81BE5C54F9EDFC85 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED0FABB1F41C49EAAEBCCDB8EB77463A Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:18Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-nihrl65d71\",\"state\":\"Running\",\"hostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Node-nihrl65d71\",\"repositorySiteName\":\"Functions-Node-nihrl65d71\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\",\"functions-node-nihrl65d71.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-nihrl65d71.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-nihrl65d71.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:21:47.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\":\"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-nihrl65d71\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-nihrl65d71\\\\$Functions-Node-nihrl65d71\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-node-nihrl65d71.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "612c164f-fcb8-440c-a508-b07beb8f7789" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "85e69a0e-912a-4671-96ec-62a8e7e8e54c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9687,42 +8261,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1EA3BFFF0\"" ], + "ETag": [ "\"1DC4FBF8F398BD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26247376-a0d2-4a01-8b51-652828dadff1" ], + "x-ms-request-id": [ "ccec4ae7-efd4-4638-961a-5b2b028f19cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5eb3c92b-81c7-48fa-ba58-274ca6c6f192" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060017Z:5eb3c92b-81c7-48fa-ba58-274ca6c6f192" ], + "x-ms-correlation-request-id": [ "8aaa4501-2b3d-48ae-b328-976e5e3bbdf9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082218Z:8aaa4501-2b3d-48ae-b328-976e5e3bbdf9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09816FF5A7364285A37225F3E1490518 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF610F90564749D297736A949961A472 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:18Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-nihrl65d71\",\"state\":\"Running\",\"hostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Node-nihrl65d71\",\"repositorySiteName\":\"Functions-Node-nihrl65d71\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\",\"functions-node-nihrl65d71.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-nihrl65d71.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-nihrl65d71.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:21:47.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\":\"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-nihrl65d71\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-nihrl65d71\\\\$Functions-Node-nihrl65d71\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-node-nihrl65d71.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01+15": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "358" ], - "x-ms-client-request-id": [ "39dbeda2-70a7-4cb8-a45f-56c0323a04fa" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "c52382a9-6979-4358-b360-b01c30496e82" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9734,40 +8308,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8042e483-04b4-4437-a4b8-801080a2b9b1" ], + "x-ms-request-id": [ "d2e54b5c-ced8-431d-bdd6-44d504749c30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa886a7d-d923-43e2-ac8e-e1d77122c416" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08e28d6d-7b68-4252-b4cf-e75eaaf61290" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d4d7b327-1b9c-4d60-a3a1-dc07e02e1e9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060018Z:d4d7b327-1b9c-4d60-a3a1-dc07e02e1e9b" ], + "x-ms-correlation-request-id": [ "cff31038-036a-433b-a5f4-a130110eb7ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082219Z:cff31038-036a-433b-a5f4-a130110eb7ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 171B34855A2843B5BD7DF7DFAB98C924 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 492E701F950E4F89BE71EA8523EC59E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-nihrl65d71\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01+16": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "6cba607d-9d05-4670-a7de-63e4e0b5ffdc" ], + "x-ms-unique-id": [ "362" ], + "x-ms-client-request-id": [ "da773dc4-fd92-4b45-ac80-9bf80bfada5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9779,41 +8353,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9dab17b-8801-4f33-aa3d-bcfb864005eb" ], + "x-ms-request-id": [ "5846a033-b33c-4d0f-8591-d1670d6a1318" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4df1a54b-23c2-43f0-8d8a-7587f43fa235" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddc3c5d4-4fea-467c-bd13-22ddc87a8102" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f01260a5-622d-4722-9836-88a90af90ddf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060019Z:f01260a5-622d-4722-9836-88a90af90ddf" ], + "x-ms-correlation-request-id": [ "4dfa6ebf-65ed-4d21-9834-0cc1bba55454" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082219Z:4dfa6ebf-65ed-4d21-9834-0cc1bba55454" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10A06C5865AF4F79900BFBE1A92F4DBB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79BE835A5C6F44148B22BB76423AA964 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4189" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites/config\",\"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-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/web\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites/config\",\"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 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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01+17": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "46f2d04c-dccc-4b5d-b2a2-28526d3055b5" ], + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "16b9879a-3a9a-4fe9-b694-afe1d34d5f3b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9825,40 +8399,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5acf02d4-a3a8-4010-a76f-2c51f2dc67b6" ], + "x-ms-request-id": [ "15ce6da6-0f4c-4abc-9462-6e0b4a8787a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1057098-7611-431d-b38e-082a09e6329a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7122e705-a61f-429f-a223-9977a26b6524" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e31b5dbb-2aea-4a4d-9040-07478bb1861b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060019Z:e31b5dbb-2aea-4a4d-9040-07478bb1861b" ], + "x-ms-correlation-request-id": [ "6ddf9347-80fa-4434-afec-0b90c4972a01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082219Z:6ddf9347-80fa-4434-afec-0b90c4972a01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DD01FBB8B9347028317248B5BDC64CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32A05CE35F3F4B0FAE57CDA672B0E32E Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-nihrl65d71\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "9fb106f2-cb1b-4dde-8d77-5f72300d0e95" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "9fed047e-45bb-4c52-b9ac-210b9ac8fffc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9869,42 +8443,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1EA3BFFF0\"" ], + "ETag": [ "\"1DC4FBF8F398BD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06f7d402-9e90-4ab6-b743-dd1b393e7740" ], + "x-ms-request-id": [ "8641cbbe-b938-4b16-a92b-aa7106d16811" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e5d4802-1504-46df-9f21-ad18488b64e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060020Z:8e5d4802-1504-46df-9f21-ad18488b64e6" ], + "x-ms-correlation-request-id": [ "96a95ac5-328e-4042-8bf3-9355aa28ffe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082220Z:96a95ac5-328e-4042-8bf3-9355aa28ffe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2F46E32BE2D43B983C7818593B2D716 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 486FD236A61B4E27AB224AD0EE5345F9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:19Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-DotNet-Isolated279k80n3oe\",\"repositorySiteName\":\"Functions-DotNet-Isolated279k80n3oe\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"functions-dotnet-isolated279k80n3oe.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated279k80n3oe.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-isolated279k80n3oe.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:59:46.287\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated279k80n3oe\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated279k80n3oe\\\\$Functions-DotNet-Isolated279k80n3oe\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-dotnet-isolated279k80n3oe.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-nihrl65d71\",\"state\":\"Running\",\"hostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Node-nihrl65d71\",\"repositorySiteName\":\"Functions-Node-nihrl65d71\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-nihrl65d71.azurewebsites.net\",\"functions-node-nihrl65d71.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-nihrl65d71.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-nihrl65d71.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:21:47.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\":\"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-nihrl65d71\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-nihrl65d71\\\\$Functions-Node-nihrl65d71\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-node-nihrl65d71.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01+19": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "362" ], - "x-ms-client-request-id": [ "740df52a-390e-4d0d-827c-c86cb1d503dd" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "fd25fa1e-9f10-468c-962a-034b32ec67a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9916,40 +8490,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d26e013a-a616-4bd9-8690-1452dee3f1e6" ], + "x-ms-request-id": [ "ca1b93a2-db45-418e-b368-3e0f86041d62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21b7fcb4-2d3f-4c2d-9b7f-10a41079dfe0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/713ca30d-f72b-41d6-87df-bd5488fc7187" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b9be4bb1-c223-4d30-911c-8272a31f20b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060020Z:b9be4bb1-c223-4d30-911c-8272a31f20b6" ], + "x-ms-correlation-request-id": [ "33d50264-1692-451c-8852-f83e96c04961" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082220Z:33d50264-1692-451c-8852-f83e96c04961" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0478039EC7374643852638361603FB27 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56F4A2FDB5CA4DCAA57BCA72ED55601A Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1241" ], + "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated279k80n3oe\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"32a3312d-4213-42d7-ae86-1012107e72a2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-nihrl65d71\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01+20": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "363" ], - "x-ms-client-request-id": [ "891d5d4b-77a4-4d6e-bc47-e1851714c556" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "835d7ff4-889a-425e-9655-bc54ab65ffc0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9961,41 +8535,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7732531-3793-494d-9656-2121fc303476" ], + "x-ms-request-id": [ "e6262637-3354-4696-89f2-34a6e013ce9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/662ef457-7de8-49ed-98e8-fbdce63523db" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eadd1b19-3217-4133-832c-8672b79566f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4ad8e4a-05f3-48d5-afc4-73c85ed0abbc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060021Z:a4ad8e4a-05f3-48d5-afc4-73c85ed0abbc" ], + "x-ms-correlation-request-id": [ "86b39d41-dab0-411c-b39f-fbc33ab1b2d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082220Z:86b39d41-dab0-411c-b39f-fbc33ab1b2d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7229AE301EE4476D8E37D37E2E718846 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:21Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B59C2235ABEF419F9DFB54F043F530B8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4189" ], + "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe/config/web\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"Microsoft.Web/sites/config\",\"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-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71/config/web\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"Microsoft.Web/sites/config\",\"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 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-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "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-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-DotNet-Isolated279k80n3oe?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Node-nihrl65d71?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "364" ], - "x-ms-client-request-id": [ "27270f34-ac28-4dd4-8631-0f7b671d0e11" ], + "x-ms-unique-id": [ "367" ], + "x-ms-client-request-id": [ "ccfded9d-0bd0-4067-a6a0-5ae7bf619602" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10006,20 +8580,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E1EA3BFFF0\"" ], + "ETag": [ "\"1DC4FBF8F398BD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed15058f-71c7-40a6-80bb-5e51695dfa1b" ], + "x-ms-request-id": [ "18f8ddb3-79ba-4882-a434-14a50729b6dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd200d7a-fe1e-4332-aefa-0f33e1cda9b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9be269f5-2415-4c7b-a241-97c18b1f6b33" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "7c4481fc-a075-439d-9197-f5e0bba2836e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060034Z:7c4481fc-a075-439d-9197-f5e0bba2836e" ], + "x-ms-correlation-request-id": [ "48762954-c11c-4f2c-b80f-9944b4b76b87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082228Z:48762954-c11c-4f2c-b80f-9944b4b76b87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 262D974A3EA54A98960B1284847F7310 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:22Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 662B23349EB540CB98119E25BF4BEDA9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10029,17 +8603,17 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$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 v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$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-Java-n63k2zl8s1\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolated5ot0916drm\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "62" ] + "Content-Length": [ "72" ] } }, "Response": { @@ -10048,18 +8622,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1eef26e9-cd9f-405e-899b-ea148714f5e4" ], + "x-ms-request-id": [ "92ce1366-c6a2-450c-bcec-3eec596f1896" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/98dc0862-9739-409c-9fc8-7bcfb97557c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/338847e4-21ff-438e-ae55-67e5083450fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecd3cc1e-a219-41fa-8c2c-7877f74a877f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060034Z:ecd3cc1e-a219-41fa-8c2c-7877f74a877f" ], + "x-ms-correlation-request-id": [ "3be66063-86ff-47de-83f0-26e144d86bdf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082228Z:3be66063-86ff-47de-83f0-26e144d86bdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8ACFF084D91D4C4DA9BFA5FB2A3C84B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6109082C680410BA5E6AF4708242BD0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -10070,19 +8644,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$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 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.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": [ "366" ], - "x-ms-client-request-id": [ "22cc5421-a49c-41d5-a248-0024afc02e4c" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "194543de-dfcc-4fd6-b839-2e5b619b3862" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10093,41 +8667,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a655c3a5-805e-4851-9896-4107bce81280" ], + "x-ms-original-request-ids": [ "bf3e48e6-6e57-4f44-95ae-e51e4313525c" ], "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": [ "7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], - "x-ms-correlation-request-id": [ "7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060035Z:7ce1d874-2a78-4b5d-bf33-928845a79e0e" ], + "x-ms-request-id": [ "64b53117-0354-44c5-8ba1-e4d5883174cd" ], + "x-ms-correlation-request-id": [ "64b53117-0354-44c5-8ba1-e4d5883174cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082229Z:64b53117-0354-44c5-8ba1-e4d5883174cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D654ADDE1C04D15998E2A464874F8FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2CF3C48F7E44045A689097BA56B08AA Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9825" ], + "Content-Length": [ "10365" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "367" ], - "x-ms-client-request-id": [ "88aea86a-c10f-4b91-a9a2-b16a84f92df7" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "18c22b81-ff7b-4041-afff-327f81656bf3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10139,40 +8713,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "451a30bd-9373-4f0e-9879-1f1da4f52b2f" ], + "x-ms-request-id": [ "46c43c2e-b1fd-4081-8af2-e5094fc229e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5279970a-f5c7-42df-aacc-2a6f72e1563b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060035Z:5279970a-f5c7-42df-aacc-2a6f72e1563b" ], + "x-ms-correlation-request-id": [ "064e5c9c-775f-48ae-aa49-51c490d519fa" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082229Z:064e5c9c-775f-48ae-aa49-51c490d519fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB25E778482941049D794C422911B37A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53A18AE602774E3485E8813BF4744FFC Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:29Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "c73bddbe-bd03-4900-bcb3-03834c5e884f" ], + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "3dca6360-c285-4de2-97c3-ab58d2efbea4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10184,124 +8758,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f4bff0d-7143-4c70-801a-d849e4128cd8" ], + "x-ms-request-id": [ "5e6a3f41-3fc6-4990-a280-7592d8d6f076" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "be4a29c9-0ff6-4475-88b0-12bbd7ab4d73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:be4a29c9-0ff6-4475-88b0-12bbd7ab4d73" ], + "x-ms-correlation-request-id": [ "66b0a0cb-1ea7-4821-b39e-bdeb266339b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082230Z:66b0a0cb-1ea7-4821-b39e-bdeb266339b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BF1E1F2A7FA4268ADA132B3E0598FC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 838D8D77E6A74694B908EE73F605E7C6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:29Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "e722addf-1346-4808-a317-9d6bdfd087db" ], + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "ce3570bb-1e63-441e-a67d-e6d31bddece4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e9607b66-592c-4026-8021-b7bb1ec52249" ], - "x-ms-correlation-request-id": [ "e9607b66-592c-4026-8021-b7bb1ec52249" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:e9607b66-592c-4026-8021-b7bb1ec52249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "de15aade-aec5-46a9-9bf5-6fa164f2e188" ], + "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": [ "37f8b75d-6eba-4edd-aa32-e87849ab6688" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082230Z:37f8b75d-6eba-4edd-aa32-e87849ab6688" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DA7BFD70FC2402584FC729C9CBD8242 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C37742501B14E008CF9E2715C304ECC Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1737" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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 Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "79d74d04-ac32-4519-933d-e352ec7553b6" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "3bb065fc-7cb4-4c0a-8041-e374cbcb4c1d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], - "x-ms-correlation-request-id": [ "1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:1dec8c74-12ab-496f-a4ed-9c2cdef74d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e01a4eb6-791f-435b-98fe-b4d932ae4c13" ], + "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": [ "9b7f23fe-e720-4fba-9065-ea0ccb503039" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082230Z:9b7f23fe-e720-4fba-9065-ea0ccb503039" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 847586392AC74EF0AFA6842E6C973E3A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76BE5DAF65D447BAAEEA5CD37779B807 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "245" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1736" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-Premium-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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 Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "c25dfe01-4fb2-47c0-b77a-e1cf2baf2c09" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "568d0a4b-a85c-4946-bdd6-5c5389612c86" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10313,40 +8893,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59809314-59ba-4cab-a139-d837af51848c" ], + "x-ms-request-id": [ "3c678e3d-7b68-417b-8a59-8ddd03e98ff1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c27aa5f-3e80-4119-94e4-2cf78d5fa550" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:9c27aa5f-3e80-4119-94e4-2cf78d5fa550" ], + "x-ms-correlation-request-id": [ "86244b0c-f3fd-4754-9d47-8604ed14a082" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082230Z:86244b0c-f3fd-4754-9d47-8604ed14a082" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 938677F9A633449F81C6D3B9777D8A83 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E2DD83C71A14333971AA7EF6E7778C1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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 Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "372" ], - "x-ms-client-request-id": [ "88fd9fe4-e75c-4d06-a476-0eadd5671c06" ], + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "ff38a672-484d-4fff-9f32-789db0286f43" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10358,40 +8938,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2fd1aaa-52d0-4e15-8546-9bcdb0bfdbf7" ], + "x-ms-request-id": [ "dfd5ff81-c947-489b-a7b0-489efb9e8263" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b45f3b0a-26be-4fea-896e-6d7495d5f1ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060036Z:b45f3b0a-26be-4fea-896e-6d7495d5f1ba" ], + "x-ms-correlation-request-id": [ "e904b901-5527-4e54-b992-724ffd4e8712" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082231Z:e904b901-5527-4e54-b992-724ffd4e8712" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6A3EC3A91A34AF2833FF2861336CFC3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F4AD08971A94C8C8298028FBF4A2D04 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 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+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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { "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": [ "373" ], - "x-ms-client-request-id": [ "9e27c5fd-bef9-415e-b67e-2fc3dd92f66b" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "6db620a5-7612-4c82-a849-7c30bf7db6cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10402,40 +8982,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f109dc61-55d3-4dbb-8a5b-ed528f60dba6" ], + "x-ms-original-request-ids": [ "1e72106b-5715-4808-b054-5c62b2eb998c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], - "x-ms-correlation-request-id": [ "c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060037Z:c85eeca2-9ea6-4149-8f1c-bff02cd68138" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "fb0cb134-5ae2-4f2b-87ed-69f11b261a19" ], + "x-ms-correlation-request-id": [ "fb0cb134-5ae2-4f2b-87ed-69f11b261a19" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082231Z:fb0cb134-5ae2-4f2b-87ed-69f11b261a19" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B901DE7FB2F4BD6A241FC99896BA2C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B566A6425C7F4F73AB1F84EB1EEBA90B Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+10": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "374" ], - "x-ms-client-request-id": [ "aa882145-66c0-4b6e-8a2d-05cfbb971bb6" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "4110c3fd-f461-4fad-9cfc-0365b6362d44" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10446,30 +9026,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f56dcb5-3a71-43ec-9f54-ce1962a81696" ], + "x-ms-request-id": [ "42dbf95d-52e1-47a3-b73b-b712da459bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/97ea5eb9-6117-412c-b7c9-e5df9ecc154d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3c6d9023-9869-4494-b161-1b5f591c0858" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4e119f7c-86da-4c3e-b597-78b93898ed0a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060037Z:4e119f7c-86da-4c3e-b597-78b93898ed0a" ], + "x-ms-correlation-request-id": [ "f20daf9f-ebdf-4ccb-952f-319c4d1b8a79" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082231Z:f20daf9f-ebdf-4ccb-952f-319c4d1b8a79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B3EC5BEB11D4F7A8DD24ECFCA6995A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9FB71999CF94E4AA902F821224218E2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?api-version=2015-05-01+11": { + "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-a7inyz/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ot0916drm?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-Java-n63k2zl8s1?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-DotNet-Isolated5ot0916drm?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": { @@ -10489,36 +9069,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/869cae5f-ac6d-4c42-9fae-92bde82274c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ddafbe6-73a4-4516-bbc3-393060a85734" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "0a2a8043-8128-499c-a2db-fc7ec82f4758" ], - "x-ms-correlation-request-id": [ "0a2a8043-8128-499c-a2db-fc7ec82f4758" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060058Z:0a2a8043-8128-499c-a2db-fc7ec82f4758" ], + "x-ms-request-id": [ "def84fbf-d097-4f41-be42-6058dc1eaee5" ], + "x-ms-correlation-request-id": [ "def84fbf-d097-4f41-be42-6058dc1eaee5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082238Z:def84fbf-d097-4f41-be42-6058dc1eaee5" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC432ABE590246708B9895AB27E02E94 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:00:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 295943F9527D42CEBA5B5EE005259F7D Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:31Z" ], + "Date": [ "Fri, 07 Nov 2025 08:22:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1624" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b607-0000-0300-0000-68e74f9a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\r\n \"name\": \"Functions-Java-n63k2zl8s1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-n63k2zl8s1\",\r\n \"AppId\": \"8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"bc1cea38-cd52-446d-a51c-1f370f52fa5b\",\r\n \"ConnectionString\": \"InstrumentationKey=bc1cea38-cd52-446d-a51c-1f370f52fa5b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\r\n \"Name\": \"Functions-Java-n63k2zl8s1\",\r\n \"CreationDate\": \"2025-10-09T06:00:38.0476754+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-n63k2zl8s1_8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-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\": \"\\\"d30389d5-0000-0300-0000-690dac4e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-DotNet-Isolated5ot0916drm\",\r\n \"name\": \"Functions-DotNet-Isolated5ot0916drm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated5ot0916drm\",\r\n \"AppId\": \"82d3a75f-48f7-4adc-94e9-f6147e42bcdc\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e58e4e9e-a8dc-413c-9295-7c2fad74707f\",\r\n \"ConnectionString\": \"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\",\r\n \"Name\": \"Functions-DotNet-Isolated5ot0916drm\",\r\n \"CreationDate\": \"2025-11-07T08:22:32.3698259+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-isolated5ot0916drm_82d3a75f-48f7-4adc-94e9-f6147e42bcdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ot0916drm-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 Java 21 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-n63k2zl8s1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true,\r\n \"javaVersion\": \"21\"\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated5ot0916drm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1767" ] + "Content-Length": [ "1797" ] } }, "Response": { @@ -10526,43 +9106,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E216CA6700\"" ], + "ETag": [ "\"1DC4FBFAECA8CD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dca6ea3b-82d9-4bd3-97ab-baa3085dd197" ], + "x-ms-request-id": [ "252651bf-e0b0-4442-8103-f67035356489" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/935124a9-c4c2-4d34-a0d5-a9a0c5cceb22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0493453-74db-4819-9bb0-359cccc31e08" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "0a39595d-11a1-4db7-b9f9-2e4602880993" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060141Z:0a39595d-11a1-4db7-b9f9-2e4602880993" ], + "x-ms-correlation-request-id": [ "6b5b43dc-6ce4-4428-8ad2-5adec60b3087" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082320Z:6b5b43dc-6ce4-4428-8ad2-5adec60b3087" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 804D741F824A4742B5106DA6164D8ADB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:00:58Z" ], - "Date": [ "Thu, 09 Oct 2025 06:01:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BBA4F76C67BB4A2CB0CC99226362B71B Ref B: MWH011020808025 Ref C: 2025-11-07T08:22:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8425" ], + "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:00.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-DotNet-Isolated5ot0916drm\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ot0916drm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"functions-dotnet-isolated5ot0916drm.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ot0916drm.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-isolated5ot0916drm.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:22:39.84\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-Isolated5ot0916drm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated5ot0916drm\\\\$Functions-DotNet-Isolated5ot0916drm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-dotnet-isolated5ot0916drm.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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01+13": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "fa04d396-dc7e-4fd5-b5d1-7b40f76eeec6" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "6aeda636-4f90-4b34-a696-232486de5200" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -10572,42 +9152,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E22E86E8F0\"" ], + "ETag": [ "\"1DC4FBFC65AF5B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7621d81c-1bde-476b-a466-9b72c5397bf9" ], + "x-ms-request-id": [ "021da6e6-a3ea-410e-86c7-e9b65411ca06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "59198078-8120-42ef-acd0-74a6cabfcfc7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:59198078-8120-42ef-acd0-74a6cabfcfc7" ], + "x-ms-correlation-request-id": [ "eee78452-08cb-4284-b549-51b569976031" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082350Z:eee78452-08cb-4284-b549-51b569976031" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A6AD2A86308418881EE022DA286BDFE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B35D65E79A3E4426BFEF87471062E740 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8292" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-DotNet-Isolated5ot0916drm\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ot0916drm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"functions-dotnet-isolated5ot0916drm.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ot0916drm.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-isolated5ot0916drm.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:23:19.947\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated5ot0916drm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated5ot0916drm\\\\$Functions-DotNet-Isolated5ot0916drm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "fe3d96b5-4d84-44b3-a264-5f84b115e3c4" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "821a5588-822e-49e8-9150-0876111cb43a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10618,42 +9198,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E22E86E8F0\"" ], + "ETag": [ "\"1DC4FBFC65AF5B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25f820dd-47d2-4674-928f-d940143a293d" ], + "x-ms-request-id": [ "7453d2f9-bdda-4c7b-8798-95d6df516e87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "366ae011-4afb-41b5-8b61-38cf79b2be8e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:366ae011-4afb-41b5-8b61-38cf79b2be8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5934d0d4-beca-4105-80a4-d2a513924531" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082351Z:5934d0d4-beca-4105-80a4-d2a513924531" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE291ED1F25D4EC98678DD6A496B34C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C15C935C78B4A10B5BDAC56936A15D3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8292" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-DotNet-Isolated5ot0916drm\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ot0916drm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"functions-dotnet-isolated5ot0916drm.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ot0916drm.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-isolated5ot0916drm.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:23:19.947\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated5ot0916drm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated5ot0916drm\\\\$Functions-DotNet-Isolated5ot0916drm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01+15": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "26cc1e53-0db2-4bd5-91e9-21dc485c48ad" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "532e6131-100f-4eac-9d4e-347a58447ded" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10665,40 +9245,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "269c0cb3-5100-42b4-867a-dcbb22ac2332" ], + "x-ms-request-id": [ "1b6662fd-613c-4420-8a1e-72edc64dedd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6a72dcd-5fb4-4053-8aa3-199bdd7d5472" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bfb19c87-5200-48c0-ab90-429b1dd54812" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a8f2d957-e2b2-4ecd-affa-f946b6dce389" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060212Z:a8f2d957-e2b2-4ecd-affa-f946b6dce389" ], + "x-ms-correlation-request-id": [ "89b7820b-448a-4a62-a558-4ef7a1f10e83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082351Z:89b7820b-448a-4a62-a558-4ef7a1f10e83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92491C8BF4844AE78405F48F0B4109DE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8467142B66AE41418FE1075D051EDF3C Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1165" ], + "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ot0916drm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01+16": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "430bff13-6c8d-4b31-b4f6-fd2bb3649e68" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "ea9d3abc-1341-46bf-8b4a-1f236466e603" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10710,41 +9290,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed48c515-e2eb-4afe-9f88-8894b6abffa1" ], + "x-ms-request-id": [ "09cb7624-0be6-4f4b-a052-3bb01b66afc6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e9a731e-04b1-4964-905e-55e18e7c3b4c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "11f02cf6-48b5-4534-9295-3589a5c41c1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060213Z:11f02cf6-48b5-4534-9295-3589a5c41c1e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33f5463c-48ce-4c64-aa30-2ec9f0344e24" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "dfffc78e-3ba7-43ee-acf5-932c326dfd8c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082351Z:dfffc78e-3ba7-43ee-acf5-932c326dfd8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99BAA7F9E67B4E4FB8685EA2845043DC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBFE060DB9924756BB35133FA77F3D98 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4164" ], + "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"21\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/web\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites/config\",\"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 Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01+17": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "ac21c170-8044-4001-b447-f7e31b8314d6" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "1045b43b-2f2e-405c-9c5c-9b844dc72597" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10756,40 +9336,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61fa440a-7793-46a1-a358-a62735e42b7f" ], + "x-ms-request-id": [ "686de889-696b-4f47-8c1c-a3b567a44728" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28fc89b8-c635-4d15-8a53-fc7e1bbe1f5f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60bfa160-f242-48b2-9c53-e10e174eef68" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b3fa7d57-c063-4025-915c-30337cf2fdd7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:b3fa7d57-c063-4025-915c-30337cf2fdd7" ], + "x-ms-correlation-request-id": [ "435f8ed1-86c9-4a11-912d-7eea3b1c7477" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082352Z:435f8ed1-86c9-4a11-912d-7eea3b1c7477" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22E47A0E7B0C4203BCBECD1786222B60 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C1CA0004DD346F899C611A4EE0315AE Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1165" ], + "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ot0916drm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "ba249218-9e10-41f6-bc43-33ba573a3fd8" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "0425402a-2e73-4c94-b6cf-dce9e365066a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10800,42 +9380,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E22E86E8F0\"" ], + "ETag": [ "\"1DC4FBFC65AF5B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e39d812-3bd3-4016-8f56-015d37438ab9" ], + "x-ms-request-id": [ "005fadfe-b009-4aca-a3a0-867f0fed28c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "78ad6e79-25f5-40ae-9a91-2a4d67b13405" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:78ad6e79-25f5-40ae-9a91-2a4d67b13405" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dcd5b64b-d30c-451b-b2d9-9993151bae80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082352Z:dcd5b64b-d30c-451b-b2d9-9993151bae80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08B4AF1CABC24F71B446DC9431B1384F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF60BD8EA3FB4E2BBCA1B93F133CF885 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8292" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-n63k2zl8s1\",\"state\":\"Running\",\"hostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-Java-n63k2zl8s1\",\"repositorySiteName\":\"Functions-Java-n63k2zl8s1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-n63k2zl8s1.azurewebsites.net\",\"functions-java-n63k2zl8s1.scm.azurewebsites.net\"],\"siteProperties\":{\"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-n63k2zl8s1.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-n63k2zl8s1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:01:40.863\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Java-n63k2zl8s1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-Java-n63k2zl8s1\\\\$Functions-Java-n63k2zl8s1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-java-n63k2zl8s1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-DotNet-Isolated5ot0916drm\",\"repositorySiteName\":\"Functions-DotNet-Isolated5ot0916drm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"functions-dotnet-isolated5ot0916drm.scm.azurewebsites.net\"],\"siteProperties\":{\"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-isolated5ot0916drm.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-isolated5ot0916drm.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:23:19.947\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-Isolated5ot0916drm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-DotNet-Isolated5ot0916drm\\\\$Functions-DotNet-Isolated5ot0916drm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-dotnet-isolated5ot0916drm.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01+19": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "20781b58-2a65-4a89-b220-9551e3354eae" ], + "x-ms-unique-id": [ "386" ], + "x-ms-client-request-id": [ "768df3f4-26ce-41f1-8ce6-fba828ff6f35" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10847,40 +9427,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ae25ca16-fe5b-4c34-ae61-3ea1c4e6efd0" ], + "x-ms-request-id": [ "8e58fe2d-0c77-4f1d-b469-276e8f3df7fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34a9cfcc-929b-483d-8a7b-417e0265cd17" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b463f5b2-329b-486a-af10-7974b8e6350f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0c54072-1f23-4819-bf69-ea1a1a5aae9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060214Z:e0c54072-1f23-4819-bf69-ea1a1a5aae9f" ], + "x-ms-correlation-request-id": [ "d4dba72d-f76c-4084-88e4-41b7d04856e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082352Z:d4dba72d-f76c-4084-88e4-41b7d04856e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0CEB2EBCE1034BF4967B85B65E27CE5E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A0F9E8C4ACA4859800609DFCBFA3877 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1165" ], + "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-n63k2zl8s1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated5ot0916drm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Java 21 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01+20": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/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-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "181eae4c-533f-4fe4-9d8d-dc345ac40e4c" ], + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "0304e948-7612-4648-8f73-efb39f9c6599" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10892,41 +9472,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba8a431c-65ab-418a-9ff5-80d0ce5df30b" ], + "x-ms-request-id": [ "b209dd23-63a6-4521-a169-08cfafb7ada7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7c8e427-2dd1-4a22-b98e-23832f7cf621" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "73dcb80d-c58e-46a8-bcbb-4debb3b04a10" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060215Z:73dcb80d-c58e-46a8-bcbb-4debb3b04a10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c28c926b-d5ba-482d-a221-822e705b3662" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "1cd1686f-dd95-4bd1-964e-72ae462650fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082353Z:1cd1686f-dd95-4bd1-964e-72ae462650fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BCD74E876994594B54F8C78CE8798AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1479C14E98A4C66AD473DA94CCCBF40 Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:23:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4164" ], + "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1/config/web\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":\"21\",\"javaContainer\":\"\",\"javaContainerVersion\":\"\",\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm/config/web\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"Microsoft.Web/sites/config\",\"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 Java 21 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-Java-n63k2zl8s1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-DotNet-Isolated5ot0916drm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "2ef36304-4c3e-4830-a906-198c9bef3007" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "088783fe-d7ce-4a73-88c7-321f3581b648" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10937,20 +9517,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E22E86E8F0\"" ], + "ETag": [ "\"1DC4FBFC65AF5B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5f3b9ea-317e-48be-8146-fbfe4388e7d7" ], + "x-ms-request-id": [ "01b0ee68-9e70-4809-8d40-fdac96d8bb18" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b364f55b-51d0-4806-9195-979b0d4aacf4" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "25c2d752-7d76-421f-ad28-a9109897c5a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060226Z:25c2d752-7d76-421f-ad28-a9109897c5a5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/296bf2ca-fd2d-40c8-a10f-de5d02e380b7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "b9bcbef0-5a4f-494c-ad4d-3686ecb3ee2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082401Z:b9bcbef0-5a4f-494c-ad4d-3686ecb3ee2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51D511DA048C4214AF8CEA1EB93E7040 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:15Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7312E7728CB14FC28259018E55A740BA Ref B: MWH011020808025 Ref C: 2025-11-07T08:23:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10964,7 +9544,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-CustomHandlerlk9q0p4fot\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandlertwp2s9of3r\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10979,18 +9559,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d174763-d367-48b5-aa3b-477225b4f2b3" ], + "x-ms-request-id": [ "ca1cae3e-0576-4b38-be1f-368282cd42b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37e22ccb-4917-43e0-bc21-b909c41d2b0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/debc4202-3a45-41ff-a583-79b45a60cf81" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1a08dbdb-ceaa-4717-882c-4c940fce490d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060227Z:1a08dbdb-ceaa-4717-882c-4c940fce490d" ], + "x-ms-correlation-request-id": [ "079ec8d5-7dd4-4e81-893f-b75d1a1bea1d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082401Z:079ec8d5-7dd4-4e81-893f-b75d1a1bea1d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5663994C21C34036828191D0F54322E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:26Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4546D88DAB0F4C25B15F307C84BC87C0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11008,12 +9588,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "bb1b6b4b-ba45-4127-8ec8-aee26794bdce" ], + "x-ms-unique-id": [ "390" ], + "x-ms-client-request-id": [ "770f3460-c7af-409e-b219-20ff1473c9d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11024,41 +9604,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "982eddd1-7a24-4907-b129-80ccaceba7c2" ], + "x-ms-original-request-ids": [ "7f3bac49-bf3e-4f9e-a21a-f983e0bb8fbf" ], "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": [ "384f1907-66a7-410c-8612-fce226dd68ec" ], - "x-ms-correlation-request-id": [ "384f1907-66a7-410c-8612-fce226dd68ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060227Z:384f1907-66a7-410c-8612-fce226dd68ec" ], + "x-ms-request-id": [ "510dc17c-6ab2-46ef-8ee5-42b3851f089f" ], + "x-ms-correlation-request-id": [ "510dc17c-6ab2-46ef-8ee5-42b3851f089f" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082402Z:510dc17c-6ab2-46ef-8ee5-42b3851f089f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 093C3B0D4E184372B8D259F02B24AD4C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42267CBD408A4DC7AEBEDED84FB57BD6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9825" ], + "Content-Length": [ "10365" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "dc83fc05-7b90-49af-8d0a-294b30b4499e" ], + "x-ms-unique-id": [ "391" ], + "x-ms-client-request-id": [ "bc7f3a88-685f-4083-a512-4af4a088053c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11070,40 +9650,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8569b5ff-987e-4a59-83a0-e03c089cc4b8" ], + "x-ms-request-id": [ "e5a04934-5d1a-495b-b1f9-37d3437c74c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00809437-04b9-4568-a957-9ff44be53571" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060228Z:00809437-04b9-4568-a957-9ff44be53571" ], + "x-ms-correlation-request-id": [ "bfdffbc7-539b-411f-b762-d0bbe9e46ae7" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082402Z:bfdffbc7-539b-411f-b762-d0bbe9e46ae7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AAED9398EFF4CA2924EA1CCF2539905 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C2B8668ACDEA4F158624C9B7115A7BA5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "1b00431c-7a15-4d5b-8377-a0865a756f98" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "e26bf2b1-5a8a-419c-921f-c1ed346cc913" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11115,124 +9695,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba24309b-5597-496a-a81d-ca3294e5425f" ], + "x-ms-request-id": [ "3734f65c-b489-40c2-bf2b-ed762c727a61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b95b69a-2e1d-4e6d-b5b0-abb9bbcf8c9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:6b95b69a-2e1d-4e6d-b5b0-abb9bbcf8c9a" ], + "x-ms-correlation-request-id": [ "798fc294-8747-422f-8c5f-a1630e121245" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082402Z:798fc294-8747-422f-8c5f-a1630e121245" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BAB3D9EAF2E466593D597B21941DD65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A5F4F5352D6490188CF609BA2668238 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "390" ], - "x-ms-client-request-id": [ "5157bfb1-ad2b-4a33-a299-30bc5fc0275f" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "367cde3a-d013-4736-b1b7-b452c61ba2a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "48327488-62fc-4de6-86ee-ab422488f8c0" ], - "x-ms-correlation-request-id": [ "48327488-62fc-4de6-86ee-ab422488f8c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:48327488-62fc-4de6-86ee-ab422488f8c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "07c239e0-7cab-4caa-bd1f-4b46fe7ebf20" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3afd7dc9-59e2-4bfd-8806-a555d320aea4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082403Z:3afd7dc9-59e2-4bfd-8806-a555d320aea4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0E2B0AF254C45D6BB5E5B46FDF2B929 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E87B2E8CFCF34BD4867B456911E5979A Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1737" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "391" ], - "x-ms-client-request-id": [ "61500c78-0522-4e8c-99c1-a46175e1e341" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "004cc547-d3b7-474e-90ce-702dc88332f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9519e2c1-84d2-4025-b302-7075685072ba" ], - "x-ms-correlation-request-id": [ "9519e2c1-84d2-4025-b302-7075685072ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060228Z:9519e2c1-84d2-4025-b302-7075685072ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bc2e9487-6312-4f4a-9bd7-1e047f76f8da" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a59598f7-a458-419c-b66b-da7de69ae5eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082403Z:a59598f7-a458-419c-b66b-da7de69ae5eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B3D280E751246DBAF21D22989DDA65A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A250C66866749ECA8652BA01B66DBF2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "245" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1736" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1qr\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "392" ], - "x-ms-client-request-id": [ "624a443f-aee8-409e-826f-dac6d59a4c62" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "a8a1aee5-2524-4fbc-8c0c-ef749e54f2d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11244,40 +9830,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "699c5fb2-b011-4236-8821-e30950b0884c" ], + "x-ms-request-id": [ "9ac32ccb-73d0-459a-8358-78e2cd166a9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "211d178a-f993-4c7a-ba12-d3c3c6259661" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:211d178a-f993-4c7a-ba12-d3c3c6259661" ], + "x-ms-correlation-request-id": [ "25923576-453f-4535-a244-b429ab5d3d69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082403Z:25923576-453f-4535-a244-b429ab5d3d69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C743C47B41FE4768AF2DC1E0B813CBDE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EE06C21F4E84902B52D1BCFE52A0DF5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "355b41fe-9c5c-4bdd-9b8c-6576121d91d3" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "dabb221a-8971-43d0-909e-8de4e5ead9a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11289,24 +9875,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d35c003d-03b5-4550-979d-9d0c881ea4fd" ], + "x-ms-request-id": [ "b82dbe6d-12a9-47e6-b898-a364054a430e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49ca6b78-955f-413a-ba9c-6b56ebd8185d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:49ca6b78-955f-413a-ba9c-6b56ebd8185d" ], + "x-ms-correlation-request-id": [ "53123b6f-9892-441d-aed3-4f40eee9de7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082404Z:53123b6f-9892-441d-aed3-4f40eee9de7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C76A97275674D7FBE46F9EF21A9AF71 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FDCEC4A4E5E542CB93D5218CD61E5C5C Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -11317,12 +9903,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "7cc0074f-1a09-4661-ab32-031aa41d613c" ], + "x-ms-unique-id": [ "397" ], + "x-ms-client-request-id": [ "ed8979c3-2650-4796-a1c7-a5e1eda1bf2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11333,40 +9919,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d89f9793-1052-4979-af39-6d3b5e8755a4" ], + "x-ms-original-request-ids": [ "29f4377f-e6cf-49aa-9625-932d3624ab17" ], "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": [ "ccc94a11-f070-4020-8a78-1c6516212de2" ], - "x-ms-correlation-request-id": [ "ccc94a11-f070-4020-8a78-1c6516212de2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060229Z:ccc94a11-f070-4020-8a78-1c6516212de2" ], + "x-ms-request-id": [ "4737b204-d4e0-43ac-9c5c-2d4af9deb845" ], + "x-ms-correlation-request-id": [ "4737b204-d4e0-43ac-9c5c-2d4af9deb845" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082404Z:4737b204-d4e0-43ac-9c5c-2d4af9deb845" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 84411A53750C4979B436836369DC836A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CFB005618014020BA35D3516D9BC378 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+10": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "4762faef-c22d-4e72-95cf-0892125e82d5" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "9e69d113-20d2-4ff6-a768-a7d62a731212" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11377,30 +9963,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "17d7c3ea-2326-40eb-b814-3f45fb8e174d" ], + "x-ms-request-id": [ "85ee4b3b-d669-4a4b-9c96-a10584738040" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/88212e22-bfcf-4a95-8f2c-b3980bc28079" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/90896e5c-82f7-4cff-ab89-c82bac799ea6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b2526722-cb7d-408f-99f5-912eb0b772f1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060230Z:b2526722-cb7d-408f-99f5-912eb0b772f1" ], + "x-ms-correlation-request-id": [ "776994e6-8bcc-4ab7-88f4-38cc2b850d2b" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082404Z:776994e6-8bcc-4ab7-88f4-38cc2b850d2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 211EB107E30E48A88370D19CDFDF3631 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29A3F54BBAB844B68419C4CF61008BB8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Functions-CustomHandlerlk9q0p4fot?api-version=2015-05-01+11": { + "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-a7inyz/providers/Microsoft.Insights/components/Functions-CustomHandlertwp2s9of3r?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Functions-CustomHandlerlk9q0p4fot?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Functions-CustomHandlertwp2s9of3r?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": { @@ -11420,36 +10006,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/97be21c9-9b5c-4cab-8e8f-78f9ece0aeb9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "0e7823f4-8558-4834-977b-1ec56632d079" ], - "x-ms-correlation-request-id": [ "0e7823f4-8558-4834-977b-1ec56632d079" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060251Z:0e7823f4-8558-4834-977b-1ec56632d079" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb57526a-e5aa-485d-be2b-a54f788688f0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "ddc8b18c-b27f-46d7-b808-9d2bfe29587e" ], + "x-ms-correlation-request-id": [ "ddc8b18c-b27f-46d7-b808-9d2bfe29587e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082409Z:ddc8b18c-b27f-46d7-b808-9d2bfe29587e" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00C17BA6985A4ABE98DFD2699884E364 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:02:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08A6A318B71345B7AB40759731FA6454 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00390f-0000-0300-0000-68e7500b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-CustomHandlerlk9q0p4fot\",\r\n \"name\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"AppId\": \"2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a531e3e0-7484-48ea-8dfd-ef86644583c4\",\r\n \"ConnectionString\": \"InstrumentationKey=a531e3e0-7484-48ea-8dfd-ef86644583c4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\r\n \"Name\": \"Functions-CustomHandlerlk9q0p4fot\",\r\n \"CreationDate\": \"2025-10-09T06:02:30.7826567+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-customhandlerlk9q0p4fot_2365ecb6-a03a-4d03-9da0-f7f040fed90c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerlk9q0p4fot-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\": \"\\\"d30395ef-0000-0300-0000-690daca90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-CustomHandlertwp2s9of3r\",\r\n \"name\": \"Functions-CustomHandlertwp2s9of3r\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlertwp2s9of3r\",\r\n \"AppId\": \"f333304f-b6e9-464d-8d22-5825ff2b08c3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e55d0175-3bd7-4da4-a008-25e7860a0743\",\r\n \"ConnectionString\": \"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\",\r\n \"Name\": \"Functions-CustomHandlertwp2s9of3r\",\r\n \"CreationDate\": \"2025-11-07T08:24:05.2663109+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-customhandlertwp2s9of3r_f333304f-b6e9-464d-8d22-5825ff2b08c3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlertwp2s9of3r-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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlerlk9q0p4fot\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a531e3e0-7484-48ea-8dfd-ef86644583c4\"\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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlertwp2s9of3r\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1749" ] + "Content-Length": [ "1677" ] } }, "Response": { @@ -11457,43 +10043,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E25AB24870\"" ], + "ETag": [ "\"1DC4FBFE4F8CA10\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81678942-700f-4e83-ad28-cd6349588852" ], + "x-ms-request-id": [ "ba645508-48bb-44fd-b1a6-237e117c1b57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3e10ad0-88f7-4328-bb28-fa6f3fec1302" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03a467e5-c8df-4c65-a312-1ea154982c3d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "8ffb37cd-3d44-4195-877a-a0748279dfbe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060336Z:8ffb37cd-3d44-4195-877a-a0748279dfbe" ], + "x-ms-correlation-request-id": [ "112cb04d-03cf-4737-9aa7-f8d224573f91" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082450Z:112cb04d-03cf-4737-9aa7-f8d224573f91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BCEACDD7DF943F99D9F27DAEC430B86 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:02:51Z" ], - "Date": [ "Thu, 09 Oct 2025 06:03:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B74A8072450A45039F3C42BFA8BECEA0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:24:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:24:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8538" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:02:54.203\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-CustomHandlertwp2s9of3r\",\"repositorySiteName\":\"Functions-CustomHandlertwp2s9of3r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"functions-customhandlertwp2s9of3r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlertwp2s9of3r.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:24:10.813\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-CustomHandlertwp2s9of3r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlertwp2s9of3r\\\\$Functions-CustomHandlertwp2s9of3r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-customhandlertwp2s9of3r.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01+13": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "c93171be-00bb-44da-be2b-b7b25008fc3f" ], + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "e68cc6fc-05d7-4a6c-8fa8-fe79aea73394" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -11503,42 +10089,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E27325E560\"" ], + "ETag": [ "\"1DC4FBFFC627110\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acb04ad5-bd23-42c1-917b-628a800c2b2d" ], + "x-ms-request-id": [ "a4f801c0-4ca7-46fb-a08b-8ad15bee2e92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9772f79e-03fb-41a6-a3fb-02c6a513e4cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:9772f79e-03fb-41a6-a3fb-02c6a513e4cc" ], + "x-ms-correlation-request-id": [ "11f66575-317b-40b1-833a-c4d77cbe9644" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082521Z:11f66575-317b-40b1-833a-c4d77cbe9644" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B0516BDBE2884AF7B6477BB86484728C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3065425BE93C4B5B85695C8A9E67B21D Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8403" ], + "Content-Length": [ "8512" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-CustomHandlertwp2s9of3r\",\"repositorySiteName\":\"Functions-CustomHandlertwp2s9of3r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"functions-customhandlertwp2s9of3r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlertwp2s9of3r.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:24:50.593\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlertwp2s9of3r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlertwp2s9of3r\\\\$Functions-CustomHandlertwp2s9of3r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "f2745c89-22d3-435e-ab4d-f9074e84e169" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "f0a4ef95-d9e9-4b4c-82be-66a75a3502f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11549,42 +10135,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E27325E560\"" ], + "ETag": [ "\"1DC4FBFFC627110\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70323555-b94d-4296-b30e-e0af6211a4e1" ], + "x-ms-request-id": [ "20256b3d-af7e-4c0a-a5b1-5928edd20f89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b52792b-8b04-48ed-be22-fa980a831962" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:9b52792b-8b04-48ed-be22-fa980a831962" ], + "x-ms-correlation-request-id": [ "c0c13645-d294-4e7c-97f1-b42f90dafb75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082521Z:c0c13645-d294-4e7c-97f1-b42f90dafb75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A1D4C23F47C4AE2A93AA86F4F53F3AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7A96DA51FE34AAFA5DB5D431CEDCF74 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8403" ], + "Content-Length": [ "8512" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-CustomHandlertwp2s9of3r\",\"repositorySiteName\":\"Functions-CustomHandlertwp2s9of3r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"functions-customhandlertwp2s9of3r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlertwp2s9of3r.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:24:50.593\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlertwp2s9of3r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlertwp2s9of3r\\\\$Functions-CustomHandlertwp2s9of3r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01+15": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "54857829-5b47-4ee9-a083-fe460f410567" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "00d27b6c-90da-495b-baa2-b80fc971b2cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11596,40 +10182,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6cbfb769-ee4a-4316-b0bf-e0aef66df8f3" ], + "x-ms-request-id": [ "61368c8c-f867-4184-892e-6995fef00750" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbb9a501-7f5f-44f7-ba9a-6cf5c4e56604" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e96e2aaf-e0ec-4a7d-b618-a833f4e8ab29" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "516b8c01-6ee7-45d8-bbe4-6a9dee1c4a89" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060407Z:516b8c01-6ee7-45d8-bbe4-6a9dee1c4a89" ], + "x-ms-correlation-request-id": [ "5156ae20-9ea3-4964-82c3-a759a0d2e3c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082522Z:5156ae20-9ea3-4964-82c3-a759a0d2e3c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A782EB8CA3F5455593678BD5D7EB090D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75C3691EF23743C589DE7381F5844C5B Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlertwp2s9of3r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "401" ], - "x-ms-client-request-id": [ "3cd893ab-ddc9-4aee-b4d8-c76d1c06269c" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "cc881f87-398f-41b1-8fc1-4c8022a8b46d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11641,41 +10227,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90d9c5a9-a6d8-4f7b-a517-f7180ea38e71" ], + "x-ms-request-id": [ "d75c1b15-27b7-490e-938e-362b12a36423" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2aacd55-d380-4a63-86f5-034807206560" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c95045c9-3062-4951-b4d7-10b3065c20af" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bc193858-57c4-4124-bf06-6454075acdb0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:bc193858-57c4-4124-bf06-6454075acdb0" ], + "x-ms-correlation-request-id": [ "995dcdc6-27ce-4a80-874a-6fd46e39d26b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082522Z:995dcdc6-27ce-4a80-874a-6fd46e39d26b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54505C3E6495404D9441F5F6177B6F19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6F0D1969FB4402C92DC90B810AECC44 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/web\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "5015a9e8-aa89-4f7f-a325-0e1865e317bf" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "ea99a45e-43a3-473f-85b5-87b7e1370e5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11687,40 +10273,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc93297c-f67f-41ca-9bc0-ff0ed7625eaa" ], + "x-ms-request-id": [ "659e9d4f-d416-494b-8f98-12c367a5b331" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e40df77-9fec-4f33-8742-668102037948" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20c6a99e-9d94-41dd-acc2-248e8ce57b74" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "abd0f576-bb1e-4500-b4ff-18e54b30735c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:abd0f576-bb1e-4500-b4ff-18e54b30735c" ], + "x-ms-correlation-request-id": [ "299d5ad8-8ec6-475f-947f-b4e89014ce7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082522Z:299d5ad8-8ec6-475f-947f-b4e89014ce7e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26FC105B42944B12AB8DA063E8C106CE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEC46FC6B87F4A7294C59E8D4EAD7783 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlertwp2s9of3r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "403" ], - "x-ms-client-request-id": [ "9114c02e-0c0a-434f-9c7c-7c35c9968bf2" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "58b72286-601d-4cb5-8595-a7190f8043fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11731,42 +10317,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E27325E560\"" ], + "ETag": [ "\"1DC4FBFFC627110\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22d52b1f-05eb-48bb-a9d3-a0c92016e88e" ], + "x-ms-request-id": [ "0bfa588d-86ae-43f2-b77c-071f66179004" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "73d15d2f-0190-42dd-ac34-bc51f4149c56" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060408Z:73d15d2f-0190-42dd-ac34-bc51f4149c56" ], + "x-ms-correlation-request-id": [ "5d4f51e8-f843-4c77-8144-49eda7ea839e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082523Z:5d4f51e8-f843-4c77-8144-49eda7ea839e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2815BCA553D42AEA7B8856BC42E30C7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:08Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A483FEA0691436DA7CBCE828905C261 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8403" ], + "Content-Length": [ "8512" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-CustomHandlerlk9q0p4fot\",\"repositorySiteName\":\"Functions-CustomHandlerlk9q0p4fot\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"functions-customhandlerlk9q0p4fot.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlerlk9q0p4fot.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:03:35.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlerlk9q0p4fot\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlerlk9q0p4fot\\\\$Functions-CustomHandlerlk9q0p4fot\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-customhandlerlk9q0p4fot.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-CustomHandlertwp2s9of3r\",\"repositorySiteName\":\"Functions-CustomHandlertwp2s9of3r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"functions-customhandlertwp2s9of3r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlertwp2s9of3r.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:24:50.593\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-CustomHandlertwp2s9of3r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-CustomHandlertwp2s9of3r\\\\$Functions-CustomHandlertwp2s9of3r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-customhandlertwp2s9of3r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "404" ], - "x-ms-client-request-id": [ "59307494-66c7-4a95-a91d-acaa850d7754" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "cfa458ef-983a-47fd-b708-0598d6945278" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11778,40 +10364,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d4cb4cf-66a8-4680-9ea7-df4a727ac39f" ], + "x-ms-request-id": [ "86e5addc-2986-442a-8840-2e2bec5a4120" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3a4d695-3a05-4958-8893-19fa553a8614" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf14c1b3-6b3e-4056-a1e9-7960998a526c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1eb758e2-693e-4e5f-a193-844dfd933785" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060409Z:1eb758e2-693e-4e5f-a193-844dfd933785" ], + "x-ms-correlation-request-id": [ "41837146-2317-426b-8995-e36f6dd210b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082523Z:41837146-2317-426b-8995-e36f6dd210b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD333B2F355549ABB8330537DA0DA6E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0ACEC7491E54FC399D27C4E03C3EA3C Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1183" ], + "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlerlk9q0p4fot\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlertwp2s9of3r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/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-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "0311286b-2af1-422a-9ac0-e4e6b6668335" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "d0183271-4491-47f8-8e52-0487c631f8dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11823,41 +10409,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "631534a4-35e2-467b-a76c-375b17055c68" ], + "x-ms-request-id": [ "d2ee7536-fc98-4d7f-9442-7b6cca9eaf8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e4c018d-4047-43cf-9cef-93562fae54c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4d36fa2-9d8c-486b-b514-5c94f1b4501e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0eafdfd9-8161-4c14-aefd-96564fde259d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060409Z:0eafdfd9-8161-4c14-aefd-96564fde259d" ], + "x-ms-correlation-request-id": [ "64fcb50e-6a56-4f79-bf10-9499247356ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082523Z:64fcb50e-6a56-4f79-bf10-9499247356ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8285608269CC4558892E1DCC94EAB32A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D544804622EA412191D97B15CF20B9A6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot/config/web\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r/config/web\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"Microsoft.Web/sites/config\",\"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.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { + "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-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+21": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-CustomHandlerlk9q0p4fot?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-CustomHandlertwp2s9of3r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "b11ca712-aa46-4eed-905e-ab2ac0e706ce" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "ae10d577-d1fd-4d29-bd7c-13bb0e972971" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11868,20 +10454,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E27325E560\"" ], + "ETag": [ "\"1DC4FBFFC627110\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42d9be4e-809d-44a8-8a21-a72d8596f041" ], + "x-ms-request-id": [ "9eccd3f3-0f5c-4165-af90-1b132925a0c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a8b1a67-473c-4286-a7b1-6cd848e74aff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3e88383-c3d7-4210-acfd-35ff16e5adc3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "52bcb380-1a6d-4cbc-9a9a-3c37834cddd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060422Z:52bcb380-1a6d-4cbc-9a9a-3c37834cddd0" ], + "x-ms-correlation-request-id": [ "93377be3-09a7-40fd-8db4-b941178c693d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082535Z:93377be3-09a7-40fd-8db4-b941178c693d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AF88DA639704B67A1A1912ED35EFA6D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A03D47C11254D82BCAA07314BB6ACC6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11895,7 +10481,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11910,18 +10496,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6015cab1-c58d-46d2-b5a8-ba15b890bb51" ], + "x-ms-request-id": [ "ff970309-e01c-4c2a-b63d-7aa3ff5f4592" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/175623a3-bf4a-46e2-af23-b1cbd661d5fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f8283e21-faa4-4a1b-aa8a-3e010bdb2e5b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "11903d7a-4fc1-4ec3-8462-367ad9b89e30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060423Z:11903d7a-4fc1-4ec3-8462-367ad9b89e30" ], + "x-ms-correlation-request-id": [ "cd3ddcd9-a9dd-4b04-8c89-8ddd86137f4e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082535Z:cd3ddcd9-a9dd-4b04-8c89-8ddd86137f4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5693812AB4084E80A778C7490D76F309 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:23Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3052E402D42242B8A67D573B4DA85E9C Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11936,7 +10522,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-4xrbthc6ij\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwq3uydkht\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11951,18 +10537,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef2e4189-760b-451f-8ba2-f5d53abeba25" ], + "x-ms-request-id": [ "06e411ab-6999-425b-aa09-d87918579939" ], "X-AspNet-Version": [ "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/9e6d99a7-4404-4c2b-819c-64e781b5b5d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9d23b0ce-585f-40e8-ab99-5d8388325f9a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d2740ea-6f35-4e2e-9119-47415a66055e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060424Z:0d2740ea-6f35-4e2e-9119-47415a66055e" ], + "x-ms-correlation-request-id": [ "2cef84fa-9abe-4d4d-b761-8334894fb5be" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082536Z:2cef84fa-9abe-4d4d-b761-8334894fb5be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C99D3A4D2AA457E9DD0FAFAB873816D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:23Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7096B156E66E4248BB4BB26FBEB6FE09 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:35 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 e3d50b2adffe..27d238de1562 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": [ "409" ], - "x-ms-client-request-id": [ "d66d51d0-fd18-42ee-b492-13d88c7e5a9e" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "fc2f77fe-3af7-4ca1-a4c6-d8235434d5a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "5f93c225-ee64-433b-9ecc-dd8546876593" ], + "x-ms-request-id": [ "bdd45afe-67cb-406f-8a42-515450b90792" ], "X-AspNet-Version": [ "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/e39d10a0-2d9f-4ba3-b449-be7eaa943b5c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b0cf9e22-bcad-4768-ae61-c3928b133140" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "755edafa-7969-4fcc-8670-7859cc537786" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060425Z:755edafa-7969-4fcc-8670-7859cc537786" ], + "x-ms-correlation-request-id": [ "ebcb9e2c-4b32-40f6-8f04-9419d91e41fc" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082536Z:ebcb9e2c-4b32-40f6-8f04-9419d91e41fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE60719CA12E4886B2817C103B5DC56B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C9CA07F5BFF4D4EB40BE0E401B6EEEE Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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": [ "\"1DC38E2922EB090\"" ], + "ETag": [ "\"1DC4FC0192BFAA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5556b0f3-4644-4da9-a52f-1783141782cd" ], + "x-ms-request-id": [ "80d918fb-001d-4194-95a7-ac6924850012" ], "X-AspNet-Version": [ "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/9e698e32-531f-425b-8560-72135ace2275" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/285bcfcd-ae72-4fb1-bebb-f808a9ffe553" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "14b41c80-89d9-4a57-964c-4ed9bedc6e36" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060429Z:14b41c80-89d9-4a57-964c-4ed9bedc6e36" ], + "x-ms-correlation-request-id": [ "92252d0d-51c7-4a58-957a-52bcb3297aa2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082540Z:92252d0d-51c7-4a58-957a-52bcb3297aa2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2115299D14134730AD0A27DBFA1140A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D40C7633AB94F5DB0D53AD7D14E23A0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:25:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:25:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1801" ], + "Content-Length": [ "1892" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc\",\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":53452,\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53452\",\"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-07T08:25:38.333\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "824fef4d-20e0-40ae-b2ad-5943ba1c8fd7" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "e08d417a-391c-422d-880a-311de3a6cdb8" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e0557f1-513e-4846-9a91-2245768b1f24" ], + "x-ms-request-id": [ "53aeed71-87f5-450d-bf08-fe7e6a984357" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e39e513-2a42-42cf-b45c-7b689beaff34" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060459Z:5e39e513-2a42-42cf-b45c-7b689beaff34" ], + "x-ms-correlation-request-id": [ "6798d399-5b0f-458c-9b8b-c21a314fd4be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082611Z:6798d399-5b0f-458c-9b8b-c21a314fd4be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E97EF9FDA75472F9C398E7B812D196C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:04:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B84CE6516DD4DF5B4D25A93A2AAF7B1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1712" ], + "Content-Length": [ "1803" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc\",\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53452,\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53452\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:25:38.333\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "824fef4d-20e0-40ae-b2ad-5943ba1c8fd7" ], + "x-ms-unique-id": [ "415" ], + "x-ms-client-request-id": [ "e08d417a-391c-422d-880a-311de3a6cdb8" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a5514ed-e8b6-427c-9d3b-eaf362467a2b" ], + "x-ms-request-id": [ "16caa767-14dd-4fac-9dc8-6ccd0ed48c6f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0cae6667-6c7f-4d79-b385-7da2386fb074" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060500Z:0cae6667-6c7f-4d79-b385-7da2386fb074" ], + "x-ms-correlation-request-id": [ "e7873297-a278-4866-ad1a-4912dfb78ac0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082611Z:e7873297-a278-4866-ad1a-4912dfb78ac0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3998ED0FC6A3487B86CD25D8647A58CB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], - "Date": [ "Thu, 09 Oct 2025 06:04:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3CE3AAF936154FF6953FD1D5771DC3A7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1712" ], + "Content-Length": [ "1803" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc\",\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53452,\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53452\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:25:38.333\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "1b505d25-c04e-4a01-93fa-3051db5b3d83" ], + "x-ms-unique-id": [ "416" ], + "x-ms-client-request-id": [ "125f9f62-0cbe-4665-8175-738148d04909" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c87825ec-3c76-4f4f-bdaa-d305050d4c1f" ], + "x-ms-request-id": [ "e2bccb90-6a44-45c6-b5f4-befc5f3685ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aaca93a6-9424-4012-adf8-de9832b2e803" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060500Z:aaca93a6-9424-4012-adf8-de9832b2e803" ], + "x-ms-correlation-request-id": [ "bb85b73c-3a12-4c48-9941-865df9e755df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082611Z:bb85b73c-3a12-4c48-9941-865df9e755df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C52F69EEF6B4922AE68A5C4E6EE8109 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEB75642550648CE8D0231A3AA1AEB55 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1712" ], + "Content-Length": [ "1803" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc\",\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53452,\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53452\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:25:38.333\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "414" ], - "x-ms-client-request-id": [ "073f2b9f-175a-4674-9ab2-8f324073d6fd" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "afb0b1fc-ea05-4660-910e-046c113f6784" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "4743abb2-b6b5-4d1e-b812-0d6b29c846f0" ], + "x-ms-request-id": [ "bbe40add-0c20-4930-a501-1675c1e7bb5e" ], "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": [ "d389fd47-b4ee-42ab-bed2-467e68997a3c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060501Z:d389fd47-b4ee-42ab-bed2-467e68997a3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62aace9c-a482-4965-9df2-7ea1fc086bc3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082612Z:62aace9c-a482-4965-9df2-7ea1fc086bc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCE2AEF0F8814253BD0D11D32C4E5CB7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:00Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8AF9221811447589D4162CD036058A9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1712" ], + "Content-Length": [ "1803" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr\",\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52683,\"name\":\"Functions-MyPlan-63e1nwqpyr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52683\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:04:26.86\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc\",\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53452,\"name\":\"Functions-MyPlan-ubt70dlsjc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53452\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:25:38.333\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyPlan-63e1nwqpyr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyPlan-ubt70dlsjc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "415" ], - "x-ms-client-request-id": [ "1d99ac5c-dd94-4fb5-be71-8d50eeebfa10" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "b2f29d98-576a-403d-b4f0-a55889889ae5" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f8c472ef-31ba-453e-bd57-953523e46462" ], + "x-ms-request-id": [ "6d287c42-03d5-4ac6-8c17-2ba34597eded" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70afb00d-f2ba-43a6-9f48-6073df3eff0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6f411d3-0e91-4c87-894e-530c825bb9cc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "65269349-c216-434f-add5-1d52da913a4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060510Z:65269349-c216-434f-add5-1d52da913a4d" ], + "x-ms-correlation-request-id": [ "940e6937-a0fd-4fd4-b699-7557420ff517" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082621Z:940e6937-a0fd-4fd4-b699-7557420ff517" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D7CA33CC7424639AA418EEF2A4381D0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:01Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8219E529F944675980AED54A20271CB Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:20 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 b1ca0bc9b13e..896e245bfed6 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-mj4vdfk5w1\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-c8srqjgdz9\",\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": [ "fc35ec4f-1b52-4041-8fd4-b2fd8294a4bd" ], + "x-ms-request-id": [ "ded6d3da-130d-4148-8183-b7f11190f147" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddf3d61d-db09-4215-9125-bbb32116b168" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2f359c0-65cd-4de6-8317-32358fcd44d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a9162740-cd9a-493a-affa-6be2a0f209cd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060511Z:a9162740-cd9a-493a-affa-6be2a0f209cd" ], + "x-ms-correlation-request-id": [ "47ed0987-e8d0-4583-ad0e-1a6787bd4825" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082621Z:47ed0987-e8d0-4583-ad0e-1a6787bd4825" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D696C67B247B4192A22007E85840443B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3B2153D22F341429E6E420A6976C6EB Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "417" ], - "x-ms-client-request-id": [ "8aa8a6aa-0a48-40b5-b79e-951d92be1603" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "47b5455c-0b57-4eb7-ac4b-0c986d1909db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,41 +63,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d1d0c89e-32e1-497e-acb8-ba539b757dce" ], + "x-ms-original-request-ids": [ "d8cbf57f-8dcc-40fe-b54f-644756f1de63" ], "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": [ "4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], - "x-ms-correlation-request-id": [ "4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060512Z:4c91ac94-694e-43d6-b85a-fe232db4a5ad" ], + "x-ms-request-id": [ "eaddfb12-70f6-458c-91b0-a70a378bc41e" ], + "x-ms-correlation-request-id": [ "eaddfb12-70f6-458c-91b0-a70a378bc41e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082622Z:eaddfb12-70f6-458c-91b0-a70a378bc41e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 419E5A076BC347CC91174D5499975122 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6BF44AB62B8649DA83891D5EA536F93D Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11421" ], + "Content-Length": [ "12057" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492506,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "053ea437-9a47-4312-9adb-df7f10bd8dd3" ], + "x-ms-unique-id": [ "421" ], + "x-ms-client-request-id": [ "1cd61e13-6a7d-48b6-9b21-551d4e579f30" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -109,40 +109,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f79aacd-8c90-4093-b4bd-329311856d7c" ], + "x-ms-request-id": [ "9a6e984b-40cd-4502-bd9e-d6817c06d23b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "608e6ff9-b4ae-4f3d-b848-cac77cad479b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060512Z:608e6ff9-b4ae-4f3d-b848-cac77cad479b" ], + "x-ms-correlation-request-id": [ "0c404ca9-a136-4919-ae3b-839a5f0829fe" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082622Z:0c404ca9-a136-4919-ae3b-839a5f0829fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC360238157B488ABAC18511D1F77A7C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10E039EE190145AEAA2D48DE823440BD Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "c67ade3f-27d9-435b-9fbf-aba5983bf778" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "00beaaa7-6390-4a96-9d48-3a6ddadf0c68" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -154,124 +154,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acd62b20-47ac-4184-a77b-f20da75b6a51" ], + "x-ms-request-id": [ "f79f1dc4-0d0f-4eda-802e-89c30afeed09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3d60496c-1816-4e32-9a38-aed3711b8756" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:3d60496c-1816-4e32-9a38-aed3711b8756" ], + "x-ms-correlation-request-id": [ "d55d644d-9221-4f41-b7b8-735b3533e511" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082622Z:d55d644d-9221-4f41-b7b8-735b3533e511" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4C4B2AF38FC40008CFC107C157DF741 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C80F6BB81E6F48CB9D01811E9EE3629B Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?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-pxiydk/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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "cc859341-5559-47d5-92c3-da0448ef0bea" ], + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "8a8d99ea-ba5b-4da4-b7ba-896ecc9f7076" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9b47fbc2-069b-434c-b605-c82b2f85a38c" ], - "x-ms-correlation-request-id": [ "9b47fbc2-069b-434c-b605-c82b2f85a38c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:9b47fbc2-069b-434c-b605-c82b2f85a38c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "fc8cdd0e-6ae4-4c9d-b784-8f6adeb3386e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "61a957bb-4dda-4127-80fc-71e2139193af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082623Z:61a957bb-4dda-4127-80fc-71e2139193af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08E3509E0B2546168A1B68974F25EC7E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 400CC21B1F604ACB8F681ED61674D453 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "247" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1749" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78829,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:24:41.26\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "99920ba9-1b9b-4367-b750-11990960c0d7" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "f97f7206-75bd-4665-b6b7-95fd38af292d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], - "x-ms-correlation-request-id": [ "2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060512Z:2923d08f-fdb1-4b9b-899d-99b3baa9c87c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "53b755d4-3373-42f3-8c6b-3facff702691" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "836fe22e-03bf-4f14-92c0-c38eb11b3267" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082623Z:836fe22e-03bf-4f14-92c0-c38eb11b3267" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA4C62EC8EA34E2396184707A3E34AF6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 720BDB6632A14107AB89E958274AA6CD Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1737" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "d6ca5aab-a1fa-44d9-8b10-238912379a9e" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "d43513ba-3bf1-46ef-9412-e94404ca957f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -283,40 +289,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f68215f-b666-4613-b826-a41d8d5d6a27" ], + "x-ms-request-id": [ "965ae3fd-beb5-4b33-9afb-b9bd2dd1f44e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92037b83-f280-4216-a522-237c5c46f509" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060513Z:92037b83-f280-4216-a522-237c5c46f509" ], + "x-ms-correlation-request-id": [ "83ca4ae5-d337-44fb-bf41-52a4d1e21c33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082623Z:83ca4ae5-d337-44fb-bf41-52a4d1e21c33" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7FC2428314B4069B2174E467C469B99 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B4911E85E2E475F9B5CBFD496A0CCE5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1647" ], + "Content-Length": [ "1736" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "423" ], - "x-ms-client-request-id": [ "99e371e2-1224-47e2-978f-a742fdf619ec" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "8d0ca22a-bcdb-4ce7-a09e-e910d5fbdd83" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -328,40 +334,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1276430-5e5a-4892-8d36-44892b4fc87b" ], + "x-ms-request-id": [ "6a338b94-561c-4e78-aa94-da2de7efec4c" ], "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": [ "44c999f1-0fbc-4139-914d-aed3e3069c50" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060513Z:44c999f1-0fbc-4139-914d-aed3e3069c50" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "326d4506-e02a-429a-99db-c04981380528" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082623Z:326d4506-e02a-429a-99db-c04981380528" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D09F5DA4E4D483AA14870A0DD1AE3F0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25159E8201E64272B70D8071080E0871 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "5887a8e4-c924-4ba2-8e16-6374945ceceb" ], + "x-ms-unique-id": [ "427" ], + "x-ms-client-request-id": [ "0f3d317e-648d-4424-8d6d-c0508e521182" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -373,24 +379,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fa6ae9d-95fa-4d55-9f9b-c27ab2db078d" ], + "x-ms-request-id": [ "f0ca7572-e8dd-413e-aac1-38a0705a9f10" ], "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": [ "01b849ad-65d4-42d3-adb3-743bdd8f7c23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060514Z:01b849ad-65d4-42d3-adb3-743bdd8f7c23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fc3a4e6d-12a1-4f5f-84b8-35d43fcaa9df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082624Z:fc3a4e6d-12a1-4f5f-84b8-35d43fcaa9df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70B6889BDE9B4796B01499530A18155C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9383D9E0CDA94D378E63F41CDFE5B207 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -401,12 +407,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "96ca745a-65fa-4084-a273-544aa7f26546" ], + "x-ms-unique-id": [ "428" ], + "x-ms-client-request-id": [ "f6fc75a0-5145-4ea6-8185-a4f637ddc41b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -417,40 +423,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0348a736-46b1-4b09-bcc8-692c978c422b" ], + "x-ms-original-request-ids": [ "39efc47d-5729-4a5e-84c4-88418fd25cac" ], "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": [ "ae7aa257-e616-42b7-b888-bd848053e7ea" ], - "x-ms-correlation-request-id": [ "ae7aa257-e616-42b7-b888-bd848053e7ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060514Z:ae7aa257-e616-42b7-b888-bd848053e7ea" ], + "x-ms-request-id": [ "3218c613-0733-4c18-bf0f-a036e55d47c6" ], + "x-ms-correlation-request-id": [ "3218c613-0733-4c18-bf0f-a036e55d47c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082624Z:3218c613-0733-4c18-bf0f-a036e55d47c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C5AD193E8224B5B8F69E030D94AD8B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0453716F9A61491DA77F054BDC116C66 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "f5b4fc21-627d-4c63-a4c7-a7a5e66043b6" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "c78aa6bb-f84c-4dc9-b1dc-9206f30e7af9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -461,30 +467,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "198836d1-bf73-4321-afb6-bfdfbdeafb74" ], + "x-ms-request-id": [ "065ace72-b78d-4921-a1d4-7ea264f50e3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fcd84cba-e0c4-4cb4-a67a-051d6380d74f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e30bacb6-2095-4f52-a64b-826eab6f3a07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dfef59ea-69f1-458d-9fe5-e020c4461582" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060514Z:dfef59ea-69f1-458d-9fe5-e020c4461582" ], + "x-ms-correlation-request-id": [ "b9bd743b-5832-4179-9b6e-2d712fb4b4ab" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082624Z:b9bd743b-5832-4179-9b6e-2d712fb4b4ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C5108ED4B854794A1EC662E142A7747 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70AE5FD211EC42B1B5659DB40C1FC4CD Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2015-05-01+12": { + "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-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-c8srqjgdz9?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": { @@ -504,36 +510,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/7c7aac46-3297-48b3-8f11-981b0a98148d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], - "x-ms-correlation-request-id": [ "0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060522Z:0f93fd7b-c60e-4b17-bc1e-5aa326c7e557" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8cc625d1-d8e1-4f65-9b82-01c6d2333a65" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "10d32013-f4fb-4e46-b944-666451db1f24" ], + "x-ms-correlation-request-id": [ "10d32013-f4fb-4e46-b944-666451db1f24" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082630Z:10d32013-f4fb-4e46-b944-666451db1f24" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4570E5358954FB78D56D528B139ED5D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:05:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2916944595D84ED0B731160562CEAA10 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:26:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b417-0000-0300-0000-68e750a20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"name\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"AppId\": \"bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\",\r\n \"ConnectionString\": \"InstrumentationKey=0c0a27c4-e522-4085-afb0-22bef589eac2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\r\n \"Name\": \"Func-PowerShell-NewTest2-mj4vdfk5w1\",\r\n \"CreationDate\": \"2025-10-09T06:05:15.4782138+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-mj4vdfk5w1_bc4b7d5d-9334-4e3d-a76a-8254a44a5086_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-mj4vdfk5w1-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\": \"\\\"d403cc15-0000-0300-0000-690dad360000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest2-c8srqjgdz9\",\r\n \"name\": \"Func-PowerShell-NewTest2-c8srqjgdz9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-c8srqjgdz9\",\r\n \"AppId\": \"771a9614-dcbe-41e4-ba1d-dc69423bb380\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"72164e82-f05c-4a6d-9ffa-6eee64106837\",\r\n \"ConnectionString\": \"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\",\r\n \"Name\": \"Func-PowerShell-NewTest2-c8srqjgdz9\",\r\n \"CreationDate\": \"2025-11-07T08:26:25.1893119+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-c8srqjgdz9_771a9614-dcbe-41e4-ba1d-dc69423bb380_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-c8srqjgdz9-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-mj4vdfk5w1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-c8srqjgdz9\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1790" ] + "Content-Length": [ "1718" ] } }, "Response": { @@ -541,43 +547,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2B4725B70\"" ], + "ETag": [ "\"1DC4FC038F2E5B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28261ec7-4ad3-4fef-b78e-09d2e9803061" ], + "x-ms-request-id": [ "13371658-cf71-4854-8de2-7b7e6150db4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/080e0e17-6c54-4dfe-89c5-2b601e166fc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89613a19-7826-40af-904d-b9be2a447916" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "aa41d7b5-4754-46ad-baba-f424f82b59f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060605Z:aa41d7b5-4754-46ad-baba-f424f82b59f7" ], + "x-ms-correlation-request-id": [ "2b73ea86-b057-48bc-913d-002378edf85f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082712Z:2b73ea86-b057-48bc-913d-002378edf85f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85096F2D7C0D4ABAACDE131987ACDEC6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:05:23Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 919BF7734C2A40418775CB730B3BDBE1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:26:30Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8565" ], + "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:05:24.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\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:26:31.713\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "142f3149-bd2c-404d-afdf-65ab5614d8aa" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "c9b5b017-7127-40a2-87ec-a505f078bd46" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -587,42 +593,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2CC4D88F0\"" ], + "ETag": [ "\"1DC4FC050E9FFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac4b083b-6eff-4121-820d-a2c4c1001f66" ], + "x-ms-request-id": [ "ef7caab1-947b-4df4-9d4c-abb190ff2899" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ca82acd7-5d9e-49d4-b8f3-03b73c60da51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060636Z:ca82acd7-5d9e-49d4-b8f3-03b73c60da51" ], + "x-ms-correlation-request-id": [ "8c47739d-5b43-4538-b607-8058e94d3f00" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082743Z:8c47739d-5b43-4538-b607-8058e94d3f00" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7661311A83B24709ACB2DF2466AF4B81 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6F381F91374448987C921AB39F6CC7D Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:43Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:12.41\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "eb70b69e-410d-4aa9-b47b-f78decf159be" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "2a67cff2-1fb6-4870-b689-b20eca84fef2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -633,42 +639,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2CC4D88F0\"" ], + "ETag": [ "\"1DC4FC050E9FFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75bfc770-9b0c-413f-87ee-33de8f800b67" ], + "x-ms-request-id": [ "351b8e29-8ff9-4cc1-b8d7-68b1d8babe88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1bacf7d2-52f2-442f-a874-71408a2ae919" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060638Z:1bacf7d2-52f2-442f-a874-71408a2ae919" ], + "x-ms-correlation-request-id": [ "64f5fa97-6dc7-46c9-b0be-9756c9916177" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082745Z:64f5fa97-6dc7-46c9-b0be-9756c9916177" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A213D489F9224EDA95CDE852378F88BE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 356D16200447447C95E6858D0453239B Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:12.41\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "86af737e-523a-4fd0-aa22-af61ce5d2201" ], + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "be62de39-45f7-4937-ac73-a63681047a58" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -680,40 +686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90d9a2d4-0f00-4f07-a1d2-b43db82940af" ], + "x-ms-request-id": [ "d62cb98b-46f3-452d-99dd-3a1354fbd4b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0429f8b1-5980-4722-a789-d6264567fe41" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/afcd24d0-a483-440c-8813-0d22b0c2e613" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8f57dc31-51d2-49d7-8da9-cf4836387d4b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060638Z:8f57dc31-51d2-49d7-8da9-cf4836387d4b" ], + "x-ms-correlation-request-id": [ "85086ac3-4127-4bef-a427-ae8be5b2d64f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082746Z:85086ac3-4127-4bef-a427-ae8be5b2d64f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74B95F72F61B43BE8B740E6EEA2701B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3C3B1580087401499C69567B65A0E66 Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-c8srqjgdz9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "5a4c2d64-66e7-48ad-bd98-9ad2a20934f3" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "b8340d61-9fa6-402f-84fe-cd3fefa09313" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -725,41 +731,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61234961-5617-43f1-933d-535a0a790ade" ], + "x-ms-request-id": [ "b2217ead-bb94-4112-a099-46236c14bac6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/594cc8bc-9c1a-4877-939c-fcd04e766cad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/84cafad0-6611-42a6-af78-1743e4120625" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6d79c10-e0c8-47e0-8c7f-eacb65f51b57" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060639Z:c6d79c10-e0c8-47e0-8c7f-eacb65f51b57" ], + "x-ms-correlation-request-id": [ "d94afa1f-4b75-4e08-af4b-1b8629efc4a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082746Z:d94afa1f-4b75-4e08-af4b-1b8629efc4a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AF0212F907A46A6936672B01AC1C2C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9053BB72CD7486AAA222BE9229BDAF0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "433" ], - "x-ms-client-request-id": [ "07d76285-5cd8-4c05-94f3-91e5a1a120b7" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "6c759d24-d00e-4aa1-a459-7d899c333431" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -770,42 +776,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2CC4D88F0\"" ], + "ETag": [ "\"1DC4FC050E9FFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e514994-49bd-42bf-a846-62d430aae7ea" ], + "x-ms-request-id": [ "4743e24f-c294-44e4-aaa5-fd40c55f0155" ], "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": [ "76fc1ea4-fd64-49c7-ad28-665b01fa6368" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060639Z:76fc1ea4-fd64-49c7-ad28-665b01fa6368" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a9292ed7-0bb1-4e86-ae9f-beba7893dfb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082746Z:a9292ed7-0bb1-4e86-ae9f-beba7893dfb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC541FC8309B4980A0AA9DD02C9B0CF0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9220300897144249E4203B3EE47EBD2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8432" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:05.567\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:12.41\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "f4d4b559-7b30-4301-848b-b894d2f7b7b0" ], + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "14244cf3-9ec4-49d0-bb76-05357b08013f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -817,40 +823,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21f8e309-597b-4da4-8aca-7307439b8feb" ], + "x-ms-request-id": [ "2aa02982-a1fb-43f0-80db-430b2af559a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c37b1775-76e0-4a96-b14c-5ad22ac96f93" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/990e8eff-deb4-486f-9472-3ae39f4fe48f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ed693dbe-4f99-4c3e-aa6e-f8f249671b89" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:ed693dbe-4f99-4c3e-aa6e-f8f249671b89" ], + "x-ms-correlation-request-id": [ "4bf47b96-0f20-4630-b725-45b6d0bea746" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082746Z:4bf47b96-0f20-4630-b725-45b6d0bea746" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8855AF3DCE3E44D48A665C3CC8E8381F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2431FD7E5994A71A0CC7EBC047B2146 Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-c8srqjgdz9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "c29fa8a6-4a0c-4d4b-ba45-426e46b3dc6b" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "495aafad-bd55-438e-bbef-c5180e780fc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -862,41 +868,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8aa41826-2be2-4ef6-9e7c-067bf67c863a" ], + "x-ms-request-id": [ "9284a16b-39be-4afd-8d91-ab21b9d86fec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/091c2d42-296f-4a72-b3cc-eba06c34b16e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7652422d-b1a7-4557-8029-f3852532bc76" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fdc3312-b378-4cd5-bc2e-6cade398020b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:7fdc3312-b378-4cd5-bc2e-6cade398020b" ], + "x-ms-correlation-request-id": [ "c406c8a0-eac5-4584-95a1-7af06a22a494" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082746Z:c406c8a0-eac5-4584-95a1-7af06a22a494" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59C0F4AE964A40978677ACB6A3A67F12 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14EB5457943D47839A0E076D4B743591 Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites/config\",\"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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "1ade9ae5-02b2-49ca-9db9-c1919b1afa2d" ], + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "0546722d-dfbb-42bb-8f52-bde99b52fc8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -908,38 +914,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a53e74d0-2a16-40f0-a8ec-4ee23cf6becf" ], + "x-ms-request-id": [ "e4b8645c-17da-488e-bf43-35526236fedc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4be874a-d790-430e-b5d6-20fdeee53d34" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "be79be5c-fc83-408b-9698-13bdb402e4aa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060640Z:be79be5c-fc83-408b-9698-13bdb402e4aa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce768e7b-d1b0-4685-9707-ad6ac7159789" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f943eb3a-d611-4f55-947f-00c29fd8192b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082747Z:f943eb3a-d611-4f55-947f-00c29fd8192b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 465973A7C27E4FCD917B5E7D75B5BACD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53DC11F4434846578450C59DAC9A47CC Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-c8srqjgdz9\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01+22": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-mj4vdfk5w1\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0c0a27c4-e522-4085-afb0-22bef589eac2\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-c8srqjgdz9\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1872" ] + "Content-Length": [ "1800" ] } }, "Response": { @@ -947,43 +953,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2CC4D88F0\"" ], + "ETag": [ "\"1DC4FC050E9FFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab9e6482-d0c2-4d8e-ac96-9d9efcd80aa6" ], + "x-ms-request-id": [ "0cb8692b-b37f-4056-84b2-569623590f30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df6ea2b8-a9b8-48c8-ba6d-c413fa6f64da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c3cedbf-5bbf-4cdd-9fb4-20d210a9d30c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6ca2e51a-5d09-4bd0-81ff-8f2ec88e9a33" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060644Z:6ca2e51a-5d09-4bd0-81ff-8f2ec88e9a33" ], + "x-ms-correlation-request-id": [ "d858b822-0695-4eee-913d-502ff7fce9ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082750Z:d858b822-0695-4eee-913d-502ff7fce9ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 699912782B0C4B77A7925C3EC64817CE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:06:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:06:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66D86506C14C4F45852FE06BA0700A3C Ref B: MWH011020808025 Ref C: 2025-11-07T08:27:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:27:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8706" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.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\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:49.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.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\":\"e61362fc-f355-4ce8-b138-b3a0222b3bb2\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "030895c5-80a7-44d0-b80f-fd2f0c58c828" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "adef6f7d-abb3-4f8a-8541-68d3369793f0" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -993,42 +999,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2E2C88A30\"" ], + "ETag": [ "\"1DC4FC066F8D190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c23f8fcc-c451-4ced-ac5c-071fa68312cc" ], + "x-ms-request-id": [ "8a9d6f76-08ca-4870-b620-3f958bf17772" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62739ae3-e962-4705-b42b-0d59cf96f3be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060714Z:62739ae3-e962-4705-b42b-0d59cf96f3be" ], + "x-ms-correlation-request-id": [ "8764ea58-04ce-4abc-a5ab-15ec44caed76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082820Z:8764ea58-04ce-4abc-a5ab-15ec44caed76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9814B58DED54D8BA7C368F3903DC3B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D577C1B266044C469C145629C80AF191 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8572" ], + "Content-Length": [ "8680" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:49.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"e61362fc-f355-4ce8-b138-b3a0222b3bb2\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "6dfdb434-6468-40e2-951a-8e4576a7dd52" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "efcd3ca0-095f-480a-a208-02d13a33bffe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1039,42 +1045,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2E2C88A30\"" ], + "ETag": [ "\"1DC4FC066F8D190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f523c821-efbd-45ca-be7c-bffda5d62fcf" ], + "x-ms-request-id": [ "fcc49357-260c-4642-972c-8f68477bb24e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9801ca0e-0f0c-43cb-811c-8da496a2fccd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:9801ca0e-0f0c-43cb-811c-8da496a2fccd" ], + "x-ms-correlation-request-id": [ "b1b1ccde-c788-434a-b7a3-321e40d466f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082823Z:b1b1ccde-c788-434a-b7a3-321e40d466f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B31D3269F6AB4D1686ADCA0DF221A8E7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:16Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC1585120CB04BE9962A6F798AB04AC6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8572" ], + "Content-Length": [ "8680" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"func-powershell-newtest2-mj4vdfk5w1.scm.azurewebsites.net\"],\"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-mj4vdfk5w1.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-mj4vdfk5w1.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:06:43.283\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-mj4vdfk5w1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\\\\$Func-PowerShell-NewTest2-mj4vdfk5w1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest2-mj4vdfk5w1.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"7e58e612-a1e1-48b1-ba7a-37a5533eb8ae\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest2-c8srqjgdz9\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"func-powershell-newtest2-c8srqjgdz9.scm.azurewebsites.net\"],\"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-c8srqjgdz9.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-c8srqjgdz9.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:27:49.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-c8srqjgdz9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest2-c8srqjgdz9\\\\$Func-PowerShell-NewTest2-c8srqjgdz9\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest2-c8srqjgdz9.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"e61362fc-f355-4ce8-b138-b3a0222b3bb2\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "1122e01c-bcd5-4cec-b60e-140ba50a5718" ], + "x-ms-unique-id": [ "443" ], + "x-ms-client-request-id": [ "787377dd-1828-4179-aab8-ba5fea3a942d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1086,40 +1092,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f5527aa-2adc-459f-9552-d23a3afd0ea4" ], + "x-ms-request-id": [ "c9796e76-3e57-4c95-8696-8cf2ba213018" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9e495b3-c7bc-4ee7-933b-442a81b337b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b549e20c-8b69-4e0a-a6d3-fed6aeacf2a0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "99f5895c-bd58-413f-83de-6e02d9901aff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:99f5895c-bd58-413f-83de-6e02d9901aff" ], + "x-ms-correlation-request-id": [ "61175841-7a62-46f8-80d1-478dfc5c4b3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082823Z:61175841-7a62-46f8-80d1-478dfc5c4b3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 33385D684A674681BAF262C92F0B1F98 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82EBE8BBAD5649898B27105DFD3A3BC8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-mj4vdfk5w1\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-c8srqjgdz9\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "1e2519a3-bab5-46ca-9810-c9c5af6f59f0" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "89832324-dc92-4325-a021-1c084a7d323d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1131,41 +1137,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0abbe1ae-205b-4431-9d90-c8cc60df6bbb" ], + "x-ms-request-id": [ "ce731268-5c3a-4f95-bc38-9d8dd9efb7af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36548874-92bc-4cdf-90ad-3826ddd0070f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cdf779ee-bb97-4647-b0f6-8eb9b134f300" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dcef4cda-49a2-4966-af31-ac6896669bb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060717Z:dcef4cda-49a2-4966-af31-ac6896669bb3" ], + "x-ms-correlation-request-id": [ "da18e05a-ebba-4142-9955-7a93d1dfbbf1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082824Z:da18e05a-ebba-4142-9955-7a93d1dfbbf1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D203B8025A374C54AF589F1C4D9275A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EEFD34599C6B4215954808B5EBAA0DD3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1/config/web\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29163,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9/config/web\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30514,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+27": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "4ef1c4cb-ede7-4f3e-9798-d05b2ef8fa71" ], + "x-ms-unique-id": [ "445" ], + "x-ms-client-request-id": [ "09a18a12-eb75-4690-b244-b0ed5de0741b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1176,20 +1182,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E2E2C88A30\"" ], + "ETag": [ "\"1DC4FC066F8D190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3625d88-a20d-41c8-a383-fdad0324dacf" ], + "x-ms-request-id": [ "3664d233-fce6-44e2-9d12-f6274f77dad1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9d6ed6f7-f606-4a84-9631-912551191469" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb9759ec-f98a-41b5-b5ee-f2f3eb953f03" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "861aa393-cf82-4f42-8d82-5ec976b5a465" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:861aa393-cf82-4f42-8d82-5ec976b5a465" ], + "x-ms-correlation-request-id": [ "1186f4af-b96c-43c2-a6fb-9a9745eb681c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082832Z:1186f4af-b96c-43c2-a6fb-9a9745eb681c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75063C1A5D2849E3B15B7C7B8EBED1BA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F77ADAA30CDD452A9E6DA8F2D88B84C5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1199,19 +1205,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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "443" ], - "x-ms-client-request-id": [ "f6780163-b23e-4859-8e19-20b5653db35f" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "3c820a2a-6239-4d0d-b472-1499cc01c2da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1223,37 +1229,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "7bb99476-df83-49ba-abf9-fc2d618f50e6" ], - "x-ms-correlation-request-id": [ "7bb99476-df83-49ba-abf9-fc2d618f50e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:7bb99476-df83-49ba-abf9-fc2d618f50e6" ], + "x-ms-request-id": [ "2097dd0e-9e71-4b67-8dec-244993f1b663" ], + "x-ms-correlation-request-id": [ "2097dd0e-9e71-4b67-8dec-244993f1b663" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082833Z:2097dd0e-9e71-4b67-8dec-244993f1b663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7B9AC847A524D94A4EFE95704470B2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB6482A454684F9FBAD3E9910789D668 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:32 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-mj4vdfk5w1\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-c8srqjgdz9\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-mj4vdfk5w1?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-c8srqjgdz9?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "444" ], - "x-ms-client-request-id": [ "d7534a92-ccf0-4756-8734-877415d1dafe" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "42c304cc-3f1f-4bce-9090-47630019ae7b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1265,21 +1271,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e18e057a-152e-4c01-9af9-b2e7a92204d0" ], - "x-ms-correlation-request-id": [ "e18e057a-152e-4c01-9af9-b2e7a92204d0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060727Z:e18e057a-152e-4c01-9af9-b2e7a92204d0" ], + "x-ms-request-id": [ "690cdde8-6900-4752-83d5-47f864dfe492" ], + "x-ms-correlation-request-id": [ "690cdde8-6900-4752-83d5-47f864dfe492" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082833Z:690cdde8-6900-4752-83d5-47f864dfe492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F921DAEE487E491B9DDB5627FBB20296 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1868F5F97DB8447B893BDC49AA430DE7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:32 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-mj4vdfk5w1\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-c8srqjgdz9\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1287,7 +1293,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-5f2nspxwh0\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-cev8lsnbd7\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1302,18 +1308,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87b9ae06-5a41-48e6-b62b-190638e9e237" ], + "x-ms-request-id": [ "d826917e-e687-4499-b7f9-af40098bd767" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c744b1b-0a29-4865-87be-39f028e54f43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24c1cbac-4eee-4c1c-a3bb-48c70aee2c23" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61d25495-ecf4-48e4-a3fd-e991aea04294" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060728Z:61d25495-ecf4-48e4-a3fd-e991aea04294" ], + "x-ms-correlation-request-id": [ "a5aecaca-9e80-4a0a-9d47-449d44b01ac4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082833Z:a5aecaca-9e80-4a0a-9d47-449d44b01ac4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A642ED6F11BD4A58858FD646C3FD1197 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D2B8D8A2EC84A54ADD911703734A6BB Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1331,12 +1337,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "89849f27-25bc-425c-a61f-2b165cd67a8e" ], + "x-ms-unique-id": [ "449" ], + "x-ms-client-request-id": [ "938588f4-8bdd-4942-b80d-927702e6173b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1347,41 +1353,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "77937cc7-d1bc-4958-86f9-61e636c43848" ], + "x-ms-original-request-ids": [ "c68bece8-462e-498e-a213-728010b1542e" ], "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": [ "cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], - "x-ms-correlation-request-id": [ "cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060728Z:cb01ab3f-456a-49e9-95d6-64edf42cce7c" ], + "x-ms-request-id": [ "c19ec9c2-f879-42fb-9ca1-5522d01993e4" ], + "x-ms-correlation-request-id": [ "c19ec9c2-f879-42fb-9ca1-5522d01993e4" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082833Z:c19ec9c2-f879-42fb-9ca1-5522d01993e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8B5CFB5878745ACA779EDF19D9AA75D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0880768E4B434DE6A400E56E67ABE0C1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11421" ], + "Content-Length": [ "12057" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492506,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "71c4a563-3317-4ab8-b752-7174a29fea29" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "4ef9d30f-9c87-48e0-8584-cb34362d2ba6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1393,40 +1399,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eed55611-3b54-40af-a4f3-6d713bf072a7" ], + "x-ms-request-id": [ "bc657430-e23a-4fe3-88a3-3e5c47e2f936" ], "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": [ "70d9abca-6679-4b2a-b912-881250efd1b0" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060728Z:70d9abca-6679-4b2a-b912-881250efd1b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ebd36bd3-96e4-421f-b8ca-cd68ae25aa60" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082834Z:ebd36bd3-96e4-421f-b8ca-cd68ae25aa60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAA64F218C6B43E098670C15DBB134F7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84E2EC52C3E5404E94F1EAAC6B726AC6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "3e9e8f55-2505-4506-aaf5-a1888be51d66" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "e2f38934-4088-4ee2-a388-bb778ca3b4dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1438,124 +1444,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b938a9e3-e6b9-4f4f-8bcf-65dd29671d53" ], + "x-ms-request-id": [ "cd02ede3-379e-4e2f-b049-c94fbdcf293f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7f96af21-3645-48e2-ae78-74769337316a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060728Z:7f96af21-3645-48e2-ae78-74769337316a" ], + "x-ms-correlation-request-id": [ "11ed689d-9bf9-4609-b933-e7288f816934" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082834Z:11ed689d-9bf9-4609-b933-e7288f816934" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB058BFB47A846C0A1C7DBA35F61A72A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9EE4D1D67F04514BBFBB4A7CDF4792D Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?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-pxiydk/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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "598de5e8-b9fa-4474-8f40-0621534dbc70" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "0ebb22f8-ceb8-4615-ac5c-4b3eeb93a48a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], - "x-ms-correlation-request-id": [ "aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:aaf4d26c-a658-40d2-a3f9-3e7af816b566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "42df0e77-14e6-4128-b24c-50fed8f40afd" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3f7ebda0-d875-4e4f-927a-ba315b2b8fe9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082834Z:3f7ebda0-d875-4e4f-927a-ba315b2b8fe9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E001A73FA0474522A72155D3A6A8FB3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C22CBF49881640E4B30C9075297E4CA7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "247" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1749" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78829,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:24:41.26\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "450" ], - "x-ms-client-request-id": [ "cea09390-c011-450c-aca9-2be9606d142e" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "9398b6d4-41c5-455b-b66d-1436e0b11773" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "27bd3571-11f5-4eb1-81af-25abca02f11a" ], - "x-ms-correlation-request-id": [ "27bd3571-11f5-4eb1-81af-25abca02f11a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:27bd3571-11f5-4eb1-81af-25abca02f11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "61b7b346-ea5e-487b-9144-968ca492db36" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "33ce178a-6b07-4b31-9a70-5bde7caf2ca4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082834Z:33ce178a-6b07-4b31-9a70-5bde7caf2ca4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E88FE0E70C334507A11341C480A0920A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E27604536D64B64AECDAAAEF5472F03 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "243" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1737" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1ob\u0027 under resource group \u0027Functions-Test-Linux-Premium-xa1y0o\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "c8507421-e3d9-488a-bfe8-da4b2001e398" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "4c091b1a-16fe-42bb-a161-4af95ff9a67c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1567,40 +1579,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c3a921f-a14c-4b0a-be23-7d653896984b" ], + "x-ms-request-id": [ "74961a59-4146-4a25-b5e7-e7e14b6fabc1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "854ce9a0-7598-4ad6-abbd-1d7ce78e2a6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:854ce9a0-7598-4ad6-abbd-1d7ce78e2a6c" ], + "x-ms-correlation-request-id": [ "6795fdb4-38b3-4f8a-acb1-1aade35e314f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082835Z:6795fdb4-38b3-4f8a-acb1-1aade35e314f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0CD675595E0429083D60356AD8A2BE5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1405237016B54066AD616789D9912881 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1647" ], + "Content-Length": [ "1736" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "452" ], - "x-ms-client-request-id": [ "97d945f7-10be-4e9e-8368-86ce078eefd6" ], + "x-ms-unique-id": [ "455" ], + "x-ms-client-request-id": [ "e10b4c1b-f1da-4ea7-bb75-3a8413639252" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1612,40 +1624,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb0305d2-1b25-4780-9c52-c5c58b030bbf" ], + "x-ms-request-id": [ "98ff641c-9afc-417a-bbd8-2ea5b3d48b4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a5df9cf1-437e-423f-9b27-059ebf934a69" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:a5df9cf1-437e-423f-9b27-059ebf934a69" ], + "x-ms-correlation-request-id": [ "0721c3d9-f361-4b80-816d-e36f3f644a75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082835Z:0721c3d9-f361-4b80-816d-e36f3f644a75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 520CC832F5224BAB984A9BA2C04EA4A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDE90E465DB64EDA9647BD25D7106561 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "c466a13d-0a07-41ac-bd40-a92c2ce1edd9" ], + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "be9ca2de-ff7b-4bf7-b195-784591a5b4ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1657,24 +1669,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3f17bd2-5dd8-45a2-ae01-030fd78c9902" ], + "x-ms-request-id": [ "8ca54b50-c15e-4193-9b40-1e863f3097a4" ], "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": [ "5d7273bf-4b98-453a-a2b9-be270a60f778" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060729Z:5d7273bf-4b98-453a-a2b9-be270a60f778" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8a754b68-1997-440c-a69c-bdc6c2801375" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082835Z:8a754b68-1997-440c-a69c-bdc6c2801375" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3886D04D443146A38EA8BD6F0DA5DD77 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F00474A406344ED8A12349DE6B0B692 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -1685,12 +1697,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "454" ], - "x-ms-client-request-id": [ "e536d11a-c839-422b-a656-e8d36d77714b" ], + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "8a04bd70-2532-4c2b-b72f-34f1455d4f57" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1701,40 +1713,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "85806290-57ba-49d5-a91b-232ad1f09dfa" ], + "x-ms-original-request-ids": [ "2312e506-ba3a-4b26-93f3-d5f115279016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], - "x-ms-correlation-request-id": [ "23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060730Z:23f3a62f-f954-4fe1-a65a-0a0a2cebce7e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "abeacf43-a1ca-459d-80d5-e9a7c52e20be" ], + "x-ms-correlation-request-id": [ "abeacf43-a1ca-459d-80d5-e9a7c52e20be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082835Z:abeacf43-a1ca-459d-80d5-e9a7c52e20be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E12F648E2C6D42A6BAAA10D8AC5ED2AA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56C25A88B82F4FE8B895EBDFAE1221A2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "455" ], - "x-ms-client-request-id": [ "568055a2-36a9-4eab-b3c1-963a34afe486" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "1425ce98-9a42-4490-b523-3d01cb8c3d06" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1745,30 +1757,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5b3aaf03-2300-4714-8b91-e9a0d9983a93" ], + "x-ms-request-id": [ "79cd0cb9-df8f-4cc8-8a2b-19fb05cf0ecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6c370ec8-00ac-49b8-80ef-a4c4d180d35c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5518ea72-363c-4094-89be-1db9dc267822" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6212c994-db9d-4c6c-9539-0fb4e09e7deb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T060730Z:6212c994-db9d-4c6c-9539-0fb4e09e7deb" ], + "x-ms-correlation-request-id": [ "20c4222e-2f70-473a-aa2e-d24ef654e844" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T082835Z:20c4222e-2f70-473a-aa2e-d24ef654e844" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2615A7D4559A48B994C2D17A71273C84 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58CC089E8E6A400FB84C12B764FE0B02 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2015-05-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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-cev8lsnbd7?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": { @@ -1788,36 +1800,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/8b380a11-2765-41c0-b811-55266240b5ac" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "d53d1e68-e560-4bc0-b421-97d1508b766d" ], - "x-ms-correlation-request-id": [ "d53d1e68-e560-4bc0-b421-97d1508b766d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060752Z:d53d1e68-e560-4bc0-b421-97d1508b766d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a403d37-a403-4b21-b79d-c21f4a2b3856" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "13e173d3-aadd-4525-bff7-0f1561f0290f" ], + "x-ms-correlation-request-id": [ "13e173d3-aadd-4525-bff7-0f1561f0290f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082840Z:13e173d3-aadd-4525-bff7-0f1561f0290f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D92B12789B59479181AF18CD7C24E67F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:07:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 203124617B264426BF56B0DC15DA324D Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:28:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a009520-0000-0300-0000-68e751380000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"name\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"AppId\": \"485971cc-b36d-44d5-b806-e6b6577a78f5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\",\r\n \"ConnectionString\": \"InstrumentationKey=3b594e82-228a-41ab-bbc1-c8f7074fd084;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=485971cc-b36d-44d5-b806-e6b6577a78f5\",\r\n \"Name\": \"Func-PowerShell-NewTest3-5f2nspxwh0\",\r\n \"CreationDate\": \"2025-10-09T06:07:31.0176348+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-5f2nspxwh0_485971cc-b36d-44d5-b806-e6b6577a78f5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-5f2nspxwh0-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\": \"\\\"d4031d38-0000-0300-0000-690dadb80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest3-cev8lsnbd7\",\r\n \"name\": \"Func-PowerShell-NewTest3-cev8lsnbd7\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-cev8lsnbd7\",\r\n \"AppId\": \"eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"94abac36-1744-4365-941f-872418327c15\",\r\n \"ConnectionString\": \"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\",\r\n \"Name\": \"Func-PowerShell-NewTest3-cev8lsnbd7\",\r\n \"CreationDate\": \"2025-11-07T08:28:37.1261612+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-cev8lsnbd7_eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-cev8lsnbd7-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-5f2nspxwh0\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-cev8lsnbd7\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1790" ] + "Content-Length": [ "1718" ] } }, "Response": { @@ -1825,43 +1837,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E30D65A890\"" ], + "ETag": [ "\"1DC4FC086D01050\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16da02a0-71ba-4acb-b52f-e83357e5215c" ], + "x-ms-request-id": [ "6aa57d12-dd63-46c4-9582-5d038d60806c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d917cb73-57cd-43ed-9c1d-b49946e91c42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61407ebf-17ca-40b2-9a4b-a243bf026498" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a2d9e406-bb88-474b-8723-6728f5522b5f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060835Z:a2d9e406-bb88-474b-8723-6728f5522b5f" ], + "x-ms-correlation-request-id": [ "d78a0ff6-3fc0-4d0f-ae23-607c68b0fb8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082922Z:d78a0ff6-3fc0-4d0f-ae23-607c68b0fb8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 219D8F2A3F894BB8994B610DA3451E6E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:07:52Z" ], - "Date": [ "Thu, 09 Oct 2025 06:08:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76A172FB60AE4F49B841B6C7E3F4A2C8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:28:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8566" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:07:53.993\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:28:42.343\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "458" ], - "x-ms-client-request-id": [ "7f1167e8-3184-4e0f-903d-aed41b30e8eb" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "c9f0dc07-570e-4007-b213-e329fd9c7e85" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1871,42 +1883,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E32569E1E0\"" ], + "ETag": [ "\"1DC4FC09E415870\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4dcb2cff-a284-402f-95d5-1b3e1ed86979" ], + "x-ms-request-id": [ "8c89c30a-0b2e-4bd1-bb28-cdb684ccce49" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "400a9d98-9ab9-41d9-90a1-785f96de7fcf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060906Z:400a9d98-9ab9-41d9-90a1-785f96de7fcf" ], + "x-ms-correlation-request-id": [ "3e8f25b5-e86b-4981-9b74-a4bc25e45de8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082953Z:3e8f25b5-e86b-4981-9b74-a4bc25e45de8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8D22C46671E4171BB2AFCCB03B47A0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:05Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED88FE65C5C049C29983E9B3A7871EE8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:22.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "498b11ca-087d-4f03-aecc-adc406f65f03" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "fc55743e-e2fc-4646-af9b-7e1560a9de12" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1917,42 +1929,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E32569E1E0\"" ], + "ETag": [ "\"1DC4FC09E415870\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c19c1fcb-8e81-4a47-829a-86f38384aac6" ], + "x-ms-request-id": [ "8f821844-4510-4732-9293-47e1fb4b7580" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c31c1987-2f16-4f8b-a654-9803c6f1d5b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060906Z:c31c1987-2f16-4f8b-a654-9803c6f1d5b4" ], + "x-ms-correlation-request-id": [ "f0b7e190-d54c-4713-aa8f-f0e077000226" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082953Z:f0b7e190-d54c-4713-aa8f-f0e077000226" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70F7043460AF418B88CE46222408F779 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C93EE53E78440DEBCC673278B0783AF Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:22.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "e67140da-a9ba-434f-8a69-eae7ed0e4b85" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "e9f0b9bb-396a-45fc-a8b0-b61ebafa9352" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1964,40 +1976,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e21eab56-c86a-46c0-8450-c4567db6a153" ], + "x-ms-request-id": [ "ffd7e057-22de-418a-b567-9bc96772b571" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d15fce92-040d-4977-b15d-96d7b6ff90c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44554603-167b-481e-b3ff-0b226ffb9a3c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6cd53287-95b5-4f00-9dd3-838500f1b68f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:6cd53287-95b5-4f00-9dd3-838500f1b68f" ], + "x-ms-correlation-request-id": [ "d89087be-c4da-48e3-973e-4e3988b3975d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082953Z:d89087be-c4da-48e3-973e-4e3988b3975d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83A3119ABFD7404DB3B864F8FFCB5DB0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 644863AB5CA44A2BB7DC0C82B8A7E0C7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-cev8lsnbd7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "461" ], - "x-ms-client-request-id": [ "f23da75d-6cf2-4e7c-8063-c98a362c6431" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "d965c1a2-6f60-4831-a261-d0263dbdf082" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2009,41 +2021,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01213e6a-5a2c-414d-8616-66e06907aecd" ], + "x-ms-request-id": [ "727d768f-c248-4eee-ace8-8bb7c05b3598" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/249782b1-b9bc-4738-88e5-66d637c49867" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c43666ef-b199-447f-a0a5-e6f03a894cf0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5c9bc168-0355-47b6-bb2a-a11334096f25" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:5c9bc168-0355-47b6-bb2a-a11334096f25" ], + "x-ms-correlation-request-id": [ "3762b329-bdca-41bf-88d6-7b3d2da99bdf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082953Z:3762b329-bdca-41bf-88d6-7b3d2da99bdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFE2DA1268CD43AA8B1FA316E4509686 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D69A19FE9603468BA3137F985618630F Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites/config\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "462" ], - "x-ms-client-request-id": [ "ce473e2c-261f-4608-a47d-42b5c41870b1" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "3b7520d7-653f-41fa-ab5b-f943dbdbfb5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2054,42 +2066,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E32569E1E0\"" ], + "ETag": [ "\"1DC4FC09E415870\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2f992d3-81e7-4135-b41c-2b7615312047" ], + "x-ms-request-id": [ "1d0b9807-9aa5-4fa6-97df-4d96cad2fa46" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e884f704-7290-48a7-b059-746e408d3e28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060909Z:e884f704-7290-48a7-b059-746e408d3e28" ], + "x-ms-correlation-request-id": [ "79983667-f84e-4ec4-b2bc-f6eb7d22e11b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082954Z:79983667-f84e-4ec4-b2bc-f6eb7d22e11b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E14301641A0F4DC79BC7ADA4EB368C51 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3C76CB4F56E4E6C8E0D5D4AEEB72B60 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:08:35.07\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:22.167\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "822171da-96f9-4591-b736-320c7cd8fb69" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "2ef55d34-e56b-4343-8ab4-1a522a69b0e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2101,40 +2113,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb9bd677-b913-46af-b891-6b88db46df7f" ], + "x-ms-request-id": [ "6f65f3de-03ea-4f44-a137-d3c224562475" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/404241b5-4387-482d-b806-314a14ab05e4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b37d6491-832b-4ab7-8cf9-6685db926a27" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0d69d969-d142-4b05-9208-53e3c80991be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:0d69d969-d142-4b05-9208-53e3c80991be" ], + "x-ms-correlation-request-id": [ "d1f5a652-c2f8-43b1-88c9-5cbbd90edcc8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082954Z:d1f5a652-c2f8-43b1-88c9-5cbbd90edcc8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4121020E32664B089BD92CD41C8789E8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D391214F93494DAA9136A259175271C7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-cev8lsnbd7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "c619a651-6947-4563-943f-4216388389c8" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "84430fa2-af75-4922-8f32-2960576b88da" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2146,41 +2158,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e099cba-d76f-4817-8f9c-03cb2950b771" ], + "x-ms-request-id": [ "254c069b-b4be-4508-a16d-5761b9693972" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24bbb51f-df2d-4805-95e2-fa6bc1ba8e1c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8fb542d-3b21-4b66-b448-08471f3b6c5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2dce2946-11e8-44d5-8d9b-bcab618a470a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:2dce2946-11e8-44d5-8d9b-bcab618a470a" ], + "x-ms-correlation-request-id": [ "33ec1459-de2b-42ae-92ef-6419da6c51f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082954Z:33ec1459-de2b-42ae-92ef-6419da6c51f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA4EBCD427C842299D6F0C181D5F6C59 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9ADA5E70DD6D4F32B9F160468E291D07 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites/config\",\"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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "193b08f5-1b09-4265-84c8-b08515c9dff2" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "64ccd48c-d8af-4ff4-9733-dff48be3c8f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2192,38 +2204,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b42451b6-c97a-45e8-8b3e-8d550caf687e" ], + "x-ms-request-id": [ "e8e12bd1-b0fc-40a0-815e-5159a705951e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45616fce-c2e8-4566-9645-ed84c69641f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dfef1262-86ba-4185-b8d3-86def1ef6ccb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "110a08a1-1d74-41e9-aa29-24c9540f0fb6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060910Z:110a08a1-1d74-41e9-aa29-24c9540f0fb6" ], + "x-ms-correlation-request-id": [ "6e87e3f6-14ae-47b5-b343-049c72ce5b0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082955Z:6e87e3f6-14ae-47b5-b343-049c72ce5b0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDFD1FB3047142D998E0CE9F8CFF2E8A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D514030FD8CB4861BDE09AA205DF6DA4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-cev8lsnbd7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01+22": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-5f2nspxwh0\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"3b594e82-228a-41ab-bbc1-c8f7074fd084\"\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-n8vg16/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-cev8lsnbd7\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "2100" ] + "Content-Length": [ "2028" ] } }, "Response": { @@ -2231,43 +2243,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E32569E1E0\"" ], + "ETag": [ "\"1DC4FC09E415870\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb15bd8a-20f4-4be1-ad0a-443118431463" ], + "x-ms-request-id": [ "bbef1691-9ff3-4aa5-8f94-4ae56a18a9f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3bba211-0be7-4c8b-b500-9973ae6e1541" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a525754-d054-41f0-8592-04accdff3b4b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e8870e50-f368-460e-b6d3-9a18eb4eef3d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060913Z:e8870e50-f368-460e-b6d3-9a18eb4eef3d" ], + "x-ms-correlation-request-id": [ "5c627123-704b-4e63-bfa5-63418609ad77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T082957Z:5c627123-704b-4e63-bfa5-63418609ad77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA9C1D137D4B4C41A89AFE14CE039D9F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E1DEF65C74940DE82181FEB84142B69 Ref B: MWH011020808025 Ref C: 2025-11-07T08:29:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:29:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8902" ], + "Content-Length": [ "8903" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:56.433\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "467" ], - "x-ms-client-request-id": [ "649b4f5d-5d56-44f3-8f79-fb8235fe1517" ], + "x-ms-unique-id": [ "470" ], + "x-ms-client-request-id": [ "c4950f2f-c48f-4f3d-a2a4-126d5ab0e576" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2277,42 +2289,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E33BD1A940\"" ], + "ETag": [ "\"1DC4FC0B2ADEC10\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1f2f556-7dc2-4898-9e10-e3ee715b366d" ], + "x-ms-request-id": [ "b6d9afdd-01da-4094-b913-554325973020" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c455dee4-1ecf-4e97-84bc-3a64fb4795a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:c455dee4-1ecf-4e97-84bc-3a64fb4795a2" ], + "x-ms-correlation-request-id": [ "8c1be7d2-71c9-4eb0-b862-290c473f4e03" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083027Z:8c1be7d2-71c9-4eb0-b862-290c473f4e03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A127B5DF9FB84EEA8E632724D0B7A26A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A708ADD5AEF44981ABB9103667C097A6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8768" ], + "Content-Length": [ "8877" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:56.433\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"slotSwapStatus\":null,\"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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "c8434ee4-a076-4073-8f80-5d4a9cfe525a" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "d6051352-9ac9-43f9-8341-c2585ce4a650" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2323,42 +2335,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E33BD1A940\"" ], + "ETag": [ "\"1DC4FC0B2ADEC10\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ca108941-b37b-4c8e-a796-bda5a18e9afd" ], + "x-ms-request-id": [ "096451df-77d6-488b-a748-a3760fc494bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62a6ac20-9438-4303-b5c2-8841f21a4869" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:62a6ac20-9438-4303-b5c2-8841f21a4869" ], + "x-ms-correlation-request-id": [ "6d58c6de-99a0-4447-b3bd-b22954dbbba0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083027Z:6d58c6de-99a0-4447-b3bd-b22954dbbba0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4ADE38A4652B41FF976E3F71CBD27EEA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3644EC400FEB4825848D820C00D846D1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8768" ], + "Content-Length": [ "8877" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest3-5f2nspxwh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"func-powershell-newtest3-5f2nspxwh0.scm.azurewebsites.net\"],\"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-5f2nspxwh0.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-5f2nspxwh0.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:09:12.66\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-5f2nspxwh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-5f2nspxwh0\\\\$Func-PowerShell-NewTest3-5f2nspxwh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest3-5f2nspxwh0.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"c2200af7-beb7-41c3-9e4e-a544c65ffb2a\",\"clientId\":\"ffbc5610-670b-41a5-94f2-bb3c73361aa7\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest3-cev8lsnbd7\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"func-powershell-newtest3-cev8lsnbd7.scm.azurewebsites.net\"],\"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-cev8lsnbd7.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-cev8lsnbd7.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:29:56.433\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-cev8lsnbd7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest3-cev8lsnbd7\\\\$Func-PowerShell-NewTest3-cev8lsnbd7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest3-cev8lsnbd7.azurewebsites.net\",\"slotSwapStatus\":null,\"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-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"1716ca65-4acb-41b3-88ca-e2d918be5a48\",\"clientId\":\"1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0\"}}}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "469" ], - "x-ms-client-request-id": [ "e333d856-457d-44bd-a3c3-5965067e0c8a" ], + "x-ms-unique-id": [ "472" ], + "x-ms-client-request-id": [ "21a8a771-e752-43e9-8d1e-a9243fd273a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2370,40 +2382,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "556bad34-3eb2-43a5-a633-e39b0b68d574" ], + "x-ms-request-id": [ "a862dac6-69be-4723-b8d7-392a97720df4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51d113ba-5615-482b-bf4f-3f2b26d1c14c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56ffd0d9-dd72-401a-95e2-ec45f7d3c2c3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "319b7a1e-8d27-4c4d-ace9-38a05610523b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060944Z:319b7a1e-8d27-4c4d-ace9-38a05610523b" ], + "x-ms-correlation-request-id": [ "d3ecaa6b-0c27-4b5d-a6ad-99f92b73c19a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083028Z:d3ecaa6b-0c27-4b5d-a6ad-99f92b73c19a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CCA0D6500C1147D387A84933F0D46BCD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91B5FA9350E84E0694AF994AF4796583 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-5f2nspxwh0\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-cev8lsnbd7\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "3c9acc6a-dec7-4241-83ae-7243f28fc96b" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "f3c2a576-e00e-4738-a718-5ec08ce419e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2415,41 +2427,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "867d8f58-5217-402b-aa33-77dfd5aef808" ], + "x-ms-request-id": [ "4a92b24b-73da-47fa-a285-1ded755a40fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1b42649-335a-4d5c-a61b-0570d74bde3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0456591f-30cc-459f-a30f-9226d8bcd2a0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c34345a-0f91-43a4-9e86-6e142e03e332" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060945Z:6c34345a-0f91-43a4-9e86-6e142e03e332" ], + "x-ms-correlation-request-id": [ "d6c362d8-6d05-4885-beb2-0a63a9dcd32b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083028Z:d6c362d8-6d05-4885-beb2-0a63a9dcd32b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 978C14540C1343D8A5AF19AA9CF0A836 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FF81FFE2E8D4EFDB12D61BF1AC72EB6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"Microsoft.Web/sites/config\",\"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\":29164,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7/config/web\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"Microsoft.Web/sites/config\",\"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\":30515,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?deleteEmptyServerFarm=False\u0026api-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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "471" ], - "x-ms-client-request-id": [ "61940043-c59a-4ef0-b28b-a641bdf80324" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "5c9632a9-ffce-4e28-bdb7-8e4a87d28606" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2460,20 +2472,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E33BD1A940\"" ], + "ETag": [ "\"1DC4FC0B2ADEC10\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23b2b513-87e0-4f99-bdb7-77359d3a66e3" ], + "x-ms-request-id": [ "c7da71d4-9b6d-4180-875f-5e8b5d8ef02c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae8e195a-ef2a-4d8b-bdc1-06cf21fa3bca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4609210-08bd-4b28-922c-ef730721a830" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "fd8ed84b-993f-4837-9af1-d24c84809632" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:fd8ed84b-993f-4837-9af1-d24c84809632" ], + "x-ms-correlation-request-id": [ "e7c8eb02-78be-4b26-88d1-a6f145d93299" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083038Z:e7c8eb02-78be-4b26-88d1-a6f145d93299" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E752A27BBE244292B137B7EF16C5EC2B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ADD23AF93124DD1816AA23DB1018400 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2483,19 +2495,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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "26c0c4cc-e013-4bb9-a22e-cbcfbd821bd9" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "bc38f452-ec09-4093-99b6-0feb2f3dc84d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2507,37 +2519,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], - "x-ms-correlation-request-id": [ "55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:55bbebe9-9506-4870-8f9d-5ecd15fc71d4" ], + "x-ms-request-id": [ "a31d84e7-81af-4861-924a-3eef2ec19e6d" ], + "x-ms-correlation-request-id": [ "a31d84e7-81af-4861-924a-3eef2ec19e6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083038Z:a31d84e7-81af-4861-924a-3eef2ec19e6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18C317D2058D4898B60338B5B1BCCCA6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F072F21762B47A1A5D28A2C527BFC46 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:38 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-5f2nspxwh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-cev8lsnbd7\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-5f2nspxwh0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-cev8lsnbd7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "6a4cc067-8f23-4261-bf75-f56bac0727fd" ], + "x-ms-unique-id": [ "476" ], + "x-ms-client-request-id": [ "8c2ebe95-4742-4837-a01e-f03712e1be59" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2549,21 +2561,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], - "x-ms-correlation-request-id": [ "fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:fd13010a-1d6b-4eb5-93cf-f9352be81b62" ], + "x-ms-request-id": [ "2874c9b2-1a05-4277-9bf5-70bd174cf70d" ], + "x-ms-correlation-request-id": [ "2874c9b2-1a05-4277-9bf5-70bd174cf70d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083038Z:2874c9b2-1a05-4277-9bf5-70bd174cf70d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB0EE91D8750427DAF1C8C08FE0BF8E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB0A330451BE4C9C8061F5CDCECA30CB Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:38Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:38 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-5f2nspxwh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-cev8lsnbd7\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -2574,12 +2586,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "ec8ce009-0104-4b89-9d11-0181f31a4bf0" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "ef39082e-f8ad-466a-a673-5d86e90941a7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2591,32 +2603,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85c748e8-0f02-46a9-9aa6-ce47ce11a048" ], + "x-ms-request-id": [ "699576ca-7086-45d5-a8e5-123da8a790c6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd62c0d9-dd3d-42b9-80d2-16bf61bc2861" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5bf6fa5b-a1ba-4893-a100-763bd9746ea2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a047b45-3d6a-4c1e-831e-22aef0e05142" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T060955Z:3a047b45-3d6a-4c1e-831e-22aef0e05142" ], + "x-ms-correlation-request-id": [ "a4eaf9f7-90b9-4af3-b9e3-2a99a70d2c12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083039Z:a4eaf9f7-90b9-4af3-b9e3-2a99a70d2c12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF185537504E456E890C94B1173E0165 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:09:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37B415675990437489E45F7B45402947 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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": { @@ -2631,44 +2643,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E357C174A0\"" ], + "ETag": [ "\"1DC4FC0CD8605E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c97095a6-23d5-42a8-88f1-cbf631447772" ], + "x-ms-request-id": [ "245d9482-7912-4744-8bb6-c3d2a4a5c418" ], "X-AspNet-Version": [ "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/15182bdf-1c66-4d27-bf78-bcd29bfc375d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-correlation-request-id": [ "19183195-52d8-4a8a-87dc-70d1c04fa127" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061002Z:19183195-52d8-4a8a-87dc-70d1c04fa127" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ca870c7c-ed43-4b39-884a-0ef4f07fd166" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "4ddf649e-f929-4ab4-9c00-9fdec66ec1e1" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083043Z:4ddf649e-f929-4ab4-9c00-9fdec66ec1e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E26484E5EAE541F78ED11BA96BA3800E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:09:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DC1594565BC45C1A3865B40B9FFA205 Ref B: MWH011020808025 Ref C: 2025-11-07T08:30:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:30:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "52cd1e18-08b1-4b12-859f-dcacea878e2e" ], + "x-ms-unique-id": [ "479" ], + "x-ms-client-request-id": [ "e930eaa1-7f7a-45b5-9670-c301dd61ac77" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2679,41 +2691,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "76f966e6-e025-44b8-898f-73497ca3fd56" ], + "x-ms-request-id": [ "5e6ea36b-49ed-495c-b6c1-6e9ebd3a8e5f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a3760bf-fcc3-4f93-b8b6-e143b0ad0c4b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061033Z:3a3760bf-fcc3-4f93-b8b6-e143b0ad0c4b" ], + "x-ms-correlation-request-id": [ "4e39a240-481a-4648-b683-1ddd2bf48e09" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083114Z:4e39a240-481a-4648-b683-1ddd2bf48e09" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E7A52F8127148C99600E8038BE3FE1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AA1C0BDEDAF487A9192FF8C29D1906D Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "52cd1e18-08b1-4b12-859f-dcacea878e2e" ], + "x-ms-unique-id": [ "480" ], + "x-ms-client-request-id": [ "e930eaa1-7f7a-45b5-9670-c301dd61ac77" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -2724,24 +2736,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e161131c-d769-4b7c-90b3-99c86ec01a41" ], + "x-ms-request-id": [ "968e5f1b-9b37-4fcc-b155-62eafe5fd9fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2182ab56-e73f-4f31-bd93-1931bf323223" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061033Z:2182ab56-e73f-4f31-bd93-1931bf323223" ], + "x-ms-correlation-request-id": [ "dd4eeb81-2fcc-49db-a601-84bae2c557b0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083114Z:dd4eeb81-2fcc-49db-a601-84bae2c557b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 94FD71E7144D4D4BA452F79F904F1F33 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F73A10EE330E4974B741AAD900C7238D Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -2749,7 +2761,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-jndk42cwv8\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-wktb3qxrdy\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2764,18 +2776,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdcda8b5-8ed0-409f-b1a0-bbee223d82c8" ], + "x-ms-request-id": [ "8b2dd4bd-11c2-431f-b716-8e5dc7edd0a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fec99caf-c84f-49ce-9adb-30e8b4ad7a80" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2864efeb-151b-4a49-a94a-639833c8ca11" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dde43077-2719-4748-8ad1-a327930812b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061034Z:dde43077-2719-4748-8ad1-a327930812b5" ], + "x-ms-correlation-request-id": [ "7ea0340e-9641-41ae-bb68-3af9947ee8ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083114Z:7ea0340e-9641-41ae-bb68-3af9947ee8ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 39459F78323F4BE784FE85F57E6D5CFB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F58EA66727D439CB478BD52EBC835FA Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2793,12 +2805,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "479" ], - "x-ms-client-request-id": [ "818fa5a3-b138-4824-ad7f-711ca64e0dbd" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "8504652c-d00a-4729-811e-b526663da7f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2809,41 +2821,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ad429154-27d3-437e-a261-bd584370da3e" ], + "x-ms-original-request-ids": [ "d10122f9-70f2-4747-aac0-3738acf99cdb" ], "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": [ "2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], - "x-ms-correlation-request-id": [ "2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061035Z:2c9afee0-ea2a-481c-8c58-b162eb78c4dc" ], + "x-ms-request-id": [ "b6b00661-2971-46ee-933d-768ed55fb8ee" ], + "x-ms-correlation-request-id": [ "b6b00661-2971-46ee-933d-768ed55fb8ee" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083115Z:b6b00661-2971-46ee-933d-768ed55fb8ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D042D76267B41169738433472144F39 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C540C78D08334CD687771851F7B0E61C Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13096" ], + "Content-Length": [ "15508" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435798,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492510,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492506,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492513,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "d6b31399-69fa-4846-af71-8f452b1067c5" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "5cbad9e4-3753-4b55-a20b-39f9b50bb68d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2855,40 +2867,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63f4b402-43b9-49f0-b220-00661ae30479" ], + "x-ms-request-id": [ "e3847bf2-d64c-4254-b61f-ae77ce07b218" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fa3696f2-6381-4766-9814-3d973aae43a3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061035Z:fa3696f2-6381-4766-9814-3d973aae43a3" ], + "x-ms-correlation-request-id": [ "a76bc512-deca-42bc-bf9e-3683719360d5" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083115Z:a76bc512-deca-42bc-bf9e-3683719360d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A3329A22F5E469AB7E57FF98DEC62B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 103BEE1637304072A1B745123C626618 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "4d060f46-295c-4238-b9d6-e6bf2f8d0f56" ], + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "1b93781e-51f1-4f52-9a8e-59420665add0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2900,82 +2912,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24f47e8a-21d1-4a8c-b756-d82a2fb6ec03" ], + "x-ms-request-id": [ "e7c90b95-273d-4c2c-b0aa-4f4b722b7eea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "be893609-34fd-4a7d-8b5a-cc3478a59161" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:be893609-34fd-4a7d-8b5a-cc3478a59161" ], + "x-ms-correlation-request-id": [ "acd61fa1-5002-44ed-ac08-96958d84739d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083116Z:acd61fa1-5002-44ed-ac08-96958d84739d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B00FA89706E426388EEF8BF3E3FE9AA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 232A27C1752243C4B78D5F61AD79CBAC Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "9258c8a2-55e0-46ec-94d7-9f758a90a7cf" ], + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "8507ae71-373d-4c9a-8380-ae6aa7da488d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], - "x-ms-correlation-request-id": [ "ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:ec46e5ed-5f47-44d7-ae38-983fefb19e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "59e9ccfc-3cde-4eaf-9937-160cae195024" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "92b45678-7b76-4e1e-9494-dcaad8492f5e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083116Z:92b45678-7b76-4e1e-9494-dcaad8492f5e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC952B5A276840EF98787DEE6DC6CC87 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AA6944FC8BA4140AEA61D907D570837 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "247" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1743" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":82823,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_82823\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:28:15.37\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "483" ], - "x-ms-client-request-id": [ "cc5e8ae9-0539-4ba3-bbfb-3ba4821ba0ed" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "c86cc3bb-5638-4334-98bb-1954db07edaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2987,40 +3002,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "510de881-7c4d-4216-a204-11a288c7775a" ], + "x-ms-request-id": [ "2a24cf47-b268-4a12-8caa-9fe1981223fe" ], "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": [ "5b944a6f-d889-4523-b84c-d5d56c19ba6e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061035Z:5b944a6f-d889-4523-b84c-d5d56c19ba6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "abb778a6-50be-4726-98cf-2972c60a6bb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083116Z:abb778a6-50be-4726-98cf-2972c60a6bb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55DB3F3C97CA4EAE80726A182923FF0A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E548030717047CA87D7E51277A8BBAD Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1749" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78829,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:24:41.26\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "6de75b27-11ec-4982-9e42-18fae02749c6" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "6de9f5b2-9a88-4491-972c-48bd5a7cc529" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3032,40 +3047,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4155eab7-6cb7-49fe-af35-3168c2b31456" ], + "x-ms-request-id": [ "eff9da45-2bb7-48cc-909c-32eec06a1619" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e1fae8d-4551-400e-843c-5fd56dc953d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061036Z:9e1fae8d-4551-400e-843c-5fd56dc953d3" ], + "x-ms-correlation-request-id": [ "7728d5c5-79aa-4b25-bfcd-080f52fb1a98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083116Z:7728d5c5-79aa-4b25-bfcd-080f52fb1a98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD638A0C4BD440A6A4D4F12E8EA68AFA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 645E65A74E184803902817D1BCB90DFC Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1647" ], + "Content-Length": [ "1737" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "b09f9b8f-40b7-4fb3-8e57-443cf049be7b" ], + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "954a6ddd-d8fc-4342-b364-af244f63ee81" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3077,40 +3092,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d27a330a-9684-4964-a6f6-114e81b51b90" ], + "x-ms-request-id": [ "da273eec-4cdd-4fc5-9fee-3695c691ad15" ], "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": [ "1f703c3f-e036-4793-a7ba-2212625f4f8b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061036Z:1f703c3f-e036-4793-a7ba-2212625f4f8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b800db61-ac5b-4d6d-b19e-787b75a30fef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083117Z:b800db61-ac5b-4d6d-b19e-787b75a30fef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37A0D99DE8324E3A9400B7024DBF05D2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2EA7AA442BD74C70A6097A3BDF0210E7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1736" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "f8dd07ac-599a-4830-aa4e-b0e7edb9778c" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "6e0755ec-1738-4e0b-ab1f-e4ac6c4f3fb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3122,40 +3137,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f495bba3-8abf-441d-aff1-7f48f1c93e96" ], + "x-ms-request-id": [ "991f6abb-ccbb-4786-a9ce-87f52ab42db7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b8030a35-6099-4df3-b80c-8c64a7a0fbaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:b8030a35-6099-4df3-b80c-8c64a7a0fbaf" ], + "x-ms-correlation-request-id": [ "0bbf37a1-5090-4166-9eff-4a4973577280" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083117Z:0bbf37a1-5090-4166-9eff-4a4973577280" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 499463B6B3E54125A8FD95E410515F47 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27A8CA6F19A8441AAEFDC6B38F7AB168 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "487" ], - "x-ms-client-request-id": [ "84c819d0-4e8f-4109-a3a9-7989e9d00589" ], + "x-ms-unique-id": [ "490" ], + "x-ms-client-request-id": [ "6a7decec-c15e-42ea-aafe-e392394b8e1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3167,40 +3182,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de217fa6-cb85-44fb-b431-0aae4fb4353a" ], + "x-ms-request-id": [ "e0286851-0dd2-4b60-ba75-a6d30b194ef4" ], "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": [ "279901bc-5a73-4a23-a1ee-a0af0571401d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:279901bc-5a73-4a23-a1ee-a0af0571401d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5d050a98-55c7-4451-888a-caef34eb1d01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083117Z:5d050a98-55c7-4451-888a-caef34eb1d01" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0635BF1BBC7E44D6A2F368583CF0D17E Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1818" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "491" ], + "x-ms-client-request-id": [ "540a2b2b-a61a-47d5-9911-5a54e954aee8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b763158f-6bc5-4ab7-9112-bba32e2e02b4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f0013217-39cf-4dd3-8170-7621addc8223" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083117Z:f0013217-39cf-4dd3-8170-7621addc8223" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06CF61F9E39846F9BFD08AB936A4AE3A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C81182341F0A406BB767A7AFA833E1FC Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+16": { "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": [ "488" ], - "x-ms-client-request-id": [ "7a805d05-2684-49bf-87b1-1f720f20ffdf" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "3ab70bb0-1e24-4988-b16f-7f89418e46aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3211,40 +3271,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5ab0aae6-3b82-4e70-9782-bcb63ffe7588" ], + "x-ms-original-request-ids": [ "c8a6e492-7d8a-4408-9295-05ffd59c3ad8" ], "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": [ "717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], - "x-ms-correlation-request-id": [ "717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061037Z:717cd58d-c6bc-40e2-8d06-5683ed52dc72" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "4570de7c-a557-462e-8006-e0712590517d" ], + "x-ms-correlation-request-id": [ "4570de7c-a557-462e-8006-e0712590517d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083117Z:4570de7c-a557-462e-8006-e0712590517d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3521027B6C4F408BA610CAE809135FF3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D5543D58AAF4F40B0E761044B9CD707 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+16": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "034efeef-bbeb-468d-b3b2-180955790610" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "ebf81302-0c62-4765-8681-df36c7d91bb9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3255,30 +3315,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e3b6fc24-0148-4e07-acc7-3160830281cc" ], + "x-ms-request-id": [ "fd313822-5852-4304-b9bf-56de2e678be0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7dbfd241-4b7f-4f41-bc88-58ded586eecb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/da427734-9501-4b01-9c0e-49894654a0ec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8449a9ae-0039-49fe-b85a-2c71c920f0cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061038Z:8449a9ae-0039-49fe-b85a-2c71c920f0cd" ], + "x-ms-correlation-request-id": [ "05554fd2-9bb1-4bbf-b460-c277be8f74bf" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083118Z:05554fd2-9bb1-4bbf-b460-c277be8f74bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C093F47184741FBACF00694303F5B47 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC73D154D9074B0C81E171D7A25CBBDE Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:18Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2015-05-01+17": { + "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-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2015-05-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-wktb3qxrdy?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": { @@ -3298,36 +3358,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/a10d384f-fa74-4af9-8130-39b0e1566407" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "1876591f-d366-4113-bdd6-b9abc08d7417" ], - "x-ms-correlation-request-id": [ "1876591f-d366-4113-bdd6-b9abc08d7417" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061046Z:1876591f-d366-4113-bdd6-b9abc08d7417" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6b0554e-cb76-4ed2-b896-b4305ec43739" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "11598d1f-1d0d-418a-b56e-6b6dd924c9d2" ], + "x-ms-correlation-request-id": [ "11598d1f-1d0d-418a-b56e-6b6dd924c9d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083123Z:11598d1f-1d0d-418a-b56e-6b6dd924c9d2" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C307FA7BDFB456494927F6D85421C9D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:10:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6811520658E2484AA8EDBFE3A67034A9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:18Z" ], + "Date": [ "Fri, 07 Nov 2025 08:31:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00e929-0000-0300-0000-68e751e60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"name\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"AppId\": \"e0c61f15-820d-4d0b-9839-a86a2748c341\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\",\r\n \"ConnectionString\": \"InstrumentationKey=54d8cd57-d8fa-474c-bd1f-fed4dad17e1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0c61f15-820d-4d0b-9839-a86a2748c341\",\r\n \"Name\": \"Func-PowerShell-NewTest5-jndk42cwv8\",\r\n \"CreationDate\": \"2025-10-09T06:10:38.6324793+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-jndk42cwv8_e0c61f15-820d-4d0b-9839-a86a2748c341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-jndk42cwv8-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\": \"\\\"d403dc63-0000-0300-0000-690dae5a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest5-wktb3qxrdy\",\r\n \"name\": \"Func-PowerShell-NewTest5-wktb3qxrdy\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-wktb3qxrdy\",\r\n \"AppId\": \"1b6d477b-5992-4a09-afcf-7fd234af3004\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"993ed38f-e3c2-42cc-8c9a-818739ac2ff4\",\r\n \"ConnectionString\": \"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\r\n \"Name\": \"Func-PowerShell-NewTest5-wktb3qxrdy\",\r\n \"CreationDate\": \"2025-11-07T08:31:18.8911312+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-wktb3qxrdy_1b6d477b-5992-4a09-afcf-7fd234af3004_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-wktb3qxrdy-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-wktb3qxrdy\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"\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": [ "1923" ] + "Content-Length": [ "1851" ] } }, "Response": { @@ -3335,43 +3395,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E377DC4C10\"" ], + "ETag": [ "\"1DC4FC0E7FF84F0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cc33e94-d834-499f-816d-22b817757d52" ], + "x-ms-request-id": [ "94609bae-af51-4cbd-9d5e-a796de31b340" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/585ba43e-96cf-41e6-93a5-fb83c094c1ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/992abda6-7cfd-4784-8a2d-eb0903ae2266" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a2037e0a-3f70-414a-9a3e-b6f13e757bb4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061132Z:a2037e0a-3f70-414a-9a3e-b6f13e757bb4" ], + "x-ms-correlation-request-id": [ "eeccfd1f-8d36-473e-9e2e-ac4c35619316" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083205Z:eeccfd1f-8d36-473e-9e2e-ac4c35619316" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF5AF6D9E3BE45EE82F7F104DE95EADE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:10:46Z" ], - "Date": [ "Thu, 09 Oct 2025 06:11:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAAD3C8D545848E789147D63CD39D05D Ref B: MWH011020808025 Ref C: 2025-11-07T08:31:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8807" ], + "Content-Length": [ "8808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:10:52.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:31:25.447\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+19": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "735753aa-dd20-4401-99fe-1e75180eba98" ], + "x-ms-unique-id": [ "496" ], + "x-ms-client-request-id": [ "8e3f44bf-57d8-454b-ac7e-6756842edde0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3381,42 +3441,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E38ECAF6B0\"" ], + "ETag": [ "\"1DC4FC0FF8F5190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee8483fe-5323-4835-8da9-5b59dfc4c7f2" ], + "x-ms-request-id": [ "8b522cc9-6822-4a48-b7d5-49f700b76469" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b6b129e9-f9cb-4793-acba-53b965e05756" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061202Z:b6b129e9-f9cb-4793-acba-53b965e05756" ], + "x-ms-correlation-request-id": [ "797a198e-077a-4c06-9470-743da5508641" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083236Z:797a198e-077a-4c06-9470-743da5508641" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 869E8693E4EC4050B9DD3D1CDA96A755 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:02Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBDD4A53A898483087B7362C220990F2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8674" ], + "Content-Length": [ "8782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:32:05.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+20": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "f515d44b-6232-4911-8478-946c32ecad06" ], + "x-ms-unique-id": [ "497" ], + "x-ms-client-request-id": [ "dd5e3563-f062-439a-a8d6-279307097cd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3427,42 +3487,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E38ECAF6B0\"" ], + "ETag": [ "\"1DC4FC0FF8F5190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab9799ff-fa4e-4d76-a465-926fbcbdde17" ], + "x-ms-request-id": [ "f83bcd9e-2379-427b-9483-268c7f6abb48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fca69608-22dd-4109-8b0f-dc31be38dbf0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061203Z:fca69608-22dd-4109-8b0f-dc31be38dbf0" ], + "x-ms-correlation-request-id": [ "30dcb310-7a68-4b2a-8e25-a21a90b5dfa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083236Z:30dcb310-7a68-4b2a-8e25-a21a90b5dfa6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EF942D00E5E4C8C85D0CE73BD2EE720 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9C3B3E025124CF2A5EE97F76E318909 Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8674" ], + "Content-Length": [ "8782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:32:05.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+21": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "bd048e0a-e0a7-4b1c-b53b-4e0f889e812b" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "82a1fdc0-a6a8-426b-a460-a97e0c01ca10" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3474,40 +3534,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37a6b046-8d90-45ab-9079-a7a63e56253c" ], + "x-ms-request-id": [ "18dfc407-55be-4066-bba8-f49d0e93026f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/822cd522-64d8-4f69-b8fc-b65b7e08f29c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af876bdf-2309-4cb0-81ff-c8590933e58f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5692b0c9-e674-40a0-a544-9bd515f1be40" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061203Z:5692b0c9-e674-40a0-a544-9bd515f1be40" ], + "x-ms-correlation-request-id": [ "c8798c2e-ce5c-4794-ac3e-e11027f87391" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083236Z:c8798c2e-ce5c-4794-ac3e-e11027f87391" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA401FA5746949EDA05EDA9EECE4F709 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1144F0B3C04F43D497273F167DD2935F Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "a360f11e-92c9-49f0-a075-7f4eb6f1d8e8" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "695ebebe-33ce-4917-b13e-d2f662aa1c54" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3519,41 +3579,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "82d5c522-814f-4470-bb4d-ba63719656fa" ], + "x-ms-request-id": [ "23970ffc-967b-4349-98d0-19cad23a13bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/886f8f1a-d5bc-40fb-b6a0-225d534b5239" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d084463e-1886-4b49-8fb1-a23d3fdd3a6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061204Z:d084463e-1886-4b49-8fb1-a23d3fdd3a6f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/63b228af-f351-444e-b8fc-9d39454f86f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5ddc06f0-888d-48b2-97cd-bb6bef3bf8e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083237Z:5ddc06f0-888d-48b2-97cd-bb6bef3bf8e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC59938A3A454361AC372506F64A5C3D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A8AD0B203FD4B63AE626042D8FF1931 Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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\":30516,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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+23": { + "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+24": { "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": [ "496" ], - "x-ms-client-request-id": [ "d30e4866-5cb2-4d34-85f1-7b914bc5c28d" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "79896089-bf90-4169-b3b8-d751733f40c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3565,32 +3625,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d2d47a2-3ccc-4ef7-9534-62644ddb3e93" ], + "x-ms-request-id": [ "8459ec5a-4f22-4f37-92f3-0520215df7ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a824678-9f99-4fe3-bbf5-f5664e049aea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "11f3e7dd-9f6a-43ab-bd62-77d909c89c01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061204Z:11f3e7dd-9f6a-43ab-bd62-77d909c89c01" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76b1d3e1-ad39-40d8-8e82-1f2181b40dd2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "42936429-c283-4a02-8aa9-51018fc4b553" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083237Z:42936429-c283-4a02-8aa9-51018fc4b553" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1AB60D6CEDC2498E842A7A4D76B7B841 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:04Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C219165BACA4228B3A1BC3C977CD842 Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01+24": { + "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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": { @@ -3605,44 +3665,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3A3EB9810\"" ], + "ETag": [ "\"1DC4FC113FC8170\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4a7d1cd-9471-4bbd-8dff-19113ec376ff" ], + "x-ms-request-id": [ "ca9734a5-06c7-4697-8ba7-8229c3083ec3" ], "X-AspNet-Version": [ "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/ed7c810c-b843-4e4c-85fc-7d214a875580" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cd3f7339-cf0d-4b3e-8fab-cf1c1ff55782" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "0d223890-831f-40df-8c75-ab482add45c2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061209Z:0d223890-831f-40df-8c75-ab482add45c2" ], + "x-ms-correlation-request-id": [ "9607c5da-5ec9-44e8-8279-651f0196ff2c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083241Z:9607c5da-5ec9-44e8-8279-651f0196ff2c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAF04D591B80478EA345451986827BB3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:04Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8BE5F9AF09D4365B8168CC25931251C Ref B: MWH011020808025 Ref C: 2025-11-07T08:32:37Z" ], + "Date": [ "Fri, 07 Nov 2025 08:32:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1814" ], + "Content-Length": [ "1904" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-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/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "498" ], - "x-ms-client-request-id": [ "41c7f3f1-d459-4233-9100-c5288be26487" ], + "x-ms-unique-id": [ "502" ], + "x-ms-client-request-id": [ "7cd972e2-8030-4139-853e-0c40668544b5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3653,41 +3713,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e050ba0-6977-4bfb-9d68-3a304dab4d7f" ], + "x-ms-request-id": [ "b0f133d7-42b6-44cc-809a-956acadf107e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2844ba90-97af-4392-8b84-35a9857a683f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:2844ba90-97af-4392-8b84-35a9857a683f" ], + "x-ms-correlation-request-id": [ "16d4a5b6-61f4-4644-a641-b1af71d7ffd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083311Z:16d4a5b6-61f4-4644-a641-b1af71d7ffd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D19DCA0D15F484EA253D898853893CB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2FBA0415C3049FF8BCE061B573E3CEF Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01+26": { + "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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "499" ], - "x-ms-client-request-id": [ "41c7f3f1-d459-4233-9100-c5288be26487" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "7cd972e2-8030-4139-853e-0c40668544b5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -3698,40 +3758,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43828b29-dc98-4e7e-bad7-9f05d9d47f45" ], + "x-ms-request-id": [ "f1881e0a-4bb9-4cc4-bfe7-c0c4374cfe18" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bf58ed89-ac27-4ad2-90ad-528174f621b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:bf58ed89-ac27-4ad2-90ad-528174f621b9" ], + "x-ms-correlation-request-id": [ "8cb896c0-706e-45fd-8da2-199f378adb7b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083312Z:8cb896c0-706e-45fd-8da2-199f378adb7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0294BC1F6CB247B790E7979528264CC1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B37AA6BA54D245F28CB7B12AE70D9D34 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "500" ], - "x-ms-client-request-id": [ "12c5368b-0364-4b65-86ac-dcdbfe2bca35" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "3b6048ee-470d-43e3-84b1-4de223b32a4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3743,40 +3803,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6db5b6e4-f58a-4618-8acb-9bafb37e0c11" ], + "x-ms-request-id": [ "d9853c85-f87a-4bf3-ad60-d6ffa2ae589a" ], "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": [ "293f41c1-83b2-4460-8674-5c209c8cf04a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061240Z:293f41c1-83b2-4460-8674-5c209c8cf04a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5a2ad592-1dba-4a62-8dfa-eded3ca3c7f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083312Z:5a2ad592-1dba-4a62-8dfa-eded3ca3c7f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF48C243CEDA454EBA363895081CADD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1785EC6CFF8647D7823D2FB79D3F9CC2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "6e361aa9-0c4c-4708-82ec-a645f4fe7cfd" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "828b4bd7-8e36-4b4e-b587-59938da29f2c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3787,42 +3847,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E38ECAF6B0\"" ], + "ETag": [ "\"1DC4FC0FF8F5190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "638e65dd-2ea1-4a41-9b3d-e9c09d9b2d02" ], + "x-ms-request-id": [ "5ecff4a3-8990-4443-a446-ec12f111b847" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63caaf88-e117-4835-a822-72981e2eabbc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:63caaf88-e117-4835-a822-72981e2eabbc" ], + "x-ms-correlation-request-id": [ "f22a43a8-43fd-464c-9289-84bed52fdbe4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083312Z:f22a43a8-43fd-464c-9289-84bed52fdbe4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FF2CA9276B14ABDA8E6329219782A48 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43F510E903B048429E504D0635BDF20A Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8674" ], + "Content-Length": [ "8782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:11:31.867\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:32:05.417\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+29": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "502" ], - "x-ms-client-request-id": [ "4c142666-4327-442f-8f30-d23587145a00" ], + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "86e7b52e-1e6c-4b8f-8c7b-f21afd82b5af" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3834,40 +3894,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60206232-4235-4392-8f60-1f702ada884f" ], + "x-ms-request-id": [ "2c0635a2-a3c0-4359-ab19-cb3a9261150f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dac0e253-939f-42bf-ba2d-dc4d65e291ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3077f5bb-e8ec-49c0-b063-4b9d4b4b4b56" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6d776531-9bcf-4999-b60d-82969a7612b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:6d776531-9bcf-4999-b60d-82969a7612b2" ], + "x-ms-correlation-request-id": [ "6dc637d9-b75b-494f-87e2-40994397f165" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083312Z:6dc637d9-b75b-494f-87e2-40994397f165" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F3143F0E4D04CDAB63DC214834DB716 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD1B959E9B354D7D9ACCE6AB86FC0C54 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "3e28837f-a913-4c8d-8339-e34feb94bfa8" ], + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "cc848f8f-a1da-4c04-81f8-9627fcb0d939" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3879,41 +3939,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfb4f509-d99c-4261-b55b-a8a6e3c61ad3" ], + "x-ms-request-id": [ "a8efacd0-f7e1-443a-aee4-dcbfcf0b2adb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b371760-ba76-4d25-8212-d540b0c2c7b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86149903-1bf3-4012-b69f-7c09dadd9d48" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c029cfd2-a98a-4e0f-b625-d0855f16fd95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061241Z:c029cfd2-a98a-4e0f-b625-d0855f16fd95" ], + "x-ms-correlation-request-id": [ "f776bc80-1af3-47c3-b1d0-77801357568a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083313Z:f776bc80-1af3-47c3-b1d0-77801357568a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EA757D3C972406CA07BF3946C3B13A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C94491A2596748BAB421732F3EECDE40 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33: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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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\":30516,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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/serverfarms?api-version=2023-12-01+31": { + "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+32": { "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": [ "504" ], - "x-ms-client-request-id": [ "76bf1645-c22d-4144-9369-ecad86c0c09e" ], + "x-ms-unique-id": [ "508" ], + "x-ms-client-request-id": [ "40105bcf-414d-4b44-a777-cd3e002170ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "7adebbe7-fd57-4240-9123-dc05861f1e19" ], + "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": [ "e86dbd03-4b1f-470f-8fea-62cbedacb870" ], + "x-ms-correlation-request-id": [ "e86dbd03-4b1f-470f-8fea-62cbedacb870" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083313Z:e86dbd03-4b1f-470f-8fea-62cbedacb870" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F086FBDCC6624008B0D83383B926EFDE Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "17270" ], + "Content-Type": [ "application/json; charset=utf-8" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492510,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492506,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492513,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492516,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", + "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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "509" ], + "x-ms-client-request-id": [ "b2baa1b9-02d7-4e9f-a4d0-e0c59f0bc061" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3924,41 +4029,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c7d78ff0-6cb0-49a0-80d8-b50a3ecf0805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c79eb832-080b-477b-a5f9-86cc14b22673" ], "X-AspNet-Version": [ "4.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": [ "982f9409-198e-4bba-a2b2-77b242effe0c" ], - "x-ms-correlation-request-id": [ "982f9409-198e-4bba-a2b2-77b242effe0c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:982f9409-198e-4bba-a2b2-77b242effe0c" ], + "x-ms-correlation-request-id": [ "15e107e4-7eef-4882-8a0a-0c9cb71e60cf" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T083313Z:15e107e4-7eef-4882-8a0a-0c9cb71e60cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 687BF89B58044346928CC6DA9AA72253 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E05474939004E748251BF5AB21ECE55 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "14768" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "1810" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435798,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435799,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?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-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/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-z05kh6/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": [ "efa1f441-2b17-4bc6-90bd-cd7845053894" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "50ef1ae9-1561-4580-8f88-f54b1bf11535" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3970,40 +4075,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4e0e7c0-8afe-45bf-b17f-d0e6277cac01" ], + "x-ms-request-id": [ "682d8123-98de-4631-aa59-fd816cd4921d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45afc352-db01-425f-a2ae-e7ec205b9565" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061242Z:45afc352-db01-425f-a2ae-e7ec205b9565" ], + "x-ms-correlation-request-id": [ "fd4ba411-22a3-490d-be82-e1af3c16afd4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083314Z:fd4ba411-22a3-490d-be82-e1af3c16afd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EC1306B679A45D7B050F16FB5506F55 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F0C17BDC4C14100A7EF91F7C8D5DCB2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1778" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan?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-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/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-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "b313882f-5063-4c59-a40c-1854c14d594e" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "a33fc16a-f55e-4b18-be7a-c90578235ac0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4015,82 +4120,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77b4e87b-2ee9-42cb-b517-6795951b4193" ], + "x-ms-request-id": [ "3eecb368-aaca-448c-a9d5-6002366a21c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "731e5b48-4fdc-4e90-b129-2a8d22789417" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:731e5b48-4fdc-4e90-b129-2a8d22789417" ], + "x-ms-correlation-request-id": [ "23bda1a2-d571-4958-9836-b1f077c09d10" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083314Z:23bda1a2-d571-4958-9836-b1f077c09d10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3D256B9A2AA48B09C270E9CCFEED634 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20B611BECED04D3A8535C01B1875CE80 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":82823,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_82823\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:28:15.37\",\"asyncScalingEnabled\":false,\"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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?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-pxiydk/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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "1e763cc0-7113-401a-939d-3b41f4822a68" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "57fe76b4-265f-4c2b-b2ad-bda7b5386771" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "d5238c70-7c70-4825-a2ef-60756016ae63" ], - "x-ms-correlation-request-id": [ "d5238c70-7c70-4825-a2ef-60756016ae63" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061242Z:d5238c70-7c70-4825-a2ef-60756016ae63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e930b369-af3a-42e9-96f6-ecfe05fe6f8c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "969bf833-6052-4e73-9a28-b8c639630442" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083314Z:969bf833-6052-4e73-9a28-b8c639630442" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D262A79B8FD84BBBA67B5DDAAF0E368C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF64D06B1230478EAD6BEF2499CC6E4E Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "247" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1749" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Default1gx\u0027 under resource group \u0027Functions-Test-Linux-Consumption-pxiydk\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78829,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:24:41.26\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "508" ], - "x-ms-client-request-id": [ "aa27b0c1-1171-4553-9c5d-f752e43f4694" ], + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "b91b2fd7-6af5-4308-9a34-cba94b13cc5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4102,40 +4210,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72e29892-aa0c-4bfb-a173-ba2a5ae64e5d" ], + "x-ms-request-id": [ "5bcb4f0c-b358-43d7-8cd5-11766ff8a403" ], "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": [ "e4eb8aa3-b80a-4a8a-bac2-c24ddbd6d2c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:e4eb8aa3-b80a-4a8a-bac2-c24ddbd6d2c6" ], + "x-ms-correlation-request-id": [ "819be6b5-fd24-4bff-971b-2f0dff0172c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083314Z:819be6b5-fd24-4bff-971b-2f0dff0172c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F64A1D7A048A498C94F3B793287CDE1F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF3675685B274E5789D5FA52034A9004 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1737" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "509" ], - "x-ms-client-request-id": [ "dcf5579e-b4ee-45c1-b319-c327118d0ec2" ], + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "a279dab5-d660-495f-b40c-ef8cf7e79832" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4147,40 +4255,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2bd0b9b-fcd1-44ba-b248-89f847c24feb" ], + "x-ms-request-id": [ "a0887c10-fc0f-4fd5-adb8-96bb1840e610" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2d67559-958b-4fde-88a0-9fa2f1ea8397" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:e2d67559-958b-4fde-88a0-9fa2f1ea8397" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "954bea00-3a2b-41a7-aa22-ecc3a84ea5ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083314Z:954bea00-3a2b-41a7-aa22-ecc3a84ea5ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10B1A49A1DB84FCB81007546D0D006AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9946D6D09E624E188B7E548A2F91B3ED Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1647" ], + "Content-Length": [ "1736" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "510" ], - "x-ms-client-request-id": [ "0235fc94-6724-425f-a598-33a424e88526" ], + "x-ms-unique-id": [ "515" ], + "x-ms-client-request-id": [ "40840ffd-199c-4aa8-b5f6-6b283c1acf61" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4192,40 +4300,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfabd03c-0f88-46b0-bf58-b6a47815fa7e" ], + "x-ms-request-id": [ "4dd29752-c319-4adf-aeb2-6ba0e85f7103" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2d66fc53-1ec8-40c6-ab7f-89393fc2739c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:2d66fc53-1ec8-40c6-ab7f-89393fc2739c" ], + "x-ms-correlation-request-id": [ "3c93997f-c34e-40fd-801e-bc002771d0ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083315Z:3c93997f-c34e-40fd-801e-bc002771d0ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 660477A095CC47FA85C695BC044E0A41 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98AC957993C7495EB21E0C69AF7A28D2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "8f89cef3-2adc-453d-bb27-f42b0dada552" ], + "x-ms-unique-id": [ "516" ], + "x-ms-client-request-id": [ "4cdc3b25-87d2-440d-9127-5b558849ab33" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4237,40 +4345,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75cb0ac6-6468-410d-9d2d-4a343dec8867" ], + "x-ms-request-id": [ "e2d9022f-3a64-4cda-9ce7-d05cb2dc60e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9364bb88-6949-4f8b-b2cf-620fb0694d93" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061243Z:9364bb88-6949-4f8b-b2cf-620fb0694d93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "422e53e1-0215-4fad-af3c-471aba60c215" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083315Z:422e53e1-0215-4fad-af3c-471aba60c215" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C80C869FF0BA40D397874B0ABC2477A4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30444A652583446D89181438765F9CD5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "9a8ff996-d47f-4db0-b823-669ff7aa82d4" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "066a6c82-96da-4262-849a-348c40f3c070" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4282,40 +4390,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d519f7a7-9f32-4d44-a053-f7c7f414e34e" ], + "x-ms-request-id": [ "bc072143-44cf-4c1d-96ea-7fa5e35dc97c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a611e5b-4173-4913-97b1-f8850356b598" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:3a611e5b-4173-4913-97b1-f8850356b598" ], + "x-ms-correlation-request-id": [ "1ef627d1-f83b-4bd3-b10b-9b9671d77d47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083315Z:1ef627d1-f83b-4bd3-b10b-9b9671d77d47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D064909769F54493B01D53DE6A074B45 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8F8ED63A9F8491C8C5ADF0F6472F801 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "513" ], - "x-ms-client-request-id": [ "c0b5d2e8-88c1-4b94-82a1-b6c222103843" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "b4c3e399-99e8-4bb2-9651-df783c23cb5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4327,40 +4435,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6736f9ac-0555-4733-9a68-1a330b4b0f20" ], + "x-ms-request-id": [ "c776ed18-e66c-4341-8229-0d6aee48f6b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3f043cf-a7ef-489a-8215-dd1a50ad62fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:d3f043cf-a7ef-489a-8215-dd1a50ad62fa" ], + "x-ms-correlation-request-id": [ "8f85e1f2-3ffc-4a18-a288-fc13557c4035" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083316Z:8f85e1f2-3ffc-4a18-a288-fc13557c4035" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 911C0DBBE4CB4DD4B651237DC9C90F63 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40BAC1024D94429E8D107871072492C1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "514" ], - "x-ms-client-request-id": [ "5f297022-102c-42bf-852d-5dc39aa195d7" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "65d65245-11b8-4339-9e4f-2f84683bfb5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4372,40 +4480,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b49b9af6-7521-48f3-8b82-0f6264f347db" ], + "x-ms-request-id": [ "f099202a-ef7c-40f9-97d9-a5b8d5530683" ], "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": [ "44a8d596-6827-4b92-b21d-b767ff885684" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061244Z:44a8d596-6827-4b92-b21d-b767ff885684" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "cace2c24-2cd7-4c72-a2a7-3eafb6988d73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083316Z:cace2c24-2cd7-4c72-a2a7-3eafb6988d73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8FA4BC68A5AF48FAA3F21C3002B31E05 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4A61B845DDC4CD8BDF11E923BF19283 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+42": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01+44": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "515" ], - "x-ms-client-request-id": [ "48a648bc-5737-4026-bbbd-d0eb67cfa7e8" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "8a8c6b92-af04-4731-a792-ebab1aa4499a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4417,38 +4525,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0f41d7d-273d-4d3a-b2d8-145325c29375" ], + "x-ms-request-id": [ "0e1a12e2-04f7-4811-80bd-acf5dfbf0741" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d765a814-3378-4565-9990-d98453e2943f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3120164d-0ba0-4b93-9c6f-01355e13b5a4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc8eeec2-00d6-4c49-85ef-530180334fe1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061245Z:dc8eeec2-00d6-4c49-85ef-530180334fe1" ], + "x-ms-correlation-request-id": [ "5c545385-81ef-45ac-a1b1-da75a0c5cc4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083316Z:5c545385-81ef-45ac-a1b1-da75a0c5cc4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 742C75E907E043DC931B9ACD83810625 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CB5021EAB914F3EA7A5AB0AD2E6771C Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+43": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01+45": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-wktb3qxrdy\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1951" ] + "Content-Length": [ "1879" ] } }, "Response": { @@ -4456,43 +4564,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E38ECAF6B0\"" ], + "ETag": [ "\"1DC4FC0FF8F5190\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f4fa534-4c3c-420c-99df-230cfc424f21" ], + "x-ms-request-id": [ "b404edd2-19bd-4973-a1c9-937e12021548" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d05b014a-3660-46a5-95e9-7075078f94f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10a49976-c86d-40a0-995f-f2691038fc23" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "71f72791-6262-4f79-af75-09f238f6ad60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061247Z:71f72791-6262-4f79-af75-09f238f6ad60" ], + "x-ms-correlation-request-id": [ "b9022c4b-e2e1-48b5-8bea-378d482f0be1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083319Z:b9022c4b-e2e1-48b5-8bea-378d482f0be1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35C69A33C2F345158C963980304EC8A0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:12:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CE1F45E11204C28B2F4D79C8D69C904 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8807" ], + "Content-Length": [ "8806" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:18.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "22359e24-54d1-4f83-b8e6-629530319ada" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "eb87c521-3fc0-428d-95fb-1341db0be440" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4502,42 +4610,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3BB8799B0\"" ], + "ETag": [ "\"1DC4FC12B35C9A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b55485ee-703f-47c1-bb7f-ceccfae9572e" ], + "x-ms-request-id": [ "54288f2d-45e9-4141-af76-1738261e68f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66513b65-245a-4c31-8e7c-f70bf7147427" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061318Z:66513b65-245a-4c31-8e7c-f70bf7147427" ], + "x-ms-correlation-request-id": [ "7196e54a-0e21-44a8-ab91-4221e69a02a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083350Z:7196e54a-0e21-44a8-ab91-4221e69a02a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C1B674D3D8C4AA2B1629F3A269F9836 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F123B5577C484A1AAE67CA050C154E24 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:49Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8673" ], + "Content-Length": [ "8780" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:18.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-NewTest5-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "518" ], - "x-ms-client-request-id": [ "4c158b25-4077-4068-a2e2-521c00ae7ca1" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "76707de7-c0c5-45fb-b144-7763c1df5772" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4548,42 +4656,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3BB8799B0\"" ], + "ETag": [ "\"1DC4FC12B35C9A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7dc1962a-e007-451c-bee5-8da2369121c3" ], + "x-ms-request-id": [ "3b16ee15-9995-42aa-8239-b4d066de3a4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "11274441-0c43-4271-bc0d-c13dcd69e2e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:11274441-0c43-4271-bc0d-c13dcd69e2e4" ], + "x-ms-correlation-request-id": [ "42a8ecd2-8fcb-44a7-8bcc-05cf183b59eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083350Z:42a8ecd2-8fcb-44a7-8bcc-05cf183b59eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90AD6719BB9F4557AF037766E4BA1168 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32FFD2BE268C42C38D91124E28CCE5B2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8673" ], + "Content-Length": [ "8780" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:18.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-NewTest5-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01+48": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "5dcf1a65-29c1-4a55-89b8-81417dfed935" ], + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "abd80110-26b5-4327-a3e0-89b9b98ba36c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4595,40 +4703,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5efdae97-2ddc-4a2d-8c96-4fe2e0f74073" ], + "x-ms-request-id": [ "d4aa349e-2fdf-4e3b-b6d0-7b23ccda1f3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06469c2c-1bcd-4fb2-9b03-055ba80e57cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1186563-7292-44bc-a305-3e9a36daa500" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "15b2231f-4617-4d18-8476-79a98101413c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:15b2231f-4617-4d18-8476-79a98101413c" ], + "x-ms-correlation-request-id": [ "45859bc3-8f96-463f-8371-dd100d5665ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083351Z:45859bc3-8f96-463f-8371-dd100d5665ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B32E9C48BA034F5ABABED7208F504F1A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 310147280CEF4C0BBF03380A47C7980E Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01+47": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "6204659e-ddc7-4361-b84e-dba27803f27f" ], + "x-ms-unique-id": [ "525" ], + "x-ms-client-request-id": [ "e3f0c6ce-2310-4c4c-8e05-07eb5a889f99" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4640,41 +4748,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2fd6c72f-b096-47cd-a31b-85ad112571e7" ], + "x-ms-request-id": [ "7290df25-bbef-46ee-a223-cbe0cf476f92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a47989c3-7a01-42db-be45-b973a12ea8bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af46cc55-5f96-4ca6-bb0c-9967c5b2049b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c04f1afd-3ca0-4c92-b7aa-21e1578b54cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061319Z:c04f1afd-3ca0-4c92-b7aa-21e1578b54cf" ], + "x-ms-correlation-request-id": [ "c6e08501-5fbc-4d99-b30b-9f3bb02db303" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083351Z:c6e08501-5fbc-4d99-b30b-9f3bb02db303" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB42F7BCEA0C4526807B150DDC3BFA1C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF11E0A29F7C4771B7699A99A9FAC9AC Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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\":30516,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "00f4f281-f7f5-442f-9321-547fc8488f5f" ], + "x-ms-unique-id": [ "526" ], + "x-ms-client-request-id": [ "1d573c2c-a0c1-4d57-9466-e75e612e0b8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4685,42 +4793,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3BB8799B0\"" ], + "ETag": [ "\"1DC4FC12B35C9A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0f3aab4-bd7e-4225-9af4-56abcd6f94c9" ], + "x-ms-request-id": [ "30d0d203-996f-4f2b-abcf-f7e3ebc6fccd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c71f391-6d74-4590-9992-5fd7e9238f21" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:4c71f391-6d74-4590-9992-5fd7e9238f21" ], + "x-ms-correlation-request-id": [ "1b902886-a987-4c66-a0d9-926b8357fd6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083352Z:1b902886-a987-4c66-a0d9-926b8357fd6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4B913DB48824CE8AF1EB83DDEBE1BCD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B709F518F2B42C3A549AFFA1675EBBA Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8673" ], + "Content-Length": [ "8780" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:12:46.923\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"d2301a18-1f98-4ccb-9ae8-fb76e1b153d0\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:18.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-NewTest5-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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\":\"153bc333-3c44-4043-bcc9-f9b9d3812b3b\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+49": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "e0072d20-7bcd-465e-8a50-4ceff9f45926" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "ec3de871-3e4a-4b65-b5eb-3a406fd31bbf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4732,40 +4840,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4cd769f2-038c-4f20-9b0d-7475129d6dee" ], + "x-ms-request-id": [ "897356ca-3956-4e35-9033-520bf181c649" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9a70157-c833-4d5d-8e41-83a1db2b6cb5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/469c8827-b32f-41a8-9c2a-81d9cae7fb50" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6db7579d-cee1-45e5-a475-7d5b652a426f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:6db7579d-cee1-45e5-a475-7d5b652a426f" ], + "x-ms-correlation-request-id": [ "8d47735b-68d0-4728-8062-67acbc627010" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083352Z:8d47735b-68d0-4728-8062-67acbc627010" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99BFA20A09A7480EBADB3C24CEAAE9D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D07342AE9F2487699AB331DD7F02340 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "da35e143-ce07-48c1-9167-92e4112e535e" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "d87474ab-3894-43d1-bc8b-6e930a097975" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4777,41 +4885,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99e84e27-dd4c-4e8b-bb85-991e2c385c9c" ], + "x-ms-request-id": [ "ac2a092e-7524-47c3-ad7b-b043915e1f9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71030888-57dd-4b00-b148-8a018fc2cdfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93fe415e-ef2a-44ae-8cad-c7ae4c838c6e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c7f0931-9add-4c90-b8d6-b00db200379d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061320Z:4c7f0931-9add-4c90-b8d6-b00db200379d" ], + "x-ms-correlation-request-id": [ "0bba5b60-b0b6-4443-b269-90c7c0f12ffc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083353Z:0bba5b60-b0b6-4443-b269-90c7c0f12ffc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8EB8B7DF79946D1851FFEC1F1B53724 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D793F089CEBA481D89250D41C8EDD495 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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\":29165,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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\":30516,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "524" ], - "x-ms-client-request-id": [ "1947df93-5a0d-48cf-8c0c-ccb9c20499ff" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "f2bf03a4-8f67-4969-a708-74d22576747f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4823,38 +4931,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38fa9cb6-0ef0-4201-ba25-de46761c84ab" ], + "x-ms-request-id": [ "3b740065-d8f5-4d76-b61f-a3639f8d5463" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3632d12-8ec0-41c5-95ce-ded7852b989c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bc783b6-cf38-4237-a1f5-24493f174fde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0b7ec085-63bd-4c93-98f8-3da2e96e755d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061321Z:0b7ec085-63bd-4c93-98f8-3da2e96e755d" ], + "x-ms-correlation-request-id": [ "a7a753c4-796e-4b3d-80ff-e04c369b87ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083353Z:a7a753c4-796e-4b3d-80ff-e04c369b87ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 875B760C203C4D3C8126E19A5FE9724B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF05F9D060034C45ACA0FC90B0FF6A34 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+52": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01+54": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-wktb3qxrdy\"\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"\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": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1941" ] + "Content-Length": [ "1869" ] } }, "Response": { @@ -4862,43 +4970,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3BB8799B0\"" ], + "ETag": [ "\"1DC4FC12B35C9A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7bb3d190-447b-4d43-97da-36a2ece578ec" ], + "x-ms-request-id": [ "c016247d-77d0-4ac6-bb1d-a1597c2233e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d2b31e0-3edb-4d8d-8653-a1181ede0697" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/582396e3-4812-4279-ad6a-bc5d65d42bec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "16c1fbf4-3a12-4173-81ce-7cb88d9fc429" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061324Z:16c1fbf4-3a12-4173-81ce-7cb88d9fc429" ], + "x-ms-correlation-request-id": [ "f99dd7a2-e51f-4db0-90e7-ee0d4ebd5370" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083355Z:f99dd7a2-e51f-4db0-90e7-ee0d4ebd5370" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1075E93ADD8747F993661F74CA5369BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:21Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 509CD82A32BD4A9180871EE2A39CE451 Ref B: MWH011020808025 Ref C: 2025-11-07T08:33:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:33:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8666" ], + "Content-Length": [ "8667" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:54.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "526" ], - "x-ms-client-request-id": [ "bb701206-52fd-41d9-b2fa-5c68dea61b33" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "0e2548d0-0b67-4f05-bf71-734afba0c4f3" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -4908,42 +5016,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3D0FF5BC0\"" ], + "ETag": [ "\"1DC4FC140DC3CD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b2015b7-f932-4a32-bea2-5cc3085ee0b4" ], + "x-ms-request-id": [ "c010a97c-7c9c-4b2d-a16d-be91aeb6927d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb582133-d05f-463c-beb7-1e8f6a09af9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061354Z:bb582133-d05f-463c-beb7-1e8f6a09af9a" ], + "x-ms-correlation-request-id": [ "e8e91e5e-1455-4685-a420-916897e7d427" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083426Z:e8e91e5e-1455-4685-a420-916897e7d427" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53D57566A3CC41B18CFD639C79909918 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:54Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1972A29241BA4218A14DA09C2E1F8F53 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8532" ], + "Content-Length": [ "8641" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:54.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "527" ], - "x-ms-client-request-id": [ "98ea2ea7-b771-4f3f-9f81-f3f7a3e03b5e" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "f1939228-3247-4f3d-9895-dc2a77eaa12b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4954,42 +5062,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3D0FF5BC0\"" ], + "ETag": [ "\"1DC4FC140DC3CD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ea2e4cb-ad05-42a6-a24a-2f32d30b61d1" ], + "x-ms-request-id": [ "f470bbdc-a5f6-4ec2-8ee6-57629be37e91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e492d2fc-f90c-4f98-8f42-f78e0a1f32bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:e492d2fc-f90c-4f98-8f42-f78e0a1f32bd" ], + "x-ms-correlation-request-id": [ "d198af91-d8dd-44b0-8730-5e5a1b36c39e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083426Z:d198af91-d8dd-44b0-8730-5e5a1b36c39e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7970974162F4403393159CB51E66C410 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:54Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9F58652E6C847AB8E02B5CE7CABAF06 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8532" ], + "Content-Length": [ "8641" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:54.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "0de251b1-4b89-499e-bf0c-f1da99bce51c" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "5b22d3ae-be89-4bde-b75a-385b05f5ab4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5001,40 +5109,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "023bbca2-1c46-4273-ba6b-686fcadd8c79" ], + "x-ms-request-id": [ "62703c6b-9bf4-4740-a216-da1b21ce4063" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2fe00af-c52f-47a7-95f8-cc2e2ce47b9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f817bbd1-16f3-4988-b543-50904038ddd0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a0013c29-8008-46cf-a610-dd529d2c20c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:a0013c29-8008-46cf-a610-dd529d2c20c4" ], + "x-ms-correlation-request-id": [ "27a4e82e-de3b-4e8c-812c-6bea824cab98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083426Z:27a4e82e-de3b-4e8c-812c-6bea824cab98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 277782B79E964409AE6BB58EB14BF576 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66680A0281A74C738BFEE136853C1322 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "8a53b6ef-9ff7-4bfe-ab1e-688339d36171" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "b26cee4a-1006-4d7f-86dc-69c433a47eef" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5046,41 +5154,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe277dcb-957d-485f-95d4-b9ef9d317e79" ], + "x-ms-request-id": [ "56c68140-0514-4c33-babc-bf083347479a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/588e2856-3ceb-4434-a202-829770eafb2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7712d3a-f838-4e7c-b45b-3a67ac7903e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e0386025-6005-44fa-a042-4bbcdd168e60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061355Z:e0386025-6005-44fa-a042-4bbcdd168e60" ], + "x-ms-correlation-request-id": [ "da71d599-d995-44aa-a079-7c21dfcb4baa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083427Z:da71d599-d995-44aa-a079-7c21dfcb4baa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78A36D3208554C52A7494CD5F213A429 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75A9D45E99EB4BF88711BF4630472823 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "530" ], - "x-ms-client-request-id": [ "9c97fe2f-34f8-4cad-b67d-083f9bd9c397" ], + "x-ms-unique-id": [ "535" ], + "x-ms-client-request-id": [ "f4a92e98-46ab-4a77-9925-df41e9373365" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5091,42 +5199,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3D0FF5BC0\"" ], + "ETag": [ "\"1DC4FC140DC3CD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9a0e79d-c2c2-4acb-9cd6-f5ad3144fef2" ], + "x-ms-request-id": [ "b90f6921-b5ca-4ab7-81ff-52b461285bca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54d1a0cd-13f4-4b32-9811-03395870a031" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:54d1a0cd-13f4-4b32-9811-03395870a031" ], + "x-ms-correlation-request-id": [ "d28dd639-e4e1-4e8f-a1ef-49714c50dd4c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083427Z:d28dd639-e4e1-4e8f-a1ef-49714c50dd4c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 064F25DD8B174943BDB190CEA9FE189B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:55Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB9F5962E5534D1DB460EAB1DB58D7DA Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8532" ], + "Content-Length": [ "8641" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:22.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\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:33:54.973\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+58": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01+60": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "531" ], - "x-ms-client-request-id": [ "3cda85ab-5a57-4e5e-b864-acc86dc1658a" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "73530c63-caab-4af1-90cf-e0921315fa82" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5138,40 +5246,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b2aa792-3962-4441-a18e-b271e146b2d6" ], + "x-ms-request-id": [ "350c6c2f-938e-4ad0-ab1f-5f4b769b1bbe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7506d7ea-e57f-4bf0-829d-744b873eecf2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20d3d72f-6cf0-4770-831a-39381447e978" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3c7aee00-f6c1-4027-a17d-7022b1455948" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:3c7aee00-f6c1-4027-a17d-7022b1455948" ], + "x-ms-correlation-request-id": [ "70a16f4a-d7b0-4f9e-98d8-7e6b92d55606" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083427Z:70a16f4a-d7b0-4f9e-98d8-7e6b92d55606" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89FD676956E142D6AA006DC8E5495E0D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B319F6E7E0F74545BE5F7202412358FC Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "532" ], - "x-ms-client-request-id": [ "8828bb73-1c73-422a-ad49-fba01bc72833" ], + "x-ms-unique-id": [ "537" ], + "x-ms-client-request-id": [ "48330dc0-9b82-41f2-9ca3-7fbad2a4e8d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5183,41 +5291,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02e960ba-cb11-43a6-bc6c-04b4c842ea7d" ], + "x-ms-request-id": [ "be8644aa-a2bd-484e-aba6-673225f640d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec14647d-f756-438e-ace8-8beb280d4741" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/407d7ce9-3544-4669-ab44-3461b92e75a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "139c314c-343b-4ac9-897f-76a1481ffa88" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:139c314c-343b-4ac9-897f-76a1481ffa88" ], + "x-ms-correlation-request-id": [ "f0214778-42df-4707-8973-28bde1b772ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083428Z:f0214778-42df-4707-8973-28bde1b772ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC03B9CAFEBB438E91CDC2FC52907D82 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1210C422057400482EEF36A0EB3DE45 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34: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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+60": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01+62": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "25df1435-007c-41fd-b5bc-ecfbbb9109f3" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "403b7aa2-2cf2-49cf-9f14-0f4311340c19" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5229,40 +5337,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1f19bba-9d31-49e1-b891-983a5998bbe7" ], + "x-ms-request-id": [ "6b6317cf-c573-429c-bc88-3d815082632f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae7ad031-c8b1-45ef-ba18-1b4436df4155" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/865b35cb-373b-4f1e-bfed-a2082a005876" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4a1137ca-e40f-47d7-9b6a-d272d2a64969" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061356Z:4a1137ca-e40f-47d7-9b6a-d272d2a64969" ], + "x-ms-correlation-request-id": [ "c6d23c9d-2453-40a2-b83e-87da04293c9e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083428Z:c6d23c9d-2453-40a2-b83e-87da04293c9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65D8ABD52EEF4402AB79B48073D6AC65 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:56Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B4CA059FE394293A47F16CE89C09EC4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"}}", "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+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/providers/Microsoft.Insights/components?api-version=2015-05-01+63": { "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": [ "534" ], - "x-ms-client-request-id": [ "e4395888-67a8-433e-8645-7d6bc71730e4" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "9729f82f-cd7a-4e4c-8eb8-508815f69712" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5281,32 +5389,32 @@ "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "cf946405-3c84-40e9-8435-2a85254df4ca" ], - "x-ms-correlation-request-id": [ "cf946405-3c84-40e9-8435-2a85254df4ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061357Z:cf946405-3c84-40e9-8435-2a85254df4ca" ], + "x-ms-request-id": [ "ecf9ad61-2355-40c5-ae08-7bff7cc7d008" ], + "x-ms-correlation-request-id": [ "ecf9ad61-2355-40c5-ae08-7bff7cc7d008" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083428Z:ecf9ad61-2355-40c5-ae08-7bff7cc7d008" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8424D0AFB69459EB3C87EF7F0B27B29 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:57Z" ], - "Date": [ "Thu, 09 Oct 2025 06:13:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33C6814185B042D28392101E2E8D25FA Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "31277" ], + "Content-Length": [ "25301" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"690042c7-0000-0300-0000-68e7499f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-6qf9o2\",\"AppId\":\"c2c5def4-4d23-4f10-8de9-89754de976d1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"644a5932-6487-4d49-b880-b826e253576e\",\"ConnectionString\":\"InstrumentationKey=644a5932-6487-4d49-b880-b826e253576e;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c2c5def4-4d23-4f10-8de9-89754de976d1\",\"Name\":\"Functions-PowerShell-74-6qf9o2\",\"CreationDate\":\"2025-10-09T05:34:54.7889147+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-6qf9o2_c2c5def4-4d23-4f10-8de9-89754de976d1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-6qf9o2-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690005cd-0000-0300-0000-68e74a340000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-h8c4uv\",\"AppId\":\"70ed37cc-52fa-45f8-8792-01a35a484081\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\",\"ConnectionString\":\"InstrumentationKey=034bd992-a14d-4b81-aa94-26c8ed7eadd3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=70ed37cc-52fa-45f8-8792-01a35a484081\",\"Name\":\"Functions-Node-22-h8c4uv\",\"CreationDate\":\"2025-10-09T05:36:17.9855486+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-h8c4uv_70ed37cc-52fa-45f8-8792-01a35a484081_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-h8c4uv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690099cc-0000-0300-0000-68e74a260000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-6-dnrk0q\",\"AppId\":\"cc65cb4f-354f-41a4-b129-015e7f672fe0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\",\"ConnectionString\":\"InstrumentationKey=3ba2b0b5-510e-4c9e-8c35-4491650a1687;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cc65cb4f-354f-41a4-b129-015e7f672fe0\",\"Name\":\"Functions-DotNet-6-dnrk0q\",\"CreationDate\":\"2025-10-09T05:37:34.3207914+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-6-dnrk0q_cc65cb4f-354f-41a4-b129-015e7f672fe0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-6-dnrk0q-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690029d1-0000-0300-0000-68e74a8a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-310-edsbh6\",\"AppId\":\"07d70b1d-7c00-43df-8df8-0dec12f4bf9f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\",\"ConnectionString\":\"InstrumentationKey=0e98373f-3747-4ad7-bc01-ccc21cd6dfa6;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=07d70b1d-7c00-43df-8df8-0dec12f4bf9f\",\"Name\":\"Functions-Python-310-edsbh6\",\"CreationDate\":\"2025-10-09T05:39:01.9601948+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-310-edsbh6_07d70b1d-7c00-43df-8df8-0dec12f4bf9f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-310-edsbh6-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69009bd4-0000-0300-0000-68e74ad30000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf-new\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"AppId\":\"603deece-4203-4054-8737-3eb13240769c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"0b0b7d15-e1d4-4048-9377-05b413368051\",\"ConnectionString\":\"InstrumentationKey=0b0b7d15-e1d4-4048-9377-05b413368051;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=603deece-4203-4054-8737-3eb13240769c\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf-new\",\"CreationDate\":\"2025-10-09T05:40:28.0183363+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-8l0a19iyrf-new_603deece-4203-4054-8737-3eb13240769c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69007ed7-0000-0300-0000-68e74b1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest1-w41plh08gr\",\"name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"AppId\":\"3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"46eeb7c3-c3c7-4b38-98e1-f66f69cec21f\",\"ConnectionString\":\"InstrumentationKey=46eeb7c3-c3c7-4b38-98e1-f66f69cec21f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3b8cb7a9-1a39-46a8-859c-586e03f7ac71\",\"Name\":\"Func-PowerShell-NewTest1-w41plh08gr\",\"CreationDate\":\"2025-10-09T05:40:55.3683639+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-w41plh08gr_3b8cb7a9-1a39-46a8-859c-586e03f7ac71_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-w41plh08gr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69004cdb-0000-0300-0000-68e74b840000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-CustomImage-6qbcpwifmx\",\"name\":\"Functions-CustomImage-6qbcpwifmx\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-6qbcpwifmx\",\"AppId\":\"e9ddb7e5-075f-48e7-a604-ff4b22284179\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bbad4093-7a68-46df-81ac-6b597ad7b16b\",\"ConnectionString\":\"InstrumentationKey=bbad4093-7a68-46df-81ac-6b597ad7b16b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e9ddb7e5-075f-48e7-a604-ff4b22284179\",\"Name\":\"Functions-CustomImage-6qbcpwifmx\",\"CreationDate\":\"2025-10-09T05:43:09.447569+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-6qbcpwifmx_e9ddb7e5-075f-48e7-a604-ff4b22284179_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-6qbcpwifmx-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900fade-0000-0300-0000-68e74be40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-TestAppName-4xrbthc6ij\",\"name\":\"Functions-TestAppName-4xrbthc6ij\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-TestAppName-4xrbthc6ij\",\"AppId\":\"bc6f60a0-1f23-49f7-8218-14e04735648a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"779aeaa2-7977-401f-8017-7a8a63dd1a6d\",\"ConnectionString\":\"InstrumentationKey=779aeaa2-7977-401f-8017-7a8a63dd1a6d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc6f60a0-1f23-49f7-8218-14e04735648a\",\"Name\":\"Functions-TestAppName-4xrbthc6ij\",\"CreationDate\":\"2025-10-09T05:44:37.7380797+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-testappname-4xrbthc6ij_bc6f60a0-1f23-49f7-8218-14e04735648a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-TestAppName-4xrbthc6ij-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900f0e0-0000-0300-0000-68e74c110000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/microsoft.insights/components/Functions-Python-jcai4tloxm\",\"name\":\"Functions-Python-jcai4tloxm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-jcai4tloxm\",\"AppId\":\"edc06622-67e1-40ea-b636-abe100011ad9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5b9248eb-d543-4c30-b6a2-cbee25bfc09f\",\"ConnectionString\":\"InstrumentationKey=5b9248eb-d543-4c30-b6a2-cbee25bfc09f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edc06622-67e1-40ea-b636-abe100011ad9\",\"Name\":\"Functions-Python-jcai4tloxm\",\"CreationDate\":\"2025-10-09T05:45:19.1816838+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-jcai4tloxm_edc06622-67e1-40ea-b636-abe100011ad9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-jcai4tloxm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69006de4-0000-0300-0000-68e74c680000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c60160b5-1df3-403a-ae09-477312b2167d\",\"ConnectionString\":\"InstrumentationKey=c60160b5-1df3-403a-ae09-477312b2167d;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4410ee6b-fa30-4aa6-80c2-d8bed8c860be\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:46:59.3886076+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-8l0a19iyrf_4410ee6b-fa30-4aa6-80c2-d8bed8c860be_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69000ff0-0000-0300-0000-68e74d7f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"cea16b4b-c7ca-422e-b868-46ce02d96294\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ebecf32f-9377-4600-b17b-d26dd57bdd81\",\"ConnectionString\":\"InstrumentationKey=ebecf32f-9377-4600-b17b-d26dd57bdd81;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=cea16b4b-c7ca-422e-b868-46ce02d96294\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:48:50.5382076+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-8l0a19iyrf_cea16b4b-c7ca-422e-b868-46ce02d96294_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6900f7f0-0000-0300-0000-68e74d970000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-DotNet-8ae9thv0pn\",\"name\":\"Functions-DotNet-8ae9thv0pn\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8ae9thv0pn\",\"AppId\":\"882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f3ec4fb2-d80b-4510-aa34-7b544e9d4361\",\"ConnectionString\":\"InstrumentationKey=f3ec4fb2-d80b-4510-aa34-7b544e9d4361;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=882b5dc6-655a-4f8b-9cff-8bb93f098cb9\",\"Name\":\"Functions-DotNet-8ae9thv0pn\",\"CreationDate\":\"2025-10-09T05:52:02.2302285+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-8ae9thv0pn_882b5dc6-655a-4f8b-9cff-8bb93f098cb9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8ae9thv0pn-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"69005ff7-0000-0300-0000-68e74e390000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-n63k2zl8s1\",\"AppId\":\"edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"be43f23c-478e-4712-ad8c-52104fbcde0f\",\"ConnectionString\":\"InstrumentationKey=be43f23c-478e-4712-ad8c-52104fbcde0f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=edaec8cc-9f4d-4da8-9bac-b10c8d42651f\",\"Name\":\"Functions-Java-n63k2zl8s1\",\"CreationDate\":\"2025-10-09T05:54:58.184581+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-n63k2zl8s1_edaec8cc-9f4d-4da8-9bac-b10c8d42651f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690056fa-0000-0300-0000-68e74e830000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-Node-5ys83coe4k\",\"name\":\"Functions-Node-5ys83coe4k\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-5ys83coe4k\",\"AppId\":\"1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8779f78e-5d73-455c-85c7-7e48c434f08c\",\"ConnectionString\":\"InstrumentationKey=8779f78e-5d73-455c-85c7-7e48c434f08c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b7ffc5b-2de3-4ad1-b715-c59b306935a6\",\"Name\":\"Functions-Node-5ys83coe4k\",\"CreationDate\":\"2025-10-09T05:56:11.3214483+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-5ys83coe4k_1b7ffc5b-2de3-4ad1-b715-c59b306935a6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-5ys83coe4k-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"690090fd-0000-0300-0000-68e74ed00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf\",\"name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-8l0a19iyrf\",\"AppId\":\"a2e23061-6e60-4732-9a62-d9506b484be6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"81f30117-f079-4303-9ab4-cc64b23fdc04\",\"ConnectionString\":\"InstrumentationKey=81f30117-f079-4303-9ab4-cc64b23fdc04;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=a2e23061-6e60-4732-9a62-d9506b484be6\",\"Name\":\"Functions-PowerShellTest-8l0a19iyrf\",\"CreationDate\":\"2025-10-09T05:57:25.9307232+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-8l0a19iyrf_a2e23061-6e60-4732-9a62-d9506b484be6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a001405-0000-0300-0000-68e74f6b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-DotNet-Isolated279k80n3oe\",\"name\":\"Functions-DotNet-Isolated279k80n3oe\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated279k80n3oe\",\"AppId\":\"18182e7d-7fa9-4a35-b63a-8203c339e208\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"32a3312d-4213-42d7-ae86-1012107e72a2\",\"ConnectionString\":\"InstrumentationKey=32a3312d-4213-42d7-ae86-1012107e72a2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=18182e7d-7fa9-4a35-b63a-8203c339e208\",\"Name\":\"Functions-DotNet-Isolated279k80n3oe\",\"CreationDate\":\"2025-10-09T05:58:56.8819319+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-isolated279k80n3oe_18182e7d-7fa9-4a35-b63a-8203c339e208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated279k80n3oe-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a002f09-0000-0300-0000-68e74fb00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-Java-n63k2zl8s1\",\"name\":\"Functions-Java-n63k2zl8s1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-n63k2zl8s1\",\"AppId\":\"8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bc1cea38-cd52-446d-a51c-1f370f52fa5b\",\"ConnectionString\":\"InstrumentationKey=bc1cea38-cd52-446d-a51c-1f370f52fa5b;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd\",\"Name\":\"Functions-Java-n63k2zl8s1\",\"CreationDate\":\"2025-10-09T06:00:38.0476754+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-n63k2zl8s1_8dd5137a-23c0-4caf-80a8-d3d9a8a2d9fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-n63k2zl8s1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a008d10-0000-0300-0000-68e7501f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-CustomHandlerlk9q0p4fot\",\"name\":\"Functions-CustomHandlerlk9q0p4fot\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlerlk9q0p4fot\",\"AppId\":\"2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a531e3e0-7484-48ea-8dfd-ef86644583c4\",\"ConnectionString\":\"InstrumentationKey=a531e3e0-7484-48ea-8dfd-ef86644583c4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=2365ecb6-a03a-4d03-9da0-f7f040fed90c\",\"Name\":\"Functions-CustomHandlerlk9q0p4fot\",\"CreationDate\":\"2025-10-09T06:02:30.7826567+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlerlk9q0p4fot_2365ecb6-a03a-4d03-9da0-f7f040fed90c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlerlk9q0p4fot-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a00ea18-0000-0300-0000-68e750b90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest2-mj4vdfk5w1\",\"name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"AppId\":\"bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0c0a27c4-e522-4085-afb0-22bef589eac2\",\"ConnectionString\":\"InstrumentationKey=0c0a27c4-e522-4085-afb0-22bef589eac2;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=bc4b7d5d-9334-4e3d-a76a-8254a44a5086\",\"Name\":\"Func-PowerShell-NewTest2-mj4vdfk5w1\",\"CreationDate\":\"2025-10-09T06:05:15.4782138+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-mj4vdfk5w1_bc4b7d5d-9334-4e3d-a76a-8254a44a5086_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-mj4vdfk5w1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a00a721-0000-0300-0000-68e7514a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest3-5f2nspxwh0\",\"name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"AppId\":\"485971cc-b36d-44d5-b806-e6b6577a78f5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3b594e82-228a-41ab-bbc1-c8f7074fd084\",\"ConnectionString\":\"InstrumentationKey=3b594e82-228a-41ab-bbc1-c8f7074fd084;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=485971cc-b36d-44d5-b806-e6b6577a78f5\",\"Name\":\"Func-PowerShell-NewTest3-5f2nspxwh0\",\"CreationDate\":\"2025-10-09T06:07:31.0176348+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-5f2nspxwh0_485971cc-b36d-44d5-b806-e6b6577a78f5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-5f2nspxwh0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6a000c2b-0000-0300-0000-68e751fe0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"AppId\":\"e0c61f15-820d-4d0b-9839-a86a2748c341\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"54d8cd57-d8fa-474c-bd1f-fed4dad17e1f\",\"ConnectionString\":\"InstrumentationKey=54d8cd57-d8fa-474c-bd1f-fed4dad17e1f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=e0c61f15-820d-4d0b-9839-a86a2748c341\",\"Name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"CreationDate\":\"2025-10-09T06:10:38.6324793+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-jndk42cwv8_e0c61f15-820d-4d0b-9839-a86a2748c341_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-jndk42cwv8-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"d203da75-0000-0300-0000-690da7820000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-7o3paq\",\"AppId\":\"9c0cbeee-7685-4425-88be-92b03021bf0e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3\",\"ConnectionString\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\",\"Name\":\"Functions-PowerShell-74-7o3paq\",\"CreationDate\":\"2025-11-07T08:02:06.0406216+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-7o3paq_9c0cbeee-7685-4425-88be-92b03021bf0e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-7o3paq-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d203ec8d-0000-0300-0000-690da7da0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/microsoft.insights/components/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-hjkt2c\",\"AppId\":\"6615c5f6-4440-43eb-928e-853b5072d01b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120\",\"ConnectionString\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\",\"Name\":\"Functions-Node-22-hjkt2c\",\"CreationDate\":\"2025-11-07T08:03:32.2863713+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-hjkt2c_6615c5f6-4440-43eb-928e-853b5072d01b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-hjkt2c-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d203a29e-0000-0300-0000-690da8160000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/microsoft.insights/components/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-3ohq2r\",\"AppId\":\"5eade4c9-5e82-4a47-abaa-547ad0566c04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"2134c87b-cfee-44cf-8570-f1dc4de97d7c\",\"ConnectionString\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\",\"Name\":\"Functions-DotNet-8-3ohq2r\",\"CreationDate\":\"2025-11-07T08:04:32.8952862+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-3ohq2r_5eade4c9-5e82-4a47-abaa-547ad0566c04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-3ohq2r-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d20342b5-0000-0300-0000-690da86b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-n6bm1u\",\"AppId\":\"5f1d8f2f-9a27-422e-b847-9b56808816cf\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"01a4fa1c-5286-4d93-8f3a-e1e02ce6de37\",\"ConnectionString\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\",\"Name\":\"Functions-Python-312-n6bm1u\",\"CreationDate\":\"2025-11-07T08:05:58.7540785+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-n6bm1u_5f1d8f2f-9a27-422e-b847-9b56808816cf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-n6bm1u-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d20362c7-0000-0300-0000-690da8b10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4-new\",\"name\":\"Functions-PowerShellTest-hup7w2scx4-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-hup7w2scx4-new\",\"AppId\":\"9160be7f-3d91-4e74-a7f7-2247652fdbe4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"89d1c388-71d0-4c76-b7b8-b0f15ebf1303\",\"ConnectionString\":\"InstrumentationKey=89d1c388-71d0-4c76-b7b8-b0f15ebf1303;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9160be7f-3d91-4e74-a7f7-2247652fdbe4\",\"Name\":\"Functions-PowerShellTest-hup7w2scx4-new\",\"CreationDate\":\"2025-11-07T08:07:08.5767539+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-hup7w2scx4-new_9160be7f-3d91-4e74-a7f7-2247652fdbe4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d20315d0-0000-0300-0000-690da8d40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest1-7enhzr3v45\",\"name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"AppId\":\"63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4c2349e6-2cfd-452d-bb35-7ab78efd85f7\",\"ConnectionString\":\"InstrumentationKey=4c2349e6-2cfd-452d-bb35-7ab78efd85f7;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=63bbfe46-61eb-4032-b687-0ae1fd11b8a7\",\"Name\":\"Func-PowerShell-NewTest1-7enhzr3v45\",\"CreationDate\":\"2025-11-07T08:07:43.4840713+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-7enhzr3v45_63bbfe46-61eb-4032-b687-0ae1fd11b8a7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-7enhzr3v45-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d203a3ea-0000-0300-0000-690da93a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/microsoft.insights/components/Functions-CustomImage-kwj3tq4zua\",\"name\":\"Functions-CustomImage-kwj3tq4zua\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-kwj3tq4zua\",\"AppId\":\"1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bfd76a48-6560-40b1-b7a5-d1074e13bd74\",\"ConnectionString\":\"InstrumentationKey=bfd76a48-6560-40b1-b7a5-d1074e13bd74;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d\",\"Name\":\"Functions-CustomImage-kwj3tq4zua\",\"CreationDate\":\"2025-11-07T08:09:26.2322077+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-kwj3tq4zua_1c9f656a-1fd3-4e0b-ab9b-66913b4cbc3d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-kwj3tq4zua-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d3034110-0000-0300-0000-690da9c60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/microsoft.insights/components/Functions-Python-ohwj1te7lf\",\"name\":\"Functions-Python-ohwj1te7lf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-ohwj1te7lf\",\"AppId\":\"8b918d4a-92f9-4cd2-8b7a-90517dc93425\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ad7acc56-8da1-422f-b305-d030411a305a\",\"ConnectionString\":\"InstrumentationKey=ad7acc56-8da1-422f-b305-d030411a305a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=8b918d4a-92f9-4cd2-8b7a-90517dc93425\",\"Name\":\"Functions-Python-ohwj1te7lf\",\"CreationDate\":\"2025-11-07T08:11:46.8601234+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-ohwj1te7lf_8b918d4a-92f9-4cd2-8b7a-90517dc93425_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-ohwj1te7lf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d303d122-0000-0300-0000-690daa0a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4\",\"name\":\"Functions-PowerShellTest-hup7w2scx4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-hup7w2scx4\",\"AppId\":\"374e7aee-deff-44c3-a89e-562bf281dd0e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"543764a0-472d-41c9-bb9d-12e05ac971af\",\"ConnectionString\":\"InstrumentationKey=543764a0-472d-41c9-bb9d-12e05ac971af;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=374e7aee-deff-44c3-a89e-562bf281dd0e\",\"Name\":\"Functions-PowerShellTest-hup7w2scx4\",\"CreationDate\":\"2025-11-07T08:12:55.348328+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-hup7w2scx4_374e7aee-deff-44c3-a89e-562bf281dd0e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d303f971-0000-0300-0000-690dab220000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-DotNet-yvmb5achgj\",\"name\":\"Functions-DotNet-yvmb5achgj\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-yvmb5achgj\",\"AppId\":\"16a76f21-1ee5-4481-8eae-06c31e91645f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e1039b65-53b2-46c5-9809-3ed6ac49794a\",\"ConnectionString\":\"InstrumentationKey=e1039b65-53b2-46c5-9809-3ed6ac49794a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=16a76f21-1ee5-4481-8eae-06c31e91645f\",\"Name\":\"Functions-DotNet-yvmb5achgj\",\"CreationDate\":\"2025-11-07T08:17:34.365051+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-yvmb5achgj_16a76f21-1ee5-4481-8eae-06c31e91645f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-yvmb5achgj-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d30398a9-0000-0300-0000-690dabc00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-Java-ge0rjbhmz4\",\"name\":\"Functions-Java-ge0rjbhmz4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-ge0rjbhmz4\",\"AppId\":\"50e6341f-0958-40b7-823c-dcf65e3a608e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7ae02cbb-d616-446f-b41a-68afce5f98ac\",\"ConnectionString\":\"InstrumentationKey=7ae02cbb-d616-446f-b41a-68afce5f98ac;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=50e6341f-0958-40b7-823c-dcf65e3a608e\",\"Name\":\"Functions-Java-ge0rjbhmz4\",\"CreationDate\":\"2025-11-07T08:20:11.5168939+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-ge0rjbhmz4_50e6341f-0958-40b7-823c-dcf65e3a608e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-ge0rjbhmz4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d30357c0-0000-0300-0000-690dac060000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/microsoft.insights/components/Functions-Node-nihrl65d71\",\"name\":\"Functions-Node-nihrl65d71\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-nihrl65d71\",\"AppId\":\"5923f3f8-c244-47e3-8887-7a65494a1d00\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"89ef16e7-2af1-4430-9b65-fef64522a17a\",\"ConnectionString\":\"InstrumentationKey=89ef16e7-2af1-4430-9b65-fef64522a17a;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5923f3f8-c244-47e3-8887-7a65494a1d00\",\"Name\":\"Functions-Node-nihrl65d71\",\"CreationDate\":\"2025-11-07T08:21:22.9099258+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-nihrl65d71_5923f3f8-c244-47e3-8887-7a65494a1d00_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-nihrl65d71-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d30389d5-0000-0300-0000-690dac4e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-DotNet-Isolated5ot0916drm\",\"name\":\"Functions-DotNet-Isolated5ot0916drm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated5ot0916drm\",\"AppId\":\"82d3a75f-48f7-4adc-94e9-f6147e42bcdc\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e58e4e9e-a8dc-413c-9295-7c2fad74707f\",\"ConnectionString\":\"InstrumentationKey=e58e4e9e-a8dc-413c-9295-7c2fad74707f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=82d3a75f-48f7-4adc-94e9-f6147e42bcdc\",\"Name\":\"Functions-DotNet-Isolated5ot0916drm\",\"CreationDate\":\"2025-11-07T08:22:32.3698259+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-isolated5ot0916drm_82d3a75f-48f7-4adc-94e9-f6147e42bcdc_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated5ot0916drm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d30395ef-0000-0300-0000-690daca90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-CustomHandlertwp2s9of3r\",\"name\":\"Functions-CustomHandlertwp2s9of3r\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlertwp2s9of3r\",\"AppId\":\"f333304f-b6e9-464d-8d22-5825ff2b08c3\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e55d0175-3bd7-4da4-a008-25e7860a0743\",\"ConnectionString\":\"InstrumentationKey=e55d0175-3bd7-4da4-a008-25e7860a0743;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=f333304f-b6e9-464d-8d22-5825ff2b08c3\",\"Name\":\"Functions-CustomHandlertwp2s9of3r\",\"CreationDate\":\"2025-11-07T08:24:05.2663109+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlertwp2s9of3r_f333304f-b6e9-464d-8d22-5825ff2b08c3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlertwp2s9of3r-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d403cc15-0000-0300-0000-690dad360000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest2-c8srqjgdz9\",\"name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"AppId\":\"771a9614-dcbe-41e4-ba1d-dc69423bb380\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"72164e82-f05c-4a6d-9ffa-6eee64106837\",\"ConnectionString\":\"InstrumentationKey=72164e82-f05c-4a6d-9ffa-6eee64106837;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=771a9614-dcbe-41e4-ba1d-dc69423bb380\",\"Name\":\"Func-PowerShell-NewTest2-c8srqjgdz9\",\"CreationDate\":\"2025-11-07T08:26:25.1893119+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-c8srqjgdz9_771a9614-dcbe-41e4-ba1d-dc69423bb380_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-c8srqjgdz9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d4031d38-0000-0300-0000-690dadb80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest3-cev8lsnbd7\",\"name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"AppId\":\"eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"94abac36-1744-4365-941f-872418327c15\",\"ConnectionString\":\"InstrumentationKey=94abac36-1744-4365-941f-872418327c15;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad\",\"Name\":\"Func-PowerShell-NewTest3-cev8lsnbd7\",\"CreationDate\":\"2025-11-07T08:28:37.1261612+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-cev8lsnbd7_eab1de0d-5fc8-4a04-98f8-e8dee4ef13ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-cev8lsnbd7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"d403dc63-0000-0300-0000-690dae5a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"AppId\":\"1b6d477b-5992-4a09-afcf-7fd234af3004\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"993ed38f-e3c2-42cc-8c9a-818739ac2ff4\",\"ConnectionString\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"Name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"CreationDate\":\"2025-11-07T08:31:18.8911312+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-wktb3qxrdy_1b6d477b-5992-4a09-afcf-7fd234af3004_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-wktb3qxrdy-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01+62": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01+64": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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-jndk42cwv8\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"0b0b7d15-e1d4-4048-9377-05b413368051\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-wktb3qxrdy\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"89d1c388-71d0-4c76-b7b8-b0f15ebf1303\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1898" ] + "Content-Length": [ "1961" ] } }, "Response": { @@ -5314,43 +5422,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3D0FF5BC0\"" ], + "ETag": [ "\"1DC4FC140DC3CD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e6e9aa3-f833-4179-8501-44efdd43c83a" ], + "x-ms-request-id": [ "e4feb812-377a-4c8e-8906-ff1fd54a3bf5" ], "X-AspNet-Version": [ "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/1626f9df-201f-4863-b9bf-273058c79a04" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/e8759454-fc03-45f8-b6fe-fe2b8b5930c2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9b0bd68c-7c98-4b29-93ef-0125bd607089" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061400Z:9b0bd68c-7c98-4b29-93ef-0125bd607089" ], + "x-ms-correlation-request-id": [ "fa7acd60-1da5-4ca9-93cc-eea054a32778" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T083432Z:fa7acd60-1da5-4ca9-93cc-eea054a32778" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C73030E8B174DBFA7BA1D90FC1377B1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:13:57Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A4B1881B38B4D8489E41A7858A35D60 Ref B: MWH011020808025 Ref C: 2025-11-07T08:34:28Z" ], + "Date": [ "Fri, 07 Nov 2025 08:34:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8666" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow 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-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:34:29.89\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "536" ], - "x-ms-client-request-id": [ "cb6d2685-f490-4cc5-9503-c28d4679f2dd" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "9155150e-61cb-4943-8e56-e210ef618fa6" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -5360,42 +5468,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3E6930A40\"" ], + "ETag": [ "\"1DC4FC155AC2620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3f58080-198f-44e6-a624-9b23ba2a5f6d" ], + "x-ms-request-id": [ "eedba6a8-4b8b-4bf5-9d17-770d17677d56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f250fce8-e26a-4309-a5ae-d5fecfb46852" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061431Z:f250fce8-e26a-4309-a5ae-d5fecfb46852" ], + "x-ms-correlation-request-id": [ "bacb2271-6489-480d-9e63-89fb721d0174" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083502Z:bacb2271-6489-480d-9e63-89fb721d0174" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 752CA8179408443DBD194ED270FF3E28 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D16D2F857E34B34A5F847BD6B6C4590 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8532" ], + "Content-Length": [ "8640" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:34:29.89\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "537" ], - "x-ms-client-request-id": [ "05af80cb-588b-4d15-98b8-50bf2744a605" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "584f0d96-d891-41dc-9298-fc512abe832f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5407,40 +5515,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c92fd646-d829-40e5-896f-cfcbac232aa6" ], + "x-ms-request-id": [ "5e9abb6d-654b-45d0-aebf-115cfb303858" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7312b8bd-9761-4f80-99ff-3e1977d9bcd3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e82f6e1b-755e-4290-93ea-8d310487dd63" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3a2d7d5a-fc03-40b3-b20f-d04d6d628340" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:3a2d7d5a-fc03-40b3-b20f-d04d6d628340" ], + "x-ms-correlation-request-id": [ "a4ef7023-f0e5-48bd-9a80-77e672546198" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083503Z:a4ef7023-f0e5-48bd-9a80-77e672546198" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CBC10A34FBF441AD911C90F8AED96E48 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32431ABC365A4F97BA7576CEF196F67B Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0b0b7d15-e1d4-4048-9377-05b413368051\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"89d1c388-71d0-4c76-b7b8-b0f15ebf1303\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "538" ], - "x-ms-client-request-id": [ "2a9c57df-2d0f-47af-9701-af49800fde41" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "e3bf581f-516d-4406-8479-b797df9176b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5451,42 +5559,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3E6930A40\"" ], + "ETag": [ "\"1DC4FC155AC2620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47ca107b-a943-4bb6-a74f-45f28ef9b595" ], + "x-ms-request-id": [ "7ed0241e-f0d1-4283-96cf-c3c0323d21dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3da1d6ec-4c02-4203-b258-2616ef5a2875" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:3da1d6ec-4c02-4203-b258-2616ef5a2875" ], + "x-ms-correlation-request-id": [ "2a0d6f67-b85c-44c1-92c7-9d9a785e4791" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083503Z:2a0d6f67-b85c-44c1-92c7-9d9a785e4791" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF697083B8664E91945ADEDDB2735A61 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 493E984784E64B79AB77BF3A3D2CA35B Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8532" ], + "Content-Length": [ "8640" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest5-jndk42cwv8\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"func-powershell-newtest5-jndk42cwv8.scm.azurewebsites.net\"],\"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-jndk42cwv8.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-jndk42cwv8.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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:13:59.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-NewTest5-jndk42cwv8\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-jndk42cwv8\\\\$Func-PowerShell-NewTest5-jndk42cwv8\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest5-jndk42cwv8.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest5-wktb3qxrdy\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"func-powershell-newtest5-wktb3qxrdy.scm.azurewebsites.net\"],\"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-wktb3qxrdy.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-wktb3qxrdy.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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:34:29.89\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-wktb3qxrdy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest5-wktb3qxrdy\\\\$Func-PowerShell-NewTest5-wktb3qxrdy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest5-wktb3qxrdy.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01+66": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01+68": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "539" ], - "x-ms-client-request-id": [ "f6851d14-a3bc-4fce-8d65-c2229cc78e29" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "2492a123-8d9a-4ea8-8234-4552b6da63cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5498,40 +5606,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "205e5bc9-e711-4bf8-ba39-317d46f8b872" ], + "x-ms-request-id": [ "14f0eb76-7a8e-4c07-b99b-d813f9552aed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67f7464c-9b97-4f58-9e86-10f94cab6c93" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8df0818d-09ae-4f54-91b3-540f6f828907" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "27b8bd3b-a571-4bac-8de8-419858889739" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:27b8bd3b-a571-4bac-8de8-419858889739" ], + "x-ms-correlation-request-id": [ "7bbd8ec0-49d6-4494-8f42-72188115d822" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083503Z:7bbd8ec0-49d6-4494-8f42-72188115d822" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC1848199A654C349966B3D96AC94AC9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D085D62D10BC4A27953DA6B1CC7D52AD Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1248" ], + "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-jndk42cwv8\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0b0b7d15-e1d4-4048-9377-05b413368051\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-wktb3qxrdy\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=993ed38f-e3c2-42cc-8c9a-818739ac2ff4;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=1b6d477b-5992-4a09-afcf-7fd234af3004\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"89d1c388-71d0-4c76-b7b8-b0f15ebf1303\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01+69": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "540" ], - "x-ms-client-request-id": [ "27305ca8-c944-4595-950e-8f01bf31e084" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "fa4e9d92-c92f-4aa2-9e0a-b199f635ce0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5543,41 +5651,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "089199f8-6824-4c51-83b0-7961f8396365" ], + "x-ms-request-id": [ "37566e32-4508-4c56-b0f5-30ef37251646" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d92c8f4-4088-4578-af71-72a042e7e9cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0952a89b-d3f9-47bf-a591-4d537025f5e9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "738e5e79-1ad4-46b4-b133-6f0c364856b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061432Z:738e5e79-1ad4-46b4-b133-6f0c364856b6" ], + "x-ms-correlation-request-id": [ "e0bcabfe-9f6d-4b26-8c30-9c815b78d5df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083504Z:e0bcabfe-9f6d-4b26-8c30-9c815b78d5df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAFB5A3760C54A0ABCEBED2E7674E8C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0328575D2484D13989C0E1531931FD4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35: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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8/config/web\",\"name\":\"Func-PowerShell-NewTest5-jndk42cwv8\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy/config/web\",\"name\":\"Func-PowerShell-NewTest5-wktb3qxrdy\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+68": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+70": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-jndk42cwv8?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-wktb3qxrdy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "57252e80-4600-4315-ba81-d9600b1b1c49" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "400f71d8-f26a-4351-ad94-45285f7130d6" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5588,20 +5696,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E3E6930A40\"" ], + "ETag": [ "\"1DC4FC155AC2620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a602a84-c0b8-4011-9e55-d1907876b848" ], + "x-ms-request-id": [ "04e7c3aa-f9a2-4120-9bf9-11509eb67086" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/39b468ed-032a-46ac-b5a2-6f5605c36a99" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/216d0b54-aae4-4804-91a3-59e0ab526132" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "9a7831ca-4380-4fc8-a039-03211298d828" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061444Z:9a7831ca-4380-4fc8-a039-03211298d828" ], + "x-ms-correlation-request-id": [ "76a33a57-5c20-47d1-9d8f-b1abf1d6e39c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083513Z:76a33a57-5c20-47d1-9d8f-b1abf1d6e39c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9872FFEA1D4E469895C2238F683DEE80 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73893D6380D64F1CB642A6F8F515C59B Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5611,19 +5719,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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01+71": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "40505cd2-f4e5-4eb3-9de6-d289234416d5" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "159f9f08-0008-4051-98bd-d9f9bf1b09b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5635,40 +5743,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f27829e-7771-4f12-a9e9-b1da73e550e9" ], + "x-ms-request-id": [ "ed95d29d-67af-4d0c-b7d3-ea7193dd8e89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86eb526d-d5f9-4b2f-badf-1220b7a95816" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061445Z:86eb526d-d5f9-4b2f-badf-1220b7a95816" ], + "x-ms-correlation-request-id": [ "894655f6-c1ec-4f5f-a8a0-6363a0aefbc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083514Z:894655f6-c1ec-4f5f-a8a0-6363a0aefbc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E78A243BD9524B9F86C883B90A22805A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAEF3310C2FD4376ADE25B8966AD0758 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5\",\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52684,\"name\":\"Func-Windows-Premium-New3-vno1b5\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52684\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:09:57.913\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz\",\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53453,\"name\":\"Func-Windows-Premium-New3-vb54yz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53453\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:30:40.827\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01+70": { + "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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01+72": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vno1b5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-vb54yz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "543" ], - "x-ms-client-request-id": [ "8e6d2667-1d46-4f4d-b9cd-3552407ba9a4" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "61954e3b-8e0e-485c-b054-59c33298b3d2" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5680,18 +5788,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5019e70-edfd-488b-b51e-1859ea9c71fb" ], + "x-ms-request-id": [ "64adc5d2-40cf-4e76-bf91-eff410114e8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72db17e2-8f0d-4053-807e-5a41e52529ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02815cee-7071-433f-a586-528a28591791" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "39de8e2c-def3-4ccf-a557-0a9b2f2ed95e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061452Z:39de8e2c-def3-4ccf-a557-0a9b2f2ed95e" ], + "x-ms-correlation-request-id": [ "66f586d4-eb27-45e8-85ab-4108857053ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083520Z:66f586d4-eb27-45e8-85ab-4108857053ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C0DDA98AA814E9B9290CE3A49A9D14C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CC3B92530D94FFFAC10A6C483D6C826 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5701,19 +5809,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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01+73": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "b484c1dd-496f-4d68-91cb-d45ea06e7be6" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "3186cf7a-30cb-40a2-a688-b682526e3077" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5725,40 +5833,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d594f0ef-7bef-4bd6-adcf-3c20d79750d8" ], + "x-ms-request-id": [ "2cd3e1f2-b28e-4d90-ab27-c415e247a5f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4cdfebfd-fece-4d0c-a113-beea26140625" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061452Z:4cdfebfd-fece-4d0c-a113-beea26140625" ], + "x-ms-correlation-request-id": [ "51948738-c410-45d2-901a-b609773e0bda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083520Z:51948738-c410-45d2-901a-b609773e0bda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4309BFA4BE848D3825563BE923E6600 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:52Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C92AA7C1266544489962068749E4DA30 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52685,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52685\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:12:06.31\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53454,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53454\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:32:39.04\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01+72": { + "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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01+74": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "6a03bc28-b074-482d-bdcd-daed6bf4989b" ], + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "da9a4165-da79-431c-86b3-9084834240b4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5770,18 +5878,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a389909-eacb-4347-b4e6-ed821c4346e9" ], + "x-ms-request-id": [ "b838decc-9c7e-4b41-99a7-a9da4732f009" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d12f584-5f3b-4ae0-a42a-7fe0302420e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/308839b1-0b1f-4796-bbb1-f91abca42df9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d50b6769-c821-405c-8863-54f8576dd2ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061459Z:d50b6769-c821-405c-8863-54f8576dd2ab" ], + "x-ms-correlation-request-id": [ "8e57b96e-1010-4a1a-a521-3b858ddf2a54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083526Z:8e57b96e-1010-4a1a-a521-3b858ddf2a54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0991DAA5D8634668BC270A2E9E9CD0A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:52Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 892EA187CA9442749294654C228D8937 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], 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 623f4054400c..9145220c0aee 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": [ "546" ], - "x-ms-client-request-id": [ "8e2b1b93-afbd-4bc9-b653-693ae78e05dd" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "d1c561d9-2a2c-42bd-9d6b-86e464ad477a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "c48567cf-e94e-4f2e-872d-151540ddc28c" ], + "x-ms-request-id": [ "c73da713-4194-4093-8b43-5b6b2bb3dda4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0909c24-965a-4449-8f4d-cce36c63d454" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15731cee-5e1e-41f6-aa3b-ab32956722bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b052faa9-363b-43e9-9728-50fa95d1f3ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061459Z:b052faa9-363b-43e9-9728-50fa95d1f3ab" ], + "x-ms-correlation-request-id": [ "f393fc85-9644-42ac-acaa-8e17fbad0987" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083527Z:f393fc85-9644-42ac-acaa-8e17fbad0987" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0E9A14E95294165A35A64ABF3D88834 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:14:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 50507DC6FA12416F8D42BADF9A71AA83 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "\"1DC38E40E4B7F40\"" ], + "ETag": [ "\"1DC4FC179664460\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62c2638a-1751-4b81-99d9-2d6e13a40d2d" ], + "x-ms-request-id": [ "c2c39883-1ff7-406a-b0b6-332e59e34e77" ], "X-AspNet-Version": [ "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/67a76c9a-d002-44d2-94f1-62a0f3763d3e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-correlation-request-id": [ "36e8dd11-bc1a-4831-8b37-432475080683" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061507Z:36e8dd11-bc1a-4831-8b37-432475080683" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fdd0e7be-0fb0-44f3-a482-013ffb2b33ff" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "939065c5-4604-499b-83f1-d34584a88ab2" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083531Z:939065c5-4604-499b-83f1-d34584a88ab2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5ADDAB66C204EEB897350F2D8005E21 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:14:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F30F3748C1A646B495D8C5BDE1259DD4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:35:27Z" ], + "Date": [ "Fri, 07 Nov 2025 08:35:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "548" ], - "x-ms-client-request-id": [ "905c3f5f-3b91-4d99-8c75-ef9b5edf1ded" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "04498e5a-bd80-458b-90fa-d97148bbedbb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f06d768-66aa-4814-8f82-51a49bbb258d" ], + "x-ms-request-id": [ "c7ba993f-914d-4461-ac9f-6890d4eb7655" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ed7643ef-68be-481e-9eaf-e20e4b216abe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061537Z:ed7643ef-68be-481e-9eaf-e20e4b216abe" ], + "x-ms-correlation-request-id": [ "d44da8ce-df07-4d7f-be93-53c150d06dee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083602Z:d44da8ce-df07-4d7f-be93-53c150d06dee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 822C6AD19C6C49C188427949250A55A2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CB8F242AB3B45F8B25B1E4571DFB9BD Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "905c3f5f-3b91-4d99-8c75-ef9b5edf1ded" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "04498e5a-bd80-458b-90fa-d97148bbedbb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cfe599c5-3a8f-4af0-8586-323563559aa6" ], + "x-ms-request-id": [ "ba170f6d-40d5-403a-ab42-381b643a7010" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "21677599-fa37-49ec-961e-1fcd871ca187" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061538Z:21677599-fa37-49ec-961e-1fcd871ca187" ], + "x-ms-correlation-request-id": [ "409a9214-7199-4ff0-a3cc-5b7bbc488473" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083602Z:409a9214-7199-4ff0-a3cc-5b7bbc488473" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91661A9E3C734B90B1A430D42D818F90 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72DF782EF0AA4AD0A11DD1841454D7A1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "550" ], - "x-ms-client-request-id": [ "76ef8e84-ba6c-49fc-b8c1-96a2980a4b58" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "8bee48e5-5810-4dcf-b22b-099be57070da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "13126b2c-c38d-493b-bfad-a3ad00c8801c" ], + "x-ms-request-id": [ "7b4372cd-6727-494e-821d-7548ade3a8db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9966d259-87bb-43d9-9998-6957cf3b5715" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061538Z:9966d259-87bb-43d9-9998-6957cf3b5715" ], + "x-ms-correlation-request-id": [ "25e3ccc9-7c8a-431d-8109-17a63d788685" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083602Z:25e3ccc9-7c8a-431d-8109-17a63d788685" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 50D5D6AE836542A4924342642F636C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 047CB8B0C6944DFA9F0444B89188FD9E Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "551" ], - "x-ms-client-request-id": [ "fee53f93-09f4-4aa8-afc0-e9aff86e28b1" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "a835d2fa-c5ec-445a-ae8c-ec66f9d2b33f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b2cf9331-b215-4895-a6c1-a0d5ec3dd4c5" ], + "x-ms-request-id": [ "20f7a3ab-9fdc-4f6d-8694-cf57194d1261" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e6b10695-51cb-4e0d-8fa0-dfce4352fdfd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061539Z:e6b10695-51cb-4e0d-8fa0-dfce4352fdfd" ], + "x-ms-correlation-request-id": [ "018b390a-0a0b-4def-a870-f41a087f60f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083603Z:018b390a-0a0b-4def-a870-f41a087f60f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F207DC4A6BF94F6B958085086F45D07B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EE2209FAC0C46C690B8D7231041BBB7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "e84cd02e-e2e5-4597-b948-a6c297503e91" ], + "x-ms-request-id": [ "26ffd2af-d013-44fa-9dfe-dbca88c40dcd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/102f66c7-fb03-48bf-a720-2253291c73bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/adb703c1-7369-492b-94ef-1e4f4226483c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1d1aafcd-8115-45d6-8654-2f05db552ba1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061541Z:1d1aafcd-8115-45d6-8654-2f05db552ba1" ], + "x-ms-correlation-request-id": [ "ca0ffc5d-20d0-4a7b-80c7-aeb5c0ba43fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083604Z:ca0ffc5d-20d0-4a7b-80c7-aeb5c0ba43fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4E81BB92E9B4933B3ACAAA495804C2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:15:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:15:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA294212251F4F2EB4BC926189162686 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1808" ], + "Content-Length": [ "1896" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "5a4f8904-a9d7-42ba-a0c0-d465dd857e0f" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "6b103242-edd4-4bf7-8de9-20e8fdbf52dc" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -332,41 +332,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdb02fb2-bded-4c8c-a79e-98cf6caba669" ], + "x-ms-request-id": [ "4bdfa226-f303-4d71-81fb-3bdf74f062dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "edab7faa-5f08-4818-81bb-ca440bfd6846" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:edab7faa-5f08-4818-81bb-ca440bfd6846" ], + "x-ms-correlation-request-id": [ "89b706b4-1485-4b38-8fbc-4a61570f859b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083635Z:89b706b4-1485-4b38-8fbc-4a61570f859b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C2BAEB758224467A9FC20A334D7EDC5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54F40B4BEC6B4EF8B63A1454BEAA07F6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "5a4f8904-a9d7-42ba-a0c0-d465dd857e0f" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "6b103242-edd4-4bf7-8de9-20e8fdbf52dc" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -377,40 +377,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e489188-ef74-484c-83e8-d2786a0a586f" ], + "x-ms-request-id": [ "ec6546f5-1131-4a5f-bed8-58b94dcaac8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d4ad4c82-adff-4aa5-9dda-5d8f84dfaf51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:d4ad4c82-adff-4aa5-9dda-5d8f84dfaf51" ], + "x-ms-correlation-request-id": [ "8e5d266e-d611-4633-a3ff-7a87c26e9178" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083635Z:8e5d266e-d611-4633-a3ff-7a87c26e9178" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CEE70FC96C574B1285403FF0CBBEBFFB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3CAB1B22FF24A38973A247701AB9E95 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "9b8fe76f-3f59-43ed-a6ef-80e7061804ac" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "855d3b24-3cdd-4cc6-b658-06885265ab18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "5ec91b95-19be-4dd5-97cd-8b04a397e345" ], + "x-ms-request-id": [ "fd700a25-2359-4c6a-b020-b033c9022b2b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05e2254e-5602-4d43-9ef0-cb9bc4a5cb68" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061612Z:05e2254e-5602-4d43-9ef0-cb9bc4a5cb68" ], + "x-ms-correlation-request-id": [ "05fa0867-97d6-472f-b4d9-22900362fc50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083636Z:05fa0867-97d6-472f-b4d9-22900362fc50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D48496A20F5A452F8343571D88145188 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA22B760D83C4457B1EB013CE3229C4D Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:35Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "556" ], - "x-ms-client-request-id": [ "7a151d1f-bee8-48ac-adbf-3f068dbab269" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "a51a72d7-608a-403c-82ad-3d58cbb581c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "476e86be-f7f0-4937-a441-18ab755ac02c" ], + "x-ms-request-id": [ "89be8a0a-c6b4-48a0-a4e9-a5ca36549ceb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "15dea366-7b3c-4250-869c-4618905013ad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061613Z:15dea366-7b3c-4250-869c-4618905013ad" ], + "x-ms-correlation-request-id": [ "c4567398-ad49-4c4d-a0fb-4f8e8aa110cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083636Z:c4567398-ad49-4c4d-a0fb-4f8e8aa110cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43081566292D4546AA5CA980C84F1A93 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40473146F14A41CC8EC4782C51553F60 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1723" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52686,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52686\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:15:04.72\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53455,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53455\",\"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-07T08:35:28.92\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "557" ], - "x-ms-client-request-id": [ "ca79945f-7512-4f59-a9ae-2d3cedaa330a" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "c01a23e9-20bc-4f94-b7a1-916995fb0f3d" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f8293004-11ea-432c-9870-9ce1d579295e" ], + "x-ms-request-id": [ "19dd3e3e-e4d7-4bfe-9d25-74765f8f2adb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dae0a86d-0c1d-4492-8cf7-39ff7687d6dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac4a3ac6-0042-484b-abb2-156fd75d46f9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "0a76258f-ba74-4ee7-b7c5-dc0085571f34" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061620Z:0a76258f-ba74-4ee7-b7c5-dc0085571f34" ], + "x-ms-correlation-request-id": [ "f287a911-bee9-4ee0-a8db-1f2083b84d66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083646Z:f287a911-bee9-4ee0-a8db-1f2083b84d66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AE1D72B311842F4A6E42EDE2F0B24DB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A11DFD6737543D4909CCE8DC21DF6BF Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:36Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -540,12 +540,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "a63fb7f0-cb71-4a20-a39d-0508334291ad" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "db331535-ed84-48ea-b3f6-274efac54af1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "52955ebb-1766-4746-9422-dc512ab48a66" ], + "x-ms-request-id": [ "7dc96e88-df5a-4ef6-8c78-ef5dc32de2af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d2ee869-d106-4db9-80a4-0d40f3e16a08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86f26447-0002-41a3-8b3b-e2b0d7f4855b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "094a39fc-f2a9-41fe-ad89-8bbcf08caeda" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061621Z:094a39fc-f2a9-41fe-ad89-8bbcf08caeda" ], + "x-ms-correlation-request-id": [ "d05724f1-d0d8-4997-82fc-6bd6939afcb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083646Z:d05724f1-d0d8-4997-82fc-6bd6939afcb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85CEAB3AAE1D4DE2B2F73006E408E2AD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:21Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55AB8311E288459B89C5C6F8931E0459 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "\"1DC38E43D20C910\"" ], + "ETag": [ "\"1DC4FC1A8B4B5D0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e20f784-fe80-4ed5-9f33-bd0e3555b7e0" ], + "x-ms-request-id": [ "7bb3f03f-0da8-4d58-bd6c-5a8bea7e5280" ], "X-AspNet-Version": [ "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/8706ac1b-6f6e-40bc-8405-0dc3a6087b34" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/bd909531-587e-418f-bc68-643b562e7e6c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "85c4ec0b-c632-4180-b1bb-eb841f5b9e3c" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061625Z:85c4ec0b-c632-4180-b1bb-eb841f5b9e3c" ], + "x-ms-correlation-request-id": [ "d42c35eb-ceb1-4537-92a2-8a382ca555b7" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T083650Z:d42c35eb-ceb1-4537-92a2-8a382ca555b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 036ABC0CCBA54BA6B1008E1514EE7C64 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:21Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E9CA930FBC6491AADAF98B04D4B2E72 Ref B: MWH011020808025 Ref C: 2025-11-07T08:36:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:36:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1813" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "560" ], - "x-ms-client-request-id": [ "b4bcb74e-f3a0-4752-9d18-5931ffbe5508" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "cb2ba42a-72a0-40c5-a07b-7582e12b20cd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -645,41 +645,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77e7c183-e788-43c5-9085-8d674b1ee5c2" ], + "x-ms-request-id": [ "de0eeab9-7b58-4f68-90a2-d59070e76002" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "822a3733-f4b2-4752-8c35-741366473213" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061656Z:822a3733-f4b2-4752-8c35-741366473213" ], + "x-ms-correlation-request-id": [ "247b39dc-9e5b-474e-b104-7b78a408d25c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083721Z:247b39dc-9e5b-474e-b104-7b78a408d25c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE44ED40FEE14A01A37845D9A83D25FA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:56Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0097C839CDBC4C63AF64A258542EFCD1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:20Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "561" ], - "x-ms-client-request-id": [ "b4bcb74e-f3a0-4752-9d18-5931ffbe5508" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "cb2ba42a-72a0-40c5-a07b-7582e12b20cd" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -690,40 +690,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81645267-e4a5-4e88-96b9-672b9972c4f7" ], + "x-ms-request-id": [ "5d73f09a-6d6c-4111-b9f3-a545c0b82d9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47a77bd8-218f-473c-849f-47e253d5c488" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061656Z:47a77bd8-218f-473c-849f-47e253d5c488" ], + "x-ms-correlation-request-id": [ "1516e972-9656-4027-9364-5b851bad1f68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083721Z:1516e972-9656-4027-9364-5b851bad1f68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DAF658806E243EBB53E937C6654C447 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:56Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 911C3E263944478389877FFFF7DCEFD9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "a5223dde-22de-489d-b891-8dcf541ad99b" ], + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "c07f0ac3-bf58-43bc-b1ba-a5fe26ca9fe2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2219dd03-e357-4895-9a30-0022623d2d72" ], + "x-ms-request-id": [ "02dff8a8-0038-41d1-8c15-033c7fe9e1d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "44bf4c3c-ddb3-4455-a93d-6dff9bf2fb9e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061657Z:44bf4c3c-ddb3-4455-a93d-6dff9bf2fb9e" ], + "x-ms-correlation-request-id": [ "370090fe-f599-4305-b20e-e4eb30e17d2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083721Z:370090fe-f599-4305-b20e-e4eb30e17d2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F1EDD4D3488942B28D6C47566291A006 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:57Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D76C87D6093349B488EA99190D9047D2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "06f8edc7-e83f-400b-ab23-7d14c18462a8" ], + "x-ms-request-id": [ "c80d7e89-872d-41f4-ad75-acbfe277d6eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c2e7f7a-e619-4368-8b95-208b8a02d798" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1467b6ae-a3f8-4e4d-9af0-81d764a9fa92" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a8a148fa-262d-4583-a4ac-be300bb845a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061659Z:a8a148fa-262d-4583-a4ac-be300bb845a5" ], + "x-ms-correlation-request-id": [ "94449b9a-e31b-49c3-944e-ee3ae7f5a79f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083723Z:94449b9a-e31b-49c3-944e-ee3ae7f5a79f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4A55C56B19B42728CE53F77E2EEA60A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:16:57Z" ], - "Date": [ "Thu, 09 Oct 2025 06:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73456F7C803844D9B0A5DED4B8E4107C Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1809" ], + "Content-Length": [ "1896" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "323ca8d4-e5c0-4275-9649-49d3c06a8879" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "ce0bd22a-9ab6-4dc9-914b-a926dfc2b3d6" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -821,41 +821,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6311c732-acc6-476b-be63-49b3fe450c0b" ], + "x-ms-request-id": [ "3ecac27d-a208-476b-9568-fadca191ec97" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62cca4b0-bcb9-49e5-a2b9-cd1f83125d72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:62cca4b0-bcb9-49e5-a2b9-cd1f83125d72" ], + "x-ms-correlation-request-id": [ "584c614f-289f-4ccc-8e83-c06f5a5aed9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083754Z:584c614f-289f-4ccc-8e83-c06f5a5aed9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64FE72AD1037427DA1D2BA261D9848A2 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0652549117AE49CFA5692755504B7308 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "565" ], - "x-ms-client-request-id": [ "323ca8d4-e5c0-4275-9649-49d3c06a8879" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "ce0bd22a-9ab6-4dc9-914b-a926dfc2b3d6" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -866,40 +866,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c2b9a7c-403e-458f-9b51-dbacd0ed8119" ], + "x-ms-request-id": [ "2f73e9cd-74fc-4ffc-93bb-33ec82340e28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79556331-69b1-4a00-a89b-7e0e949535fe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:79556331-69b1-4a00-a89b-7e0e949535fe" ], + "x-ms-correlation-request-id": [ "482a2460-c323-4265-8613-406d6330cdba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083754Z:482a2460-c323-4265-8613-406d6330cdba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EBB112CEEA541FCAD2B7135134F4BA1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC8F16ABF28148EB8933D4AF265D11FC Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "68d04c58-ff5a-4800-a628-a8012266ebca" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "dab05568-fb4d-44b9-a78c-b45af45ad4a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "84fc3b7d-6cd1-4614-a8a1-99f27266b3b3" ], + "x-ms-request-id": [ "95ac08e1-d32c-45c2-b05d-684cfaa9da1f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f71e6040-ce82-4a81-8929-302d10b17fea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061730Z:f71e6040-ce82-4a81-8929-302d10b17fea" ], + "x-ms-correlation-request-id": [ "2d497b6b-58c0-463c-9b21-809bea8aee54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083754Z:2d497b6b-58c0-463c-9b21-809bea8aee54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D9E26141A6E48DBB95235E463B4C53C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E23CE3E51917431A85C062A2E6E332E4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:37:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1724" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52687,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52687\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:16:23.177\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53456,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53456\",\"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-07T08:36:48.37\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "c97b5919-81c5-45aa-879c-a8bcc960d984" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "99297e02-3b0e-45f7-9f26-aeccb558f4e4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "325f1f9f-d460-4587-8d1f-2351185ec6e2" ], + "x-ms-request-id": [ "dd1b9647-5a85-4871-a67e-7067e4154723" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a36134f4-e2e7-47dd-b99a-b6b221f49849" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dda4e29-4641-4a7a-aa14-49d4e67da0a8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "0c489f3b-faa0-4d3f-8ce2-4ec1a4e449b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:0c489f3b-faa0-4d3f-8ce2-4ec1a4e449b3" ], + "x-ms-correlation-request-id": [ "fc047100-a16c-4e01-8004-7427700a8257" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083804Z:fc047100-a16c-4e01-8004-7427700a8257" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52C0FCC11C5248538733C76F42B0B737 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C309CA2D23E48D59B9F1C33399A5302 Ref B: MWH011020808025 Ref C: 2025-11-07T08:37:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:03 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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "8e808905-95a2-4e6e-bdba-7a97871e8b6f" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "ad465b52-c848-4b27-9fa9-a71b7c173442" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1001,37 +1001,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "1aea06bb-d546-4420-a0d7-0d09bf54546f" ], - "x-ms-correlation-request-id": [ "1aea06bb-d546-4420-a0d7-0d09bf54546f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:1aea06bb-d546-4420-a0d7-0d09bf54546f" ], + "x-ms-request-id": [ "c61d032c-8380-4681-a04f-85be8828a4f1" ], + "x-ms-correlation-request-id": [ "c61d032c-8380-4681-a04f-85be8828a4f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083804Z:c61d032c-8380-4681-a04f-85be8828a4f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9772273B9B7B4B2D93FCC882F405090C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC5987ABCE4F4731A922CC557C4003DF Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38: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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-4snvfc\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "e15cbb61-96fd-404f-bcaf-a045fa82e306" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "d88c46c0-a9c7-41bc-a657-31e95f4dfe20" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1043,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "28317eed-2b76-4765-85c7-641b0ea4dd7c" ], - "x-ms-correlation-request-id": [ "28317eed-2b76-4765-85c7-641b0ea4dd7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061737Z:28317eed-2b76-4765-85c7-641b0ea4dd7c" ], + "x-ms-request-id": [ "b5d8416a-6c43-4c82-9792-401ac5ab52b5" ], + "x-ms-correlation-request-id": [ "b5d8416a-6c43-4c82-9792-401ac5ab52b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083804Z:b5d8416a-6c43-4c82-9792-401ac5ab52b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBEFCE84E0224D7A90542902436E3FD6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EC5D54160114A278E877AABA988C159 Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38: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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-4snvfc\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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": [ "570" ], - "x-ms-client-request-id": [ "5e1374c9-5c11-4b54-8a8d-3f55b98cf923" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "4eb080d6-5a1c-4558-abb3-ca60723a4447" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "1607221b-879e-4330-b76f-c768087dce21" ], + "x-ms-request-id": [ "53cb48e9-e97b-499a-a94a-722bdb625045" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/553ec2d3-a396-4705-8869-041fdef683b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f4ca82a-694f-46ad-a8eb-ff562aef2a27" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7084a0fe-ff94-44c0-89b4-e60f5e3d3f49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061738Z:7084a0fe-ff94-44c0-89b4-e60f5e3d3f49" ], + "x-ms-correlation-request-id": [ "72c96c70-16a4-403d-9c9f-1ac348dc5807" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083804Z:72c96c70-16a4-403d-9c9f-1ac348dc5807" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB2774ADD0374857AC324A9FBD83AA19 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 801FD01C213149EFBA86E0EAE963F9EC Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "\"1DC38E46A7D5590\"" ], + "ETag": [ "\"1DC4FC1D7404C70\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "556baba2-2b97-4b79-a817-700e81693366" ], + "x-ms-request-id": [ "56a27d84-6cd6-4d7e-9a54-41b29eff9187" ], "X-AspNet-Version": [ "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/3b427cbf-7919-4c82-8e7d-a1b33cae47cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bdea0e64-b117-4735-aa9f-51c5298f8cea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "797c3e95-ef46-415f-9c4b-4de85912a570" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061742Z:797c3e95-ef46-415f-9c4b-4de85912a570" ], + "x-ms-correlation-request-id": [ "0f5f2ac3-3f1d-403c-a3aa-5523ec312336" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T083808Z:0f5f2ac3-3f1d-403c-a3aa-5523ec312336" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4A1D0B8924648A3B41B00C2D3E96E1E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:17:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:17:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECD1CFB2CC96471F84F428C8742B09F2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1915" ], + "Content-Length": [ "2005" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "a8f6eecb-cfdf-4ebd-bc63-fc71e1df37c1" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "34803c9f-28cf-4e3d-ae1b-bae00d9a077c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1173,41 +1173,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ec6a26a-c5e5-4e93-b5c0-53e7a89e4f37" ], + "x-ms-request-id": [ "332e70e7-dd2c-4e3e-805a-0899471fc167" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce4bf2ac-5e08-43ae-b794-3f8a98aee0e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061812Z:ce4bf2ac-5e08-43ae-b794-3f8a98aee0e2" ], + "x-ms-correlation-request-id": [ "35c4bac0-9751-4071-ab91-58b61cc75913" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083839Z:35c4bac0-9751-4071-ab91-58b61cc75913" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 036C4C1E093E447B8C25092D9D78D78D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EA00FF881964AEDA54EF3E59DF4324E Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1916" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "a8f6eecb-cfdf-4ebd-bc63-fc71e1df37c1" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "34803c9f-28cf-4e3d-ae1b-bae00d9a077c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1218,40 +1218,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7525037-49ef-4248-9116-1ca9faac5704" ], + "x-ms-request-id": [ "41e8e41e-b8b8-405b-9dec-3ba2e6e24708" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "32deb52e-93cc-4b8a-8ae8-30e9b32e4d3e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061813Z:32deb52e-93cc-4b8a-8ae8-30e9b32e4d3e" ], + "x-ms-correlation-request-id": [ "da50bde6-ad5c-472d-988e-a010386ed17d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083839Z:da50bde6-ad5c-472d-988e-a010386ed17d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC22200491FB4D1388DE50F9D2CBF656 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F58FEA1E64544C7FB6CE3C6285B6CA43 Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:39Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1916" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "574" ], - "x-ms-client-request-id": [ "ab6c1da1-f359-4728-b5f1-40eeca55ac07" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "4f3d70cd-37ff-46a6-b11c-2c4c8b795ae0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "33364c28-5704-41e4-88fa-3365f872f210" ], + "x-ms-request-id": [ "75064144-c459-4268-bd8d-8de0344a829d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a8d8bacd-71a5-466a-8f5b-7a476427478b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061814Z:a8d8bacd-71a5-466a-8f5b-7a476427478b" ], + "x-ms-correlation-request-id": [ "15f95411-e66d-49bb-9b66-3b9f4b3e1afc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083841Z:15f95411-e66d-49bb-9b66-3b9f4b3e1afc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA1118A4D9814A94979B65B5C8E4844C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 122D4723D75D47F89B4C9CA316932B9A Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:40Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1916" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "575" ], - "x-ms-client-request-id": [ "83d2fa28-e6bc-4584-af32-b2860fb753f6" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "f9100127-8d55-4766-be86-2c62156504eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7e9e5976-ad5f-4e75-835e-062b48c51b3c" ], + "x-ms-request-id": [ "8bbf6f46-2552-4ec4-93a4-e186f8af4b01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "067b6c01-8370-4ad5-9a56-a424078fd351" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061814Z:067b6c01-8370-4ad5-9a56-a424078fd351" ], + "x-ms-correlation-request-id": [ "0cca92e2-afd3-4fe6-9cef-526cd72ddd56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083841Z:0cca92e2-afd3-4fe6-9cef-526cd72ddd56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0AEA792C435747CA807D995F34573C8E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 722B7BBAEBD345F4B746ED64B06AA603 Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1916" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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": [ "85e74481-c744-48e1-b74f-78a59192153d" ], + "x-ms-request-id": [ "e0a7252d-591a-4fcd-a60c-751b0e06578b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d485597e-6804-4214-9654-41fa867d5fb4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8ddb1d1-4af5-46bd-b3a3-073c8bed0e83" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f9d38e2b-45bb-458c-9772-e914939a2bf7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061817Z:f9d38e2b-45bb-458c-9772-e914939a2bf7" ], + "x-ms-correlation-request-id": [ "9d6909e1-fe7b-476f-8af7-5bc7c223b672" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083842Z:9d6909e1-fe7b-476f-8af7-5bc7c223b672" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A7DA312E5674B968637178BE75F52D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7A46422BBE54DE280BB18CD3E32BB26 Ref B: MWH011020808025 Ref C: 2025-11-07T08:38:41Z" ], + "Date": [ "Fri, 07 Nov 2025 08:38:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1911" ], + "Content-Length": [ "1999" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"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-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"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-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "0c4d40e4-e153-4713-968a-1cc96c3a119e" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "525be5ec-800e-4440-a801-133cdca5bae1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1394,41 +1394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "687d85b7-9daf-46a9-b07c-2d47c7100ee9" ], + "x-ms-request-id": [ "f2c64ddd-9a38-4f2a-b570-76789254c782" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dd52a075-67fc-46ef-9b4c-abf237420629" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061848Z:dd52a075-67fc-46ef-9b4c-abf237420629" ], + "x-ms-correlation-request-id": [ "5d662199-e36c-410e-8394-55fdaa6109a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083913Z:5d662199-e36c-410e-8394-55fdaa6109a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 823857681C9E42048C4BCAA0B57A6D64 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:48Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 960D721AB2174DDB999B243EDD60A44A Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1914" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "578" ], - "x-ms-client-request-id": [ "0c4d40e4-e153-4713-968a-1cc96c3a119e" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "525be5ec-800e-4440-a801-133cdca5bae1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -1439,40 +1439,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5a3e934-85f8-493f-aea5-dc6663e459b1" ], + "x-ms-request-id": [ "6234a9b8-ec92-4113-b876-ef99d1d9d87e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46365f04-d0b7-42ae-8fcc-7b99e23ce6cb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061848Z:46365f04-d0b7-42ae-8fcc-7b99e23ce6cb" ], + "x-ms-correlation-request-id": [ "dda64e48-3b43-4a83-b1d9-966cbcea040f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083913Z:dda64e48-3b43-4a83-b1d9-966cbcea040f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D632A0A69ADF451F99E49FD236834184 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:48Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78899756FD9A4B8696E052769B523F9C Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1914" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "579" ], - "x-ms-client-request-id": [ "1237c51d-ca50-499c-b67c-85b38ef0e80d" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "4e4ef01f-959e-41d7-8f83-cdc35904ecc2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cb859cb4-f3cd-404c-a126-bd0eb4594952" ], + "x-ms-request-id": [ "b6a67ef4-cf6f-442b-8e7d-69e08f5e1256" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5a6c5977-d3c4-4bde-994d-4e6dc012abc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061851Z:5a6c5977-d3c4-4bde-994d-4e6dc012abc1" ], + "x-ms-correlation-request-id": [ "ce09a77a-b152-45a0-b438-43b09ae31de2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083914Z:ce09a77a-b152-45a0-b438-43b09ae31de2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66E2B3D15EB44D3B8C8C9C499454103F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:51Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25F4D968237846A895469F38E1525789 Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1826" ], + "Content-Length": [ "1914" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq\",\"name\":\"Func-Windows-Premium-New-b61uaq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":52688,\"name\":\"Func-Windows-Premium-New-b61uaq\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52688\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:17:39.577\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc\",\"name\":\"Func-Windows-Premium-New-4snvfc\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":53457,\"name\":\"Func-Windows-Premium-New-4snvfc\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53457\",\"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-07T08:38:06.453\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "580" ], - "x-ms-client-request-id": [ "bd68a7fb-bbb1-4f84-9e93-60372a203ff2" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "fcf3d13f-0590-46e5-ac4d-018590f8ec05" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "016b992c-859e-4013-8b88-c96636bf759a" ], + "x-ms-request-id": [ "f50d2c60-cedd-4342-bac9-fb5e41e39ab3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/376ef05f-0cef-4881-b6ae-6450ff146ab7" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "74ad9090-50a0-491e-875e-fbfee35451b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:74ad9090-50a0-491e-875e-fbfee35451b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cc21e7a-bd7c-411f-a125-bb7892854102" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "72fdf43d-5554-4901-9d21-8d85a7078145" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083924Z:72fdf43d-5554-4901-9d21-8d85a7078145" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F152E65027141498B984193DD75C7A0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:51Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D57BF24BD0E4697809D42CB56788C4D Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:23 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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "7715379d-3bf2-4d89-95ab-b732db46a6ba" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "02be0187-dc11-49ef-bc01-6e0165a7a90a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1574,37 +1574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], - "x-ms-correlation-request-id": [ "1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:1bfa3b55-6d8e-49dd-b16e-f2ae615fbbea" ], + "x-ms-request-id": [ "848e9f2a-0613-4355-a403-e85bc653e9e1" ], + "x-ms-correlation-request-id": [ "848e9f2a-0613-4355-a403-e85bc653e9e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083924Z:848e9f2a-0613-4355-a403-e85bc653e9e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9AB7023F2AB647F89DCEB9714DB5D8D7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:58Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92146E3AB96F422A880EC8FD95584C02 Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:24 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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-4snvfc\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?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-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?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-n8vg16/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-b61uaq?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-4snvfc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "582" ], - "x-ms-client-request-id": [ "ac83127f-672e-4f31-a988-ce88a5a5ac3e" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "d13b3fb5-5ce7-4d69-add8-44e8ccbab6ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1616,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "8a5f2423-1443-4058-877d-3e5065f57090" ], - "x-ms-correlation-request-id": [ "8a5f2423-1443-4058-877d-3e5065f57090" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061858Z:8a5f2423-1443-4058-877d-3e5065f57090" ], + "x-ms-request-id": [ "479e45bb-e863-4c06-bac2-3bd2a0170ead" ], + "x-ms-correlation-request-id": [ "479e45bb-e863-4c06-bac2-3bd2a0170ead" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083924Z:479e45bb-e863-4c06-bac2-3bd2a0170ead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A2371CA3E684F258A1644244292A26C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:58Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C51F1EF27FD749A2B598D15F935414F1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:24Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:24 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-b61uaq\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-4snvfc\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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 3ecfe2a0030e..96404db6cb7a 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": [ "583" ], - "x-ms-client-request-id": [ "9d8dbfe3-85d1-4dc8-b2d4-ae2e3d7b29e7" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "182e921d-ff27-4c8f-9287-1f494f5ac729" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "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": [ "254f735e-e2b5-4d22-adf0-15e5b4afcdf9" ], + "x-ms-request-id": [ "50c4f55b-fae3-475d-8535-0e16070fd1a4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/942a2f31-1608-4552-b502-7fa2a9e0fe46" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58c38987-e216-467a-abc1-dbb8902c5c5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7a4db422-8d49-4d8f-9174-95c5485a693f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061859Z:7a4db422-8d49-4d8f-9174-95c5485a693f" ], + "x-ms-correlation-request-id": [ "075ec112-2bf7-47db-add3-010ccd3664f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T083925Z:075ec112-2bf7-47db-add3-010ccd3664f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF9BE9E20F08477E994D81CC75DF669E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41567B1C38164CAFBFEF137E512CBD37 Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36288" ], + "Content-Length": [ "36851" ], "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\",\"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\",\"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\",\"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\",\"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\",\"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\":\"\"}}],\"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\",\"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\",\"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}", "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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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": [ "\"1DC38E49AD017A0\"" ], + "ETag": [ "\"1DC4FC2072A3A90\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "decd4575-4b9a-4ac8-9c93-10a074cdad96" ], + "x-ms-request-id": [ "7c6f7d24-56e3-43d7-b223-2f6b8951fa75" ], "X-AspNet-Version": [ "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/0bd8a1ff-7f6a-43c0-9611-360e45b40213" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c20bcaf0-b568-4fd2-be4c-c596b91f0229" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "45d71cf8-2467-402b-bc85-c57ee3dbb2f2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061902Z:45d71cf8-2467-402b-bc85-c57ee3dbb2f2" ], + "x-ms-correlation-request-id": [ "2d1218ae-8b3b-4fa8-bad6-da8ae62d2f15" ], + "x-ms-routing-request-id": [ "WESTUS:20251107T083930Z:2d1218ae-8b3b-4fa8-bad6-da8ae62d2f15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB803FDD53C64740AD86725BA56D060C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:18:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BC609FA38A640CF82F0C291A8896238 Ref B: MWH011020808025 Ref C: 2025-11-07T08:39:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:39:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1905" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"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-n8vg16-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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"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-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "585" ], - "x-ms-client-request-id": [ "04f240c1-be32-4d7d-b01b-519f79a90f19" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "e3eb185a-7c31-442b-af58-106efd95fbbc" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "957620e4-4184-47dd-ac5b-5af75aa54689" ], + "x-ms-request-id": [ "0e0cf670-79c7-491e-a1da-99d71fc61edf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74243245-5b1a-4166-9142-21505a21535e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061933Z:74243245-5b1a-4166-9142-21505a21535e" ], + "x-ms-correlation-request-id": [ "b0641399-a464-42f2-b86d-1dec5a494813" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084000Z:b0641399-a464-42f2-b86d-1dec5a494813" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FEEA2367252B4F21BB83FFA804EACBF4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A242BB0DDE3420EBFC2DF69A3823F32 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "586" ], - "x-ms-client-request-id": [ "04f240c1-be32-4d7d-b01b-519f79a90f19" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "e3eb185a-7c31-442b-af58-106efd95fbbc" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -156,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea704f28-3052-43d4-854c-788eb59b990d" ], + "x-ms-request-id": [ "7ad29e48-1ce0-4db9-8f66-f2eca199bb2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8933603-2295-4a44-b2ca-fcbff9e39252" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061934Z:c8933603-2295-4a44-b2ca-fcbff9e39252" ], + "x-ms-correlation-request-id": [ "37212e74-a55d-4013-a132-0f655b731e50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084000Z:37212e74-a55d-4013-a132-0f655b731e50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9975814844A342F998D8CBBD7DCB3E22 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8651E21CD3AC442AAC3EC541F72E84A4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-traz67wuyp\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-1f3z95rjxc\",\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": [ "cc9fd278-0b59-4bd0-8ca7-22a7369d95d8" ], + "x-ms-request-id": [ "51ca43c4-8d97-458f-80f3-159da19c626a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4407c281-8230-47d5-86d2-3ea95afb73b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fdf11930-bbf2-417e-9523-0016a38b804a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "706c7a1d-9df1-45e8-bcb5-ad97a569ff7a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061934Z:706c7a1d-9df1-45e8-bcb5-ad97a569ff7a" ], + "x-ms-correlation-request-id": [ "37adbe4a-3eb1-43e2-8177-eb52d8c4fd41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084001Z:37adbe4a-3eb1-43e2-8177-eb52d8c4fd41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D88FBC0675744D4CB0C18E7E48574F3F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4C043AC02FA410BAD65DEA536068322 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -225,12 +225,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "588" ], - "x-ms-client-request-id": [ "0d102085-b711-47ac-a8aa-809ac26bfbeb" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "5d5a5b42-3cbe-46df-a977-a7ed2466b04d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -241,41 +241,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d084f197-8920-4109-bf8a-7ef870087f82" ], + "x-ms-original-request-ids": [ "896ead10-407f-46ef-be5c-c4ceb7487700" ], "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": [ "9787af9f-0dfc-448c-baec-9863f18e2ee4" ], - "x-ms-correlation-request-id": [ "9787af9f-0dfc-448c-baec-9863f18e2ee4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061934Z:9787af9f-0dfc-448c-baec-9863f18e2ee4" ], + "x-ms-request-id": [ "878879a2-45ef-47c1-be48-57f240f2bf2c" ], + "x-ms-correlation-request-id": [ "878879a2-45ef-47c1-be48-57f240f2bf2c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T084002Z:878879a2-45ef-47c1-be48-57f240f2bf2c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B8614FB2FDB4309B74DF8F86A4E7AC3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAE39C463AAB4F339590B0D8D5DDA76F Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13096" ], + "Content-Length": [ "15508" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435745,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435744,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435791,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435771,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435768,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435742,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435821,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6435740,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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-n8vg16\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":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},\"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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492482,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":null,\"isXenon\":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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492479,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492510,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492506,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":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-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492497,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492500,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492474,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492523,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6492473,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":null,\"isXenon\":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}}]}", "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-pxiydk/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-1us9gb/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-pxiydk/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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "f3de7ec9-f864-422e-8a2a-695b46d2e775" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "a20ba933-a309-4eb9-868f-4594dc9703ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -287,40 +287,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03b58c3d-a950-4eb5-9346-7429574e84d4" ], + "x-ms-request-id": [ "9ae55df9-9024-49db-b56c-0a39159102b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "15706842-bd7f-414a-9213-6347b2168c34" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061935Z:15706842-bd7f-414a-9213-6347b2168c34" ], + "x-ms-correlation-request-id": [ "c179a4ed-20e6-46d1-8f15-d2426eda340e" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T084002Z:c179a4ed-20e6-46d1-8f15-d2426eda340e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A120D92B9EF04364B15841957BBB4ADC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB79BE0150A541A5850745C2E52AFE1F Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1720" ], + "Content-Length": [ "1810" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126085,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126085\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:39:27.69\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":131554,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_131554\",\"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-07T08:06:08.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-m4501w/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-z05kh6/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-m4501w/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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "590" ], - "x-ms-client-request-id": [ "17705313-f1a7-4758-9ff1-e4bc3bdba253" ], + "x-ms-unique-id": [ "595" ], + "x-ms-client-request-id": [ "ed13d930-9963-4ac4-9e83-a3d08ad40b51" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "83987b67-4061-4b95-8443-b300bb37c462" ], + "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": [ "56ce0cd3-16e8-48b4-99e4-32ebb209c898" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084002Z:56ce0cd3-16e8-48b4-99e4-32ebb209c898" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5C72E327DF004D118B59369CB25E9A87 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1778" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78824,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78824\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:04:42.4166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "85e98544-d4a0-48a0-8cb0-e6f3c8bf7e3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -332,40 +377,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "512acc9f-3c2e-435d-b540-050080d43b31" ], + "x-ms-request-id": [ "e87af6e3-cbd3-48a4-a25e-a93a90a1937d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25811d60-4302-4a79-ad0f-cadbcf097849" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061935Z:25811d60-4302-4a79-ad0f-cadbcf097849" ], + "x-ms-correlation-request-id": [ "7d337cd9-f71f-4e91-934b-052eb998a599" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084004Z:7d337cd9-f71f-4e91-934b-052eb998a599" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BAA27265BED477F9A1571A04E2F5985 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 628CBB5A524E4C33A37344B065A6AC04 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1688" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":90121,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-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-m4501w\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-279_90121\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:37:46.7933333\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/serverfarms/Default1be\",\"name\":\"Default1be\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":82823,\"name\":\"Default1be\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-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-1us9gb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-239_82823\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:28:15.37\",\"asyncScalingEnabled\":false,\"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-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx?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-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?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-pxiydk/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-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "591" ], - "x-ms-client-request-id": [ "76d05576-ecdb-43aa-8988-1a61d6b0be7c" ], + "x-ms-unique-id": [ "597" ], + "x-ms-client-request-id": [ "bf83ddea-3781-4c00-8f9f-5f480d3c2b75" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -377,40 +422,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "834580b3-437d-411d-bd3c-1a1bcf7229c0" ], + "x-ms-request-id": [ "38b69fca-20ab-4f92-8e86-0dd777f217e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4cb4d81e-aad9-4210-970e-1119bfd5efb5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061935Z:4cb4d81e-aad9-4210-970e-1119bfd5efb5" ], + "x-ms-correlation-request-id": [ "60d49167-d19c-43d9-83b2-1a769ae858d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084005Z:60d49167-d19c-43d9-83b2-1a769ae858d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F904BF0A6DDE47C685F693CFCF32F6F1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 696B19296DBA4E2C9158877A6170B74F Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:04Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1660" ], + "Content-Length": [ "1749" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":102964,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-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-pxiydk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-205_102964\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:02:55.9066667\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/serverfarms/Default1gn\",\"name\":\"Default1gn\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":78829,\"name\":\"Default1gn\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-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-z05kh6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_78829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:24:41.26\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?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-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?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-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "70d284e4-4e92-46e3-873e-0cc661f36098" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "c196934b-bfef-4a03-ac98-862891458116" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -422,40 +467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fede63b0-b3da-4b34-8641-d993fa1f6eb3" ], + "x-ms-request-id": [ "0bc45980-e7f5-47ba-96c6-841863c64efb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8d3cd0f6-a88c-47c8-be12-6dd5a8f83a2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:8d3cd0f6-a88c-47c8-be12-6dd5a8f83a2f" ], + "x-ms-correlation-request-id": [ "885949e9-b738-492b-8d3f-164e748496b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084005Z:885949e9-b738-492b-8d3f-164e748496b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47AC113E9DE0484E94FE5A831A525EE7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7E408F5A24E44E58D47FCC327AFE012 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1641" ], + "Content-Length": [ "1737" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Default1ob\",\"name\":\"Default1ob\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85783,\"name\":\"Default1ob\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-231_85783\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:55:24.15\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Default1pu\",\"name\":\"Default1pu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53451,\"name\":\"Default1pu\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53451\",\"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-07T08:18:48.47\",\"asyncScalingEnabled\":false,\"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-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?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-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?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-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "7d5c9cbc-6757-4912-b064-2476b369c72c" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "958093d6-12a8-4cd9-a631-538b1f74961f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,40 +512,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43e76f9f-be01-4b6a-b4f6-d67d284bee6c" ], + "x-ms-request-id": [ "9230dd95-6d6a-4ca8-ada8-937212a1a9da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5d182e9e-58aa-40fc-9b82-1e92e333a444" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:5d182e9e-58aa-40fc-9b82-1e92e333a444" ], + "x-ms-correlation-request-id": [ "ed2825f4-62fd-4fa3-b6eb-1ae672f0ce6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084005Z:ed2825f4-62fd-4fa3-b6eb-1ae672f0ce6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85B397E851C24F45ADA4D84935D872A8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C761D90C21394F8A9C291CAA19268A5C Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1647" ], + "Content-Length": [ "1736" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Default1qr\",\"name\":\"Default1qr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52681,\"name\":\"Default1qr\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-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\":6,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52681\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:52:18.98\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Default1tj\",\"name\":\"Default1tj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":85157,\"name\":\"Default1tj\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-241_85157\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:20:19.9366667\",\"asyncScalingEnabled\":false,\"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-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "594" ], - "x-ms-client-request-id": [ "440a04e1-796b-4690-b9a1-33260c556819" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "2919a1a0-0517-440f-8773-18faa45b53ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -512,40 +557,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbc4d513-c194-4734-9c98-c94be7746ff8" ], + "x-ms-request-id": [ "6ae739fa-cbab-4f62-9362-13602f6dd0b8" ], "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": [ "398a7176-2d07-4272-9800-9780cd2a2616" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:398a7176-2d07-4272-9800-9780cd2a2616" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3a8e4dcf-af6d-49e8-80de-70a61eec40c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084005Z:3a8e4dcf-af6d-49e8-80de-70a61eec40c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 097F1CF416234707A20995FF1B9A5FF0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB4827C87C7C4EF6BD2C283F9023534A Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1721" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"name\":\"Functions-Linux-Premium-g2ifkz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":126084,\"name\":\"Functions-Linux-Premium-g2ifkz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-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-xa1y0o\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_126084\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:34:18.2\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"name\":\"Functions-Linux-Premium-u4rnvi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":39861,\"name\":\"Functions-Linux-Premium-u4rnvi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-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-0a1x3e\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-113_39861\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:01:27.3266667\",\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "595" ], - "x-ms-client-request-id": [ "9921a19c-bb4b-4d74-88f6-2d1b710f5b4a" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "092a7d2b-2ea3-4e88-a5ae-145d2bc148cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -557,40 +602,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7099ac2e-b72b-4e22-9e5d-bef33741d62a" ], + "x-ms-request-id": [ "f6415126-92a9-47cc-9307-4949049b1d2f" ], "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": [ "679b65d6-40ce-4d4a-89b9-6b9e9c07ddaf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061936Z:679b65d6-40ce-4d4a-89b9-6b9e9c07ddaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0f6b77b0-7b15-44fe-a76e-8b1b1c38787c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084006Z:0f6b77b0-7b15-44fe-a76e-8b1b1c38787c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E713BCDE9D664646849D806C943E97A9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CCA93B873C32417B9F7EC168929E0A5E Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "596" ], - "x-ms-client-request-id": [ "882315d4-1fd1-4b89-815b-bd8b8cc41b28" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "dda77aa1-6668-4d32-a81e-3b1f3b1dbd27" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -602,40 +647,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "534aa692-7e69-4d04-914f-ed5c6f7af317" ], + "x-ms-request-id": [ "217f8b5f-4a5a-454d-b287-b5983824c6f9" ], "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": [ "794d8a17-751c-4aaf-918c-7f627909f651" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061937Z:794d8a17-751c-4aaf-918c-7f627909f651" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2e1b415b-15d1-402a-a121-4ef606f84dcb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084006Z:2e1b415b-15d1-402a-a121-4ef606f84dcb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90F249659B0E4117AFD115C2FA88832B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 731EFCB132D0451B8D856A1A670D4110 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1728" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"name\":\"Functions-Windows-Premium-fj26xp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52680,\"name\":\"Functions-Windows-Premium-fj26xp\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52680\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T05:33:38.797\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"name\":\"Functions-Windows-Premium-1wzf2c\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53450,\"name\":\"Functions-Windows-Premium-1wzf2c\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53450\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:00:48.443\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-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/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+16": { "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": [ "597" ], - "x-ms-client-request-id": [ "948b01e9-bf34-4087-be90-0b5afdc9b6fc" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "b28b8be2-712a-49d9-9041-5ad0788a97e5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -646,40 +691,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7d9acb34-a99e-427c-9c52-ef6736cd075b" ], + "x-ms-original-request-ids": [ "543f5372-c7fc-4ced-be02-027551cff4da" ], "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": [ "5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], - "x-ms-correlation-request-id": [ "5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061937Z:5337c4d8-693f-46b0-8227-d2cc0b9c26c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "a135e024-ad27-4c3d-8cca-28c8c3be38f7" ], + "x-ms-correlation-request-id": [ "a135e024-ad27-4c3d-8cca-28c8c3be38f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084006Z:a135e024-ad27-4c3d-8cca-28c8c3be38f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA8D2F1084874FB28E4A13452B610293 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C27C9220DF2F45F8A35039C8B34C498E Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2811" ], "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-Test-Linux-Premium-xa1y0o/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageer3\",\"name\":\"functionslinuxstorageer3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:33:15.6363204Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:33:15.6363204Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:33:15.4800614Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageer3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageer3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageer3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageer3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageer3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageer3.file.core.windows.net/\"},\"primaryLocation\":\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw\",\"name\":\"functionswinstorage6aw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-10-09T05:32:54.1520107Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-10-09T05:32:54.1520107Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-10-09T05:32:53.9957631Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage6aw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage6aw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage6aw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage6aw.queue.core.windows.net/\",\"table\":\"https://functionswinstorage6aw.table.core.windows.net/\",\"file\":\"https://functionswinstorage6aw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Storage/storageAccounts/functionslinuxstoragej9e\",\"name\":\"functionslinuxstoragej9e\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:25.0806489Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:25.0806489Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:24.8306414Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstoragej9e.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstoragej9e.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstoragej9e.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstoragej9e.queue.core.windows.net/\",\"table\":\"https://functionslinuxstoragej9e.table.core.windows.net/\",\"file\":\"https://functionslinuxstoragej9e.file.core.windows.net/\"},\"primaryLocation\":\"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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8\",\"name\":\"functionswinstoragebv8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"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-07T08:00:03.9238344Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-07T08:00:03.9238344Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-07T08:00:03.6582474Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstoragebv8.dfs.core.windows.net/\",\"web\":\"https://functionswinstoragebv8.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstoragebv8.blob.core.windows.net/\",\"queue\":\"https://functionswinstoragebv8.queue.core.windows.net/\",\"table\":\"https://functionswinstoragebv8.table.core.windows.net/\",\"file\":\"https://functionswinstoragebv8.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"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-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01+16": { + "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-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Storage/storageAccounts/functionswinstorage6aw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Storage/storageAccounts/functionswinstoragebv8/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "598" ], - "x-ms-client-request-id": [ "349ac6ea-1b84-42eb-9e5c-f9e7c53fdca9" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "47bc5198-3c6b-4b1f-a8e7-6e40888af4f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -690,30 +735,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "edde601d-f02b-47d7-9ad9-2fae162e4f2d" ], + "x-ms-request-id": [ "4aacceb5-9f2f-4792-a03a-d207210ccb20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e7438953-e3cc-4446-b7f0-9892d21f688b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ddf6f0fd-f92e-404a-9d74-a4496ed4b62b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bfa0b839-ada1-4743-9c12-758a716e0c75" ], - "x-ms-routing-request-id": [ "WESTUS2:20251009T061937Z:bfa0b839-ada1-4743-9c12-758a716e0c75" ], + "x-ms-correlation-request-id": [ "d578d426-0133-4d22-a1c6-dcd54ed7722c" ], + "x-ms-routing-request-id": [ "WESTUS2:20251107T084007Z:d578d426-0133-4d22-a1c6-dcd54ed7722c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA994089CDEA426099E11ECACE4A40C3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 211A285BBDFA4949A6C361770A7088D0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"eeQ4wwjb88/VlTLQ1gmMeQXg39/CoLH04f/hvhQPy2kKlwlcPReKdmfqgaEo1LefvVAQ09JCjGAQ+AStc6z4pw==\",\"permissions\":\"FULL\"}]}", + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"0ID9KrnWFWNhtbQDGZEExLkXb27BqHzW5fY+e6etQzThvnm1QfKeQ5BbtxNVvJRi5J4egjSaNBs1+AStjftbrQ==\",\"permissions\":\"FULL\"}]}", "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-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-traz67wuyp?api-version=2015-05-01+17": { + "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-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-1f3z95rjxc?api-version=2015-05-01+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-traz67wuyp?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-1f3z95rjxc?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": { @@ -733,36 +778,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/2eb9895d-e297-46e3-8c99-c791d1ff6fc9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "ff4c4b46-3cc5-442e-9559-1aac69392083" ], - "x-ms-correlation-request-id": [ "ff4c4b46-3cc5-442e-9559-1aac69392083" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T061945Z:ff4c4b46-3cc5-442e-9559-1aac69392083" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b73cb53-84f9-413b-85cd-e38b6da602de" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "9e38fb2d-32c4-420e-87b1-50e805dc483b" ], + "x-ms-correlation-request-id": [ "9e38fb2d-32c4-420e-87b1-50e805dc483b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084012Z:9e38fb2d-32c4-420e-87b1-50e805dc483b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A784A843C634487A7791C717BAA497B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:19:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47EBFB3B46AA4A5B9B8EBEA9D62CBFFB Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6a00b844-0000-0300-0000-68e754010000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"name\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"AppId\": \"4455609c-3039-48e5-84de-5559f42ce951\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\",\r\n \"ConnectionString\": \"InstrumentationKey=a0a40184-8a84-4c75-8a8e-2e0cafbf10b8;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=4455609c-3039-48e5-84de-5559f42ce951\",\r\n \"Name\": \"Func-PowerShell-NewTest4-traz67wuyp\",\r\n \"CreationDate\": \"2025-10-09T06:19:38.3336341+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-traz67wuyp_4455609c-3039-48e5-84de-5559f42ce951_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-traz67wuyp-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\": \"\\\"d403f2f7-0000-0300-0000-690db06c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Func-PowerShell-NewTest4-1f3z95rjxc\",\r\n \"name\": \"Func-PowerShell-NewTest4-1f3z95rjxc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-1f3z95rjxc\",\r\n \"AppId\": \"5b9efc9f-d13f-4740-9a1f-0bbd517d7d5a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7f7918e1-37ec-464b-8e6b-a1755c5ec47f\",\r\n \"ConnectionString\": \"InstrumentationKey=7f7918e1-37ec-464b-8e6b-a1755c5ec47f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5b9efc9f-d13f-4740-9a1f-0bbd517d7d5a\",\r\n \"Name\": \"Func-PowerShell-NewTest4-1f3z95rjxc\",\r\n \"CreationDate\": \"2025-11-07T08:40:07.5495007+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-1f3z95rjxc_5b9efc9f-d13f-4740-9a1f-0bbd517d7d5a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-1f3z95rjxc-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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01+18": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;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=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-traz67wuyp\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\"\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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;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=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-1f3z95rjxc\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=7f7918e1-37ec-464b-8e6b-a1755c5ec47f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5b9efc9f-d13f-4740-9a1f-0bbd517d7d5a\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1790" ] + "Content-Length": [ "1718" ] } }, "Response": { @@ -770,43 +815,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E4B7029150\"" ], + "ETag": [ "\"1DC4FC2237B38C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c466385-35ce-464f-af41-3f51285bf811" ], + "x-ms-request-id": [ "a6f8d813-139f-419f-890c-95be1ebb9baa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8cf52e9-b218-478f-aef5-15caf56f98cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a42cf55a-1f6d-43bc-bb3b-717bbc287f2a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "81ed8d15-597e-45ef-a08a-3773caa2c768" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062028Z:81ed8d15-597e-45ef-a08a-3773caa2c768" ], + "x-ms-correlation-request-id": [ "198e3105-4d17-48ff-987e-ff601c6a1454" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084054Z:198e3105-4d17-48ff-987e-ff601c6a1454" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 256A1D8BEF664690BA5CB8298C7D47AB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:19:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EB7B6A3277144FAB7C3C5284F6E9F31 Ref B: MWH011020808025 Ref C: 2025-11-07T08:40:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:40:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8566" ], + "Content-Length": [ "8565" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:19:48.117\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\",\"func-powershell-newtest4-1f3z95rjxc.scm.azurewebsites.net\"],\"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-1f3z95rjxc.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-1f3z95rjxc.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:40:14.37\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":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-1f3z95rjxc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-1f3z95rjxc\\\\$Func-PowerShell-NewTest4-1f3z95rjxc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest4-1f3z95rjxc.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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01+19": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "e4bf7db5-47b0-40e7-ae7a-5dcab010b0ec" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "81023d11-89d3-45a1-b974-6bba83fc26ec" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ] + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ] }, "ContentHeaders": { } @@ -816,42 +861,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E4CE75D540\"" ], + "ETag": [ "\"1DC4FC23AF61DD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfdeb81e-138a-48f8-b6d8-0b8ab3a6547a" ], + "x-ms-request-id": [ "823a69f2-3c38-423a-a39c-8ed66b5c149a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ad3eefc4-c016-4e6b-a5d4-698aef2611c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062059Z:ad3eefc4-c016-4e6b-a5d4-698aef2611c6" ], + "x-ms-correlation-request-id": [ "d330952b-bb3f-4fd5-b918-21013bdd6f66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084125Z:d330952b-bb3f-4fd5-b918-21013bdd6f66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 298FFA9B00B04E0C919DFD0F74199C4D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:20:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D37442DD6CED4F598A918ECC66A67D32 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:20:28.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\",\"func-powershell-newtest4-1f3z95rjxc.scm.azurewebsites.net\"],\"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-1f3z95rjxc.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-1f3z95rjxc.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:40:54.573\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-1f3z95rjxc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-1f3z95rjxc\\\\$Func-PowerShell-NewTest4-1f3z95rjxc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "602" ], - "x-ms-client-request-id": [ "72dffd30-85ac-4df2-b206-60b1c4763e87" ], + "x-ms-unique-id": [ "608" ], + "x-ms-client-request-id": [ "4478ae46-3b60-4ede-9cda-ccc707804955" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -862,42 +907,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E4CE75D540\"" ], + "ETag": [ "\"1DC4FC23AF61DD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90890384-4682-40a2-92d6-d24ca74ebfaf" ], + "x-ms-request-id": [ "4895b559-e56c-41c3-8754-0007e4ed6370" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c00bcd9e-9010-4aea-abaa-b0b80c8209b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062059Z:c00bcd9e-9010-4aea-abaa-b0b80c8209b6" ], + "x-ms-correlation-request-id": [ "212c6d54-b683-477a-96ca-0b3e3140dbc3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084125Z:212c6d54-b683-477a-96ca-0b3e3140dbc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E726B2C22D4F4E518F7ED6F1F0579A4E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:20:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2536BDCC8434821B717F6B079D6988A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8431" ], + "Content-Length": [ "8540" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Func-PowerShell-NewTest4-traz67wuyp\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"func-powershell-newtest4-traz67wuyp.scm.azurewebsites.net\"],\"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-traz67wuyp.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-traz67wuyp.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:20:28.18\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-traz67wuyp\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-traz67wuyp\\\\$Func-PowerShell-NewTest4-traz67wuyp\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"func-powershell-newtest4-traz67wuyp.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Func-PowerShell-NewTest4-1f3z95rjxc\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\",\"func-powershell-newtest4-1f3z95rjxc.scm.azurewebsites.net\"],\"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-1f3z95rjxc.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-1f3z95rjxc.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:40:54.573\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-1f3z95rjxc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Func-PowerShell-NewTest4-1f3z95rjxc\\\\$Func-PowerShell-NewTest4-1f3z95rjxc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"func-powershell-newtest4-1f3z95rjxc.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/appsettings/list?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+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "e014fdef-6cba-4971-b7af-61b066368e98" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "a24be777-5478-4eb3-b135-c9062fe1f1cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -909,40 +954,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a4e9ce7-ccc0-4e9e-8a57-2ee791824f61" ], + "x-ms-request-id": [ "ee8a4fba-d6ee-4bc8-a46f-6bb89dc08e66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2dd97d72-47da-4fdd-8562-7a8b070aa3ec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28a74b75-1356-4484-99e8-5a99ab9e4a94" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7791843e-8f9e-48a7-8c28-ca80d8c58887" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062101Z:7791843e-8f9e-48a7-8c28-ca80d8c58887" ], + "x-ms-correlation-request-id": [ "a50d2f7e-b11e-497f-b942-fe29ee3272d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084126Z:a50d2f7e-b11e-497f-b942-fe29ee3272d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B94030C422D646CA80DD268EC38A9ACC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:20:59Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23976767ABEC4678A371009CB44F18B3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:25Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1191" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-traz67wuyp\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"a0a40184-8a84-4c75-8a8e-2e0cafbf10b8\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-1f3z95rjxc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7f7918e1-37ec-464b-8e6b-a1755c5ec47f;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5b9efc9f-d13f-4740-9a1f-0bbd517d7d5a\"}}", "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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/web?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "604" ], - "x-ms-client-request-id": [ "7c8bb403-64b6-4940-a75f-4ad72c24bddb" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "2c5167a7-e7a6-4189-8d99-abf3d3162a5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -954,41 +999,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9cba072d-bd9e-4719-b60a-3106cb416f18" ], + "x-ms-request-id": [ "75f9a207-b3bf-4405-876c-4b987a1d94eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f1a3459-4663-4821-bcf5-acca35ee5cb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7cc0ef41-6c0b-45b9-8fd2-6dd4c71ab38b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cc3d4a01-d2fd-4d92-a760-d2696ecc3881" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062101Z:cc3d4a01-d2fd-4d92-a760-d2696ecc3881" ], + "x-ms-correlation-request-id": [ "e6e9c2f9-5593-4157-abe8-333ee1dd6089" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084126Z:e6e9c2f9-5593-4157-abe8-333ee1dd6089" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB7CB3468201487C933B1983B0A5F0BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:01Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BB4CD7223064CD29C0AA98EA109F06B Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp/config/web\",\"name\":\"Func-PowerShell-NewTest4-traz67wuyp\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc/config/web\",\"name\":\"Func-PowerShell-NewTest4-1f3z95rjxc\",\"type\":\"Microsoft.Web/sites/config\",\"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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "c8ebe554-91a3-4b50-9caf-7a1a2a401cc1" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "e5950d7c-f46b-48a8-9f4e-54d16f19fe81" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -999,20 +1044,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E4CE75D540\"" ], + "ETag": [ "\"1DC4FC23AF61DD0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1ca34f3-61fb-483e-83fb-1af56993e024" ], + "x-ms-request-id": [ "3e5b789a-2d54-4a99-b4b2-f81e0d0f36a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b5869a1-84ee-4681-a53a-464edfe1dd9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00cc380f-ca88-48ef-90b7-9283641a5aa3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "ee28f75a-1ca2-4aa9-8336-fda783931b22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062153Z:ee28f75a-1ca2-4aa9-8336-fda783931b22" ], + "x-ms-correlation-request-id": [ "7cfdaccc-b46f-4644-b0cf-3db7bf0825a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084133Z:7cfdaccc-b46f-4644-b0cf-3db7bf0825a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11AEE0968FEC4595866EF17FE85380D1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:02Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F92C9D99FD734382ACF9AC14EB758D1D Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:26Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1022,19 +1067,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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "606" ], - "x-ms-client-request-id": [ "7c956c0b-5b7c-42b5-8e77-84c83cabd7a2" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "7faa18fc-2ea9-4623-9c35-58547258a21e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1046,40 +1091,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "021894d5-df99-44dc-927d-f5a02e5b77ea" ], + "x-ms-request-id": [ "27c7d9e2-eaa5-402d-b45c-1fcfddf27306" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a25d805a-5b52-45bb-b8ee-9d076e8e50d0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:a25d805a-5b52-45bb-b8ee-9d076e8e50d0" ], + "x-ms-correlation-request-id": [ "833fa1bc-8beb-4555-8a38-1d951483416c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084134Z:833fa1bc-8beb-4555-8a38-1d951483416c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2ADA4597724480D9356088F685DB73D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:53Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D05605A7FCD1447FA0EC336ADA7C944E Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:33Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?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-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?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-n8vg16/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-traz67wuyp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-1f3z95rjxc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "607" ], - "x-ms-client-request-id": [ "d2c330ed-016e-4419-aded-3229fdeff433" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "a8bed7d5-5cf2-4607-a6a0-c8823d151615" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1091,37 +1136,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "39a09994-e054-4a06-8b24-dfe5055bed81" ], - "x-ms-correlation-request-id": [ "39a09994-e054-4a06-8b24-dfe5055bed81" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:39a09994-e054-4a06-8b24-dfe5055bed81" ], + "x-ms-request-id": [ "ba727942-29e5-4c1e-bd11-e26c0260809e" ], + "x-ms-correlation-request-id": [ "ba727942-29e5-4c1e-bd11-e26c0260809e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084134Z:ba727942-29e5-4c1e-bd11-e26c0260809e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 719A9910AE844D8F9E402CA597060E3E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE8AC0F73A064516B773612BD9414DCB Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:33 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-traz67wuyp\u0027 under resource group \u0027Functions-Test-Windows-Premium-n8vg16\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-1f3z95rjxc\u0027 under resource group \u0027Functions-Test-Windows-Premium-a7inyz\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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "608" ], - "x-ms-client-request-id": [ "d5a71def-6319-4ff5-8844-3da71781590d" ], + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "8ecb516a-6596-46f7-8aac-1019672c8966" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1133,40 +1178,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ee69a6d-c9af-41b3-9d8a-107a1c7ed532" ], + "x-ms-request-id": [ "52f85b2f-c6fd-4e0b-8f83-b98fe05ac5b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10d84247-6f90-43d5-afa2-e83ba5474bd9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062154Z:10d84247-6f90-43d5-afa2-e83ba5474bd9" ], + "x-ms-correlation-request-id": [ "67a5128b-101a-4f52-8c6c-201ad663b9d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084134Z:67a5128b-101a-4f52-8c6c-201ad663b9d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68B8C534BEC047B5B38867BFE177CCAE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], - "Date": [ "Thu, 09 Oct 2025 06:21:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3D6DC65BBD04D0EB95FBBF1C837BC70 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1727" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76\",\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":52689,\"name\":\"Functions-MyTestPlan2-j1ct3mxi76\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-n8vg16\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_52689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-10-09T06:19:00.627\",\"asyncScalingEnabled\":false},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu\",\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":53459,\"name\":\"Functions-MyTestPlan2-e83lkdz4bu\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"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-a7inyz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-009_53459\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":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-07T08:39:26.91\",\"asyncScalingEnabled\":false,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?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+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01+28": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-j1ct3mxi76?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-e83lkdz4bu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "609" ], - "x-ms-client-request-id": [ "0f8ec9b5-7753-4fe6-998c-67305d408911" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "0a6193e5-cb94-404c-8b89-8eab56f84b37" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1178,18 +1223,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c762193b-f8c7-40a4-b40d-f854b633372c" ], + "x-ms-request-id": [ "e7b6051a-4258-4ded-8fac-7c1e0d50de0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0a93cec-74a0-4b30-a1a7-8f68503e2df8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "316908ac-eb2e-4c3f-a720-c2103d53aa97" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062200Z:316908ac-eb2e-4c3f-a720-c2103d53aa97" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a97946d4-6d1c-426d-835d-29d4fdba13c9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "22a2c5e8-aa28-4d4a-b419-9a3a861e6aed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084143Z:22a2c5e8-aa28-4d4a-b419-9a3a861e6aed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F1D5AFDC44A4D5FA68D34AB5A2B7348 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:21:54Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E7803FE0BA143E0A27DF127FA1148EE Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:34Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:43 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 24e01c6e6055..a09a28e84a8f 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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "f77ff9d5-afef-4b57-b9de-b3e0d4574ffb" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "4c7c3ed8-889a-487c-80df-df979439ebeb" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c4ced2f8-68e7-4173-8c70-2767af793e87" ], + "x-ms-request-id": [ "bfad5c44-6bf1-467c-a862-cb7330b1003d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8e1a552-3b3f-44f9-9999-8650fa09af9c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2846911-2eaa-4aef-b385-5cdd1a6b31f3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "74284341-6651-4a5b-95b6-87b2eeb44a54" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:74284341-6651-4a5b-95b6-87b2eeb44a54" ], + "x-ms-correlation-request-id": [ "eb254906-9c0c-4010-89de-485a04046f2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084145Z:eb254906-9c0c-4010-89de-485a04046f2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4A5510556DE44CEB80684BB797E1F31 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C40C3266CA574249AEFB4CA19375E938 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -44,19 +44,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "611" ], - "x-ms-client-request-id": [ "b9f3ed09-01ce-4012-b06e-b18a71449f99" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "59b5d82e-b3da-44a6-8d25-fa6451c0c166" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -67,42 +67,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E5069D2360\"" ], + "ETag": [ "\"1DC4FC2591B18B0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3368e2c5-c09c-43fd-98dd-29980fbe6c59" ], + "x-ms-request-id": [ "81912b2d-e5ea-46b0-856f-c68a99e5bbe0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af1fa4fc-66ae-4a14-88e1-b774543a75c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:af1fa4fc-66ae-4a14-88e1-b774543a75c6" ], + "x-ms-correlation-request-id": [ "bd498e60-3642-4972-b180-a1fabb3d8e83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084145Z:bd498e60-3642-4972-b180-a1fabb3d8e83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8887A4E0A6046739B27AE0236928D66 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 504B999C035F4B28BBF1093CE1BF2E95 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:02.39\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:45.147\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "612" ], - "x-ms-client-request-id": [ "cec10416-f36f-4528-81b8-e43ccf56c602" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "c658feb5-06c8-4b52-bd97-cc973b309155" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c19d441b-4491-4a5b-a5fc-f1ac8d5c73cc" ], + "x-ms-request-id": [ "9acc040f-f6f9-4c98-9a6b-bf2351a2739a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/646692e4-e4ea-415e-b52f-d9c114a2e2ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b358d46-bf6f-49ee-ae77-bab2744b9394" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ae7daacc-b6b7-4efd-b5b8-3d12aaaffac8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062202Z:ae7daacc-b6b7-4efd-b5b8-3d12aaaffac8" ], + "x-ms-correlation-request-id": [ "4227e560-f8d2-4659-a541-5f92926b6bd5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084145Z:4227e560-f8d2-4659-a541-5f92926b6bd5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26DD06CB557343CA9C53185F0BAC1243 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:02Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BA2D7E2C81640CFA01F41A858E5DE4A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "0946b8fa-f240-4d09-8f37-f485ca1c0755" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "2ca3d33f-955d-456a-954f-55ec5f54591f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "8f0d6843-e9ff-443b-887a-684eb65f74e6" ], + "x-ms-request-id": [ "66682d9e-30d6-48ac-9351-dab739c91f58" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b5e9f4d8-5217-4027-b29f-2bc7e7dd0a45" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e8dc1ee-07af-476b-93ac-10b400c102b5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "048e575c-80a2-4abe-b350-d4b575fb42b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:048e575c-80a2-4abe-b350-d4b575fb42b0" ], + "x-ms-correlation-request-id": [ "9753088c-9e85-4cbf-9479-678b45bc6a1f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084146Z:9753088c-9e85-4cbf-9479-678b45bc6a1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78E55D850F904D19A780EDEF5B3A3FFA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E831899E2AA24E1BB68BEEA5A78BF437 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:45Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "227f8e1d-e2d3-4fa5-8c70-906683036556" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "121c804f-a379-413a-8e76-f71cc07e3187" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b196d5bb-cf54-401e-9be5-a5adcc55076f" ], + "x-ms-request-id": [ "80378732-5484-47e9-b2ad-344ccfc51417" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58d1e2e7-0c11-47cd-b033-bef0ad8b4042" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e56822f4-c79e-41a5-9e8f-54524d613483" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "55e2ed7d-8fba-4f1e-836e-ed5a92811fce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:55e2ed7d-8fba-4f1e-836e-ed5a92811fce" ], + "x-ms-correlation-request-id": [ "51c91201-2854-42c1-9002-3ec4cfa12ff4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084146Z:51c91201-2854-42c1-9002-3ec4cfa12ff4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F22B815BF8664CF79D5CE0727088C291 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F374B6961B714B8FB6972FEEF8A2583A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -226,19 +226,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "615" ], - "x-ms-client-request-id": [ "88cfba4e-1c4e-4ea9-a39c-c665c1d68f69" ], + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "a0e6f357-db4c-46ea-9f7d-a6b7fb7f31eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -249,42 +249,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50746F7F0\"" ], + "ETag": [ "\"1DC4FC259D73CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66d8972e-8318-4a3f-9cb6-31622de6e962" ], + "x-ms-request-id": [ "0a9cf315-8cd4-405b-98bf-b07c33cd05e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ef27540-9f15-48ba-ad64-5bb13eba8fe5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062203Z:3ef27540-9f15-48ba-ad64-5bb13eba8fe5" ], + "x-ms-correlation-request-id": [ "b0530bfc-f047-400d-8a26-646784cadf2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084146Z:b0530bfc-f047-400d-8a26-646784cadf2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B83B4D05AAC4DD999EFC6D3D4D0B825 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A7D911EA2BFD49678272FD849915F911 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8362" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:03.503\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:46.38\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "730614b5-f720-45ab-aff9-c1eedd0db6c6" ], + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "b9afeb32-0a3c-4442-a5ac-c8c9dd347c06" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a3ce8cff-ca4f-488f-9b1e-52128c4744a0" ], + "x-ms-request-id": [ "2daa2491-c090-46a8-a5a0-57dbb9914cf4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb5bb889-dc90-4491-be72-c74af90f2de6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8eb2461-b679-4e7c-a2f5-69c2a7d03cbf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "819dc13b-25fe-4484-a651-c0258c778f60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:819dc13b-25fe-4484-a651-c0258c778f60" ], + "x-ms-correlation-request-id": [ "a0d3bf4c-fafc-4491-a3a9-24c07005d31b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084146Z:a0d3bf4c-fafc-4491-a3a9-24c07005d31b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22151EBF0A984BD8912CED363217EDC4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:03Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B91F415A9BD494896547E1B77AF85D8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:46Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "9595742c-fbb8-48e0-9d6a-84f28438567c" ], + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "2b864de8-7f26-40e2-a2e1-d4d26fd141db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a5d1e1e4-cb48-46e1-9e34-4b7ac0ef5d51" ], + "x-ms-request-id": [ "98b15472-fa0f-4fad-a63e-afe1dc139536" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddf5abdc-1276-489b-a00b-0f77f7f9b0bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4028be99-b7e6-431a-a545-bd770218dfdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "99140c5d-48df-4905-8f34-2f4a6d942358" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:99140c5d-48df-4905-8f34-2f4a6d942358" ], + "x-ms-correlation-request-id": [ "8b3bca9f-9e19-4d3d-b47c-38f6c6ccc8fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084147Z:8b3bca9f-9e19-4d3d-b47c-38f6c6ccc8fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89D0F6836C144F6CAA040B336093EF91 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3203D67D2E29416A85CA6EF477C3D862 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "a320796a-1dd8-4b1c-a24b-bf4a39b7febd" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "7c5f71b0-dd81-47c5-9aac-08980c1dffb6" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7106f99b-73cb-4855-a62e-2d5ad116d225" ], + "x-ms-request-id": [ "6f5905fe-fe92-445d-afe5-4c23f24b56e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f17a198e-2396-4efb-b7fd-35dbcdd714fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/272fdb8c-774e-4b15-ab9e-da02789b82d5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b2773128-6a1c-4cd3-9fad-4ad74edfe09c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062204Z:b2773128-6a1c-4cd3-9fad-4ad74edfe09c" ], + "x-ms-correlation-request-id": [ "07f2440f-21cf-4910-8c58-2c66e49af0b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084147Z:07f2440f-21cf-4910-8c58-2c66e49af0b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 778CAC97EF0140D392AECECE6AFBD0B7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45083261A6BB4677AFB4CBA6F11EA869 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -408,19 +408,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "d50fd29a-3b5a-4498-b6ad-a61b56a10a81" ], + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "896895ac-0fec-4fc5-8bcb-c2a2d6d8aec5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -431,42 +431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50803B840\"" ], + "ETag": [ "\"1DC4FC25A74DC50\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "757f1bd5-f2f7-4b2e-9b46-ecf82315f6e2" ], + "x-ms-request-id": [ "99fa11e6-e4c7-4461-8348-f298b13c1efb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63f4d424-256a-4740-b3c3-c31b25781d8e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:63f4d424-256a-4740-b3c3-c31b25781d8e" ], + "x-ms-correlation-request-id": [ "cfca61df-9b5c-4084-ae7f-ce5cd1f12ca4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084147Z:cfca61df-9b5c-4084-ae7f-ce5cd1f12ca4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A69F7CD885F64873925535B050993313 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:04Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3972620B31434B8F9DDE4385556AC354 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:04.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:47.413\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "9f904ecb-0589-43ec-ae8c-3c5c7aa5c204" ], + "x-ms-unique-id": [ "626" ], + "x-ms-client-request-id": [ "3862ce23-6dcb-4344-bf10-a62def6d3857" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "72a12851-6469-4cf4-9b80-5ed58a2f899a" ], + "x-ms-request-id": [ "c401d5ae-a46a-4ce5-b942-27f868800a13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bb3ba2c9-dc09-4243-a075-8de4e77e1068" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af548b09-4233-4e1d-b032-80ef84683d7e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "063aaa2c-7e79-4cb6-b5b3-c4b496c5b375" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:063aaa2c-7e79-4cb6-b5b3-c4b496c5b375" ], + "x-ms-correlation-request-id": [ "33a6cac3-f7b3-4083-a180-8a730a401539" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084148Z:33a6cac3-f7b3-4083-a180-8a730a401539" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8DF6C740A7D4A699C5562D02BE28B0B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7729331A5E348EA9FC39B85431586B7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:47Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "621" ], - "x-ms-client-request-id": [ "99b92792-0436-43cf-a146-899fb8519d06" ], + "x-ms-unique-id": [ "627" ], + "x-ms-client-request-id": [ "9d4a61d9-a699-4ea0-899f-e6e52fbb621a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "86dbe55b-25a7-4578-a854-e9fcd8b4910c" ], + "x-ms-request-id": [ "a0b1a3fb-93ff-4d03-b7e7-5c8fcbd18917" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52717d6a-829d-4f57-8837-b0de945b0f22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e708304b-c303-46c5-a0ac-468aae3926f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:e708304b-c303-46c5-a0ac-468aae3926f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5db5e3fd-a4fd-4e60-a77c-fa5094971875" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "78722f0c-8c8e-4e2f-96b1-b571eb4c5d8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084148Z:78722f0c-8c8e-4e2f-96b1-b571eb4c5d8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8E31F8D3C994BF4BD8CDD99FDD6AA50 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 308BB36E49C94E63A3E8C7A99C0E6C56 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:48Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "622" ], - "x-ms-client-request-id": [ "d1780533-ff68-4451-a6ef-43b77bae81cb" ], + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "3d0c81f4-8277-4ad6-9e11-4a45b0a53028" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "12834e7c-2bfc-4dd7-8fac-0d69434f940a" ], + "x-ms-request-id": [ "7a51030f-a849-4c75-9431-372bb30dc60a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3e349db-f055-4e92-b266-75bc67968414" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/794967d2-85d1-406d-8766-f4591bb46c1f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f211b873-ffb9-4c53-96e0-e67497f2d7ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062205Z:f211b873-ffb9-4c53-96e0-e67497f2d7ce" ], + "x-ms-correlation-request-id": [ "695abdc1-b075-4f5e-accd-5963e39adfea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084148Z:695abdc1-b075-4f5e-accd-5963e39adfea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06B3713F31564CA0AD71FB165280E968 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:05Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1B879D3E670A47D9BACADF655E4A87DC Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:48Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -590,19 +590,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "623" ], - "x-ms-client-request-id": [ "262dd706-e92d-419f-b969-33d4d2a59cee" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "acc4f41d-e63c-481e-8cb8-3f6620d0fbed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -613,42 +613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38DEBCB2434B\"" ], + "ETag": [ "\"1DC4FBD131BAE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd9aed64-c111-45e2-b29c-fcc346fa7bc8" ], + "x-ms-request-id": [ "d4b6e747-5da4-46ae-aa53-172850381a6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1ffe6fa0-ecd2-4ff2-9e53-c4f219e2fccb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:1ffe6fa0-ecd2-4ff2-9e53-c4f219e2fccb" ], + "x-ms-correlation-request-id": [ "84114f9d-5619-425f-9a85-a314bb12440b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084148Z:84114f9d-5619-425f-9a85-a314bb12440b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79CCC5E560C841DB8483C385FF2FE972 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9089C61915F4E87B836C6182B3698B1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:48Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T05:37:01.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:04:00.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "624" ], - "x-ms-client-request-id": [ "db0f62e5-ea06-4012-b59e-c622ee0d1c71" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "3a2f21fc-1bb4-4ab3-858d-e0e90758e5a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1427e7ad-0e0c-4386-bb86-06ab4c2d1f1b" ], + "x-ms-request-id": [ "cc7ea481-03f3-45f3-a233-b89c64c56fce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c44e2e4-4805-4c80-ab0d-2a89d3045db4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5328303d-de34-4d8d-99c7-b4079b323c75" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd17224d-45f3-4a1c-998e-2e5cabe89971" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:bd17224d-45f3-4a1c-998e-2e5cabe89971" ], + "x-ms-correlation-request-id": [ "48219e2a-885f-4bac-80c4-6105f34f5084" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084149Z:48219e2a-885f-4bac-80c4-6105f34f5084" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 619E8883FD2D483C8185AB6F81C14791 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B8C3FC3459B4AD38FB7EEBA40B86508 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:48Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "625" ], - "x-ms-client-request-id": [ "c062860b-f963-4c34-9b1d-2c8dda6e5ad1" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "463add41-e36f-4092-b9c6-d7c45238b406" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ba2f2f6a-967f-49bc-9535-26d841b1ecab" ], + "x-ms-request-id": [ "9ce1613f-deda-4ea9-bb99-fb956b0547f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd122dfb-9b0c-48cd-8c1f-d531db1b87dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae23981b-d01b-486a-ac5d-e8ed52327025" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "38b09c21-2277-4217-9a58-ad27899ad4ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062206Z:38b09c21-2277-4217-9a58-ad27899ad4ba" ], + "x-ms-correlation-request-id": [ "16c7aea0-f2a4-4bf9-9095-1f309cce8ae6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084149Z:16c7aea0-f2a4-4bf9-9095-1f309cce8ae6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4FCED264A8A45AA983ABEA93F59A824 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E8A15863E9A4271A87A89FFE7B8B8E5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:49Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "626" ], - "x-ms-client-request-id": [ "8b6a30d3-513f-45af-bd2d-feb7e2f4b541" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "16835f53-b549-4806-a02d-27ebc70d5abe" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f0d46f3c-7191-4bee-8fb2-d6e92acee693" ], + "x-ms-request-id": [ "f1dca4b5-c673-401d-99fc-686f3c0282c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d24fc270-0d87-4a03-b903-ceee4154766e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0da0ce4a-c897-4240-a1a6-29b54d3c9373" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e1e6388f-beaa-4f9b-9e55-f33d01582b02" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:e1e6388f-beaa-4f9b-9e55-f33d01582b02" ], + "x-ms-correlation-request-id": [ "6f205943-b5b5-40e9-bf00-e2b7a3d73f01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084149Z:6f205943-b5b5-40e9-bf00-e2b7a3d73f01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F50DD407C18043A0AEFEC583000CD874 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:06Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1306CB2083C3412AAE1F9E11E81122B3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:49Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -772,19 +772,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "627" ], - "x-ms-client-request-id": [ "9d0aa501-d549-4b7e-99ff-d3ccf81b4e94" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "8c697647-1b7f-46f9-a561-06100b508d00" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -795,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E509567700\"" ], + "ETag": [ "\"1DC4FC25BCEC700\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ecff9728-b689-4f1e-99c6-a3e01c12e21b" ], + "x-ms-request-id": [ "4dd59efb-769c-4c82-82e4-df5a17ba1e1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f9285d43-50e7-4b2c-8475-3673fac085ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:f9285d43-50e7-4b2c-8475-3673fac085ea" ], + "x-ms-correlation-request-id": [ "ba505166-fbbf-4f0b-8505-11ef3674ac0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084150Z:ba505166-fbbf-4f0b-8505-11ef3674ac0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 893C09BA7C0F4D4AB542594AFD262ABB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 277145FF7500436D9351AB3C5AB7478B Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:49Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8196" ], + "Content-Length": [ "8317" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:06.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:49.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "628" ], - "x-ms-client-request-id": [ "144b1429-de1f-4b41-83cc-845e8e99ee15" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "c802986c-8e25-46d6-89bb-18b6bea3d1a8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "fbe36dfb-c377-45cb-9f34-55d12326c9f1" ], + "x-ms-request-id": [ "12257d21-fe4f-4a93-8926-0b033d50c08d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/179ef110-a331-408f-ac23-dbaa37eef6e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/55038245-e858-40cc-816d-1408657a24fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b0399b95-ed34-4674-b9e4-e86afce0b071" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:b0399b95-ed34-4674-b9e4-e86afce0b071" ], + "x-ms-correlation-request-id": [ "b5aa5f25-8f05-45d1-a97c-ca4385e24ffc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084150Z:b5aa5f25-8f05-45d1-a97c-ca4385e24ffc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 105D15877B8148DE958AF047282229F8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E0C0E1DD248542869CBEEED5BD6FC8D5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "36728b35-7145-4565-8190-48dc59d25fe7" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "742e1e16-7e38-4e43-996d-b6eced2a8b9a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7bb8d97e-d782-42c4-9b22-041d0cf2bd34" ], + "x-ms-request-id": [ "0ec3b4aa-d11d-4c9e-886b-5e7a7e093af8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f6230da-4810-40b8-833a-6dd1f4fe4892" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "0135b4c1-33ee-48df-8838-d7b2fdc1323d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062207Z:0135b4c1-33ee-48df-8838-d7b2fdc1323d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9890b02-6ef0-48a6-b9f2-d699305fa2a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8468e5fe-359e-4a94-9637-c37b0fad5bf8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084150Z:8468e5fe-359e-4a94-9637-c37b0fad5bf8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEF1013F3FCF4D9CAA35931D9E1E84B3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98202734E3DF46CAA71C2C1130B72F66 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "a15f265f-1d4f-4447-a483-b02623ebf054" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "7ec4fd7f-c5ac-4b64-aa55-aa5c1a721d31" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c87cd8c2-6e45-4054-89e8-4d4ba748f96e" ], + "x-ms-request-id": [ "8d337cf2-90f0-4ff9-b84e-6e9f8d5a3539" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90bda592-a3c6-42f6-af10-78f2edd5fcb9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/147f5bfe-715d-4ee3-b8d1-d32376568190" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b01bb037-9918-42be-a13d-8ae35d92f4dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062208Z:b01bb037-9918-42be-a13d-8ae35d92f4dd" ], + "x-ms-correlation-request-id": [ "5ba062e1-c6ae-460d-98ff-3648a9b670ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084150Z:5ba062e1-c6ae-460d-98ff-3648a9b670ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0161D18F7C9547308D9F89CBCA78B84B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:07Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C57F92D643F402C91FE1A55DF7614E2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -954,19 +954,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "20ff2dd6-9d38-48e1-a6f8-bf04d2051382" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "e26dafdf-c7c6-490e-8834-730198d0f8d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -977,42 +977,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50A2FA5F5\"" ], + "ETag": [ "\"1DC4FC25C6E7C6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eabaf3d0-561c-43ef-9360-3c89295712fd" ], + "x-ms-request-id": [ "8987dd5c-a3ce-430d-9b9a-44bc61ecca18" ], "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": [ "fe2b11a2-c8af-4a4b-948d-61b5606bd323" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062208Z:fe2b11a2-c8af-4a4b-948d-61b5606bd323" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e6e4d149-3b86-4e7a-997e-dd06892f2786" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084151Z:e6e4d149-3b86-4e7a-997e-dd06892f2786" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8FC10EE5C48341CA8F73DF1A42523423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:08Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66C43EEE4AE24747A88541244C4BFC1D Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:50Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:50.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "a1aa23ce-8ffb-4b7c-9440-004de99de1f3" ], + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "85ba1d73-7782-46a8-ab74-5fd5085c69af" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "be43e2e3-6cef-42e3-b560-42e40e4b2ee4" ], + "x-ms-request-id": [ "76e676aa-6eed-4a6e-b1b8-f8faf1c8a1de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d969e835-d31b-4d57-b767-94d2c7c2ce73" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/140b63ab-a183-4cd0-b4a2-085160cd06d7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "44145053-a4c7-4cc9-8c33-10391ca3d2df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:44145053-a4c7-4cc9-8c33-10391ca3d2df" ], + "x-ms-correlation-request-id": [ "82fb4855-0e26-46ca-8c70-76526317b793" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084151Z:82fb4855-0e26-46ca-8c70-76526317b793" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5E82D9CFB5F4E6DA3EEC4F38D87AA2F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:08Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 926D252402404993988F8978DBE1136A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "633" ], - "x-ms-client-request-id": [ "e45e89bd-ead6-475c-aa6e-4849165a8d45" ], + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "f12a4dc0-1929-43e1-a748-c75ad4f3a35d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "3ab4a25a-6b54-4b38-beb3-7b50b94a4353" ], + "x-ms-request-id": [ "67283466-4c1e-4881-8326-69d67f3471c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a21169ce-0f66-499b-9011-356cfebaf96f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cea6146e-3bfa-466e-820d-2ea5c5af3e8e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e27f1f97-0895-45b5-be6b-d2fca544f110" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:e27f1f97-0895-45b5-be6b-d2fca544f110" ], + "x-ms-correlation-request-id": [ "28f05a8d-ec7f-4544-9db2-5b5b69a40ba1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084151Z:28f05a8d-ec7f-4544-9db2-5b5b69a40ba1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 424560255499479B93C107FB22DFCFD0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09256FA789C447DFB43728656A10D8B8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "634" ], - "x-ms-client-request-id": [ "67474982-b6eb-491f-b5b7-57f074a6e245" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "8cbf7685-728e-4d64-8f1a-3d2e443b3a57" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b3eb12a7-5335-4511-b51a-1f61db20f916" ], + "x-ms-request-id": [ "89fbb29e-b52e-40b4-bea4-3725ace73d62" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff7fa774-a484-4310-bbbf-e1d86812f906" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/19774e8e-8aed-4c30-be05-80a0fecb32ad" ], "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "29021a94-dd45-4ee6-8048-143ec4a2ed85" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:29021a94-dd45-4ee6-8048-143ec4a2ed85" ], + "x-ms-correlation-request-id": [ "15e67921-ae07-45d0-ba2c-ef796080f904" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084152Z:15e67921-ae07-45d0-ba2c-ef796080f904" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8D31B6C37E145A6A48E9B8B965E61A5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F7AF12B78F7417190CC4E5EFDA347B4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:51Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1136,19 +1136,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "635" ], - "x-ms-client-request-id": [ "8f8d2d5f-8d76-42e0-ae92-e2b4084fa504" ], + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "accf7fa2-27ad-4e37-aa65-3216c9ab429f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1159,42 +1159,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50AE128AB\"" ], + "ETag": [ "\"1DC4FC25D355BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff57106d-193b-4da4-91af-3cd0d060ed5e" ], + "x-ms-request-id": [ "0b7bec9d-22d7-4026-b86a-5f8ea0e972dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f7cea036-8552-472a-8c4a-35dc30623de4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062209Z:f7cea036-8552-472a-8c4a-35dc30623de4" ], + "x-ms-correlation-request-id": [ "b4c4a96f-687a-434b-b4ab-1f5b66534626" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084152Z:b4c4a96f-687a-434b-b4ab-1f5b66534626" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4C0A1BAC73A41C0B68D94491ABD9C6B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4A277C283FD4C54BCCE0CCD2811B917 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8672" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:09.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:52.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\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "bca69758-ada6-4b79-8d89-edfa325c4a94" ], + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "33a7a47a-bf32-466f-92cd-21d04c3d7d19" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0b8be6bc-bc05-4800-a3db-056838aaf943" ], + "x-ms-request-id": [ "00b1d3ee-7778-44c3-a7bb-dec897e8a609" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9343c332-2ab5-4537-b59a-39bb92fd1b42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3eb7f9f-b6b5-4902-96ae-c14805e57abd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "82d3ab1c-5f3b-41a6-84e5-63f7f8a09752" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:82d3ab1c-5f3b-41a6-84e5-63f7f8a09752" ], + "x-ms-correlation-request-id": [ "071ffb02-5ee3-45ad-ad3d-2ee6e5c0984d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084152Z:071ffb02-5ee3-45ad-ad3d-2ee6e5c0984d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81D67BD4FB8F4444908572D090620B4C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:09Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA5EFFCFA5F0421280414411D94274BB Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "637" ], - "x-ms-client-request-id": [ "a2cdc08b-8a88-467f-aba7-2e42f29d594e" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "0a419f4a-aac9-406d-906b-cf507e5f4898" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1a8d270f-db0c-45e1-af59-0f2d7ab0dda2" ], + "x-ms-request-id": [ "35fb9fa6-de86-4642-b25b-df9827bb8325" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a705b5a-3508-414f-95e4-fa620b88c8e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f583184b-78d8-42d5-93a5-6b4028dc791d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08606b60-c4fa-4f96-85c4-6dc5ff493793" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:08606b60-c4fa-4f96-85c4-6dc5ff493793" ], + "x-ms-correlation-request-id": [ "8e645f7e-8e19-465b-999e-51d5476ddfe7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084152Z:8e645f7e-8e19-465b-999e-51d5476ddfe7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91786B5067134B7687729E09B2CE67D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83ACEC3E8AC54294A17D169DEBD60E43 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:52Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "638" ], - "x-ms-client-request-id": [ "7908cff6-78a3-41ff-bf70-d49d2219f002" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "038b571f-309c-4116-8b4c-0a40080181b6" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cdd3e9cd-b2cf-4c79-af9c-1a828ea1cec8" ], + "x-ms-request-id": [ "110460d1-2ea7-4fd9-8185-4128e1238b0f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24a0536f-77df-4387-9bb9-55d710a55ab7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "f8b37639-34c2-445c-a938-ad56fe395b1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062210Z:f8b37639-34c2-445c-a938-ad56fe395b1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2a066149-c6be-4206-9ee0-f3905792a684" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "3b9cea33-bacd-49de-a57b-71cd68f27507" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084153Z:3b9cea33-bacd-49de-a57b-71cd68f27507" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FFF3F5AD21840D79D0AC6F83AD503E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A29EFE78F2448C497904BE11CE1EA27 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1318,19 +1318,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "b440ad5d-0633-4d8a-afc9-953440d3ca5f" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "b6e98463-9a46-49f0-b40f-c3e775f5b116" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1341,42 +1341,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50B81604B\"" ], + "ETag": [ "\"1DC4FC25DF0888B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "391a6d08-0cd2-4d5f-ac91-756c3ebdbd4a" ], + "x-ms-request-id": [ "67b440d0-152e-4d03-9b8b-8b55076c1adb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "716f90ea-7db8-4079-89e8-c090bbe71594" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:716f90ea-7db8-4079-89e8-c090bbe71594" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d5543d8f-09fd-4dbb-92f0-c4c7750a4678" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084153Z:d5543d8f-09fd-4dbb-92f0-c4c7750a4678" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 774F8B081BBC4F799DB2B7EF8540B429 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:10Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A935E0027D464880BD9BC97D224B06C7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:10.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:53.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\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "8b7e15e4-0ed9-4b80-95b5-3963e7d9d27d" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "bf2515ad-728f-4c00-8d77-de94cac91290" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ed277208-9818-42e7-9c84-d3fe63f2cd78" ], + "x-ms-request-id": [ "f41bb99a-80fd-4675-8892-0710f8b83024" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b77884e6-9586-4208-8da3-76612cea3d1c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6d70b93-a9a9-427e-967b-ff38e8ceaa10" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e225eca5-b8ef-4839-8ebd-3cd6d01f9dbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:e225eca5-b8ef-4839-8ebd-3cd6d01f9dbf" ], + "x-ms-correlation-request-id": [ "23a8402c-ee20-4e3a-996e-dd8f106b5469" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084153Z:23a8402c-ee20-4e3a-996e-dd8f106b5469" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F9A20BB7FE84CF9A2435C645448C473 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DEAC797636EF4689A127CC2E368E4E5E Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:53Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "641" ], - "x-ms-client-request-id": [ "352505b3-d92e-44e3-b625-388beef577cb" ], + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "407d45f6-a95f-4e20-9a1e-410f542aa60d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2b0ba681-53e3-4e98-b2ca-528189457b08" ], + "x-ms-request-id": [ "c54aac38-2c8f-4b7f-8aca-81a7723ac5dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb53a1f6-e3e9-449a-9aae-476ece1eaea8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "05c53cb1-ab30-4f87-a4ec-4dfcd4ed3858" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062211Z:05c53cb1-ab30-4f87-a4ec-4dfcd4ed3858" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c7fd152c-f88b-41b8-bb13-d26d1a2d5a5a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4ecd8cd7-6c51-4aa9-95e9-7de4c67f78e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084154Z:4ecd8cd7-6c51-4aa9-95e9-7de4c67f78e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C15FDCD41FA04429A6AF696A016074C1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 772D78A4F7B446F4B41484202C739025 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "31be82e5-bcd0-483b-b3b1-44d099245362" ], + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "58f72007-bb1c-4650-b6e3-ea887818ec6a" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1097a38d-6fc8-4c23-8e21-883c7a68b394" ], + "x-ms-request-id": [ "28a359d0-8550-4e0a-b892-67312691e48b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57b51c03-628e-46b7-9373-f4c6c171603f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ca6eb086-7649-4c2f-bc9d-f13e9f6dc8e8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "145f0f98-4b96-47da-a682-716a9015e7d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:145f0f98-4b96-47da-a682-716a9015e7d6" ], + "x-ms-correlation-request-id": [ "529545b8-862c-4cde-91bf-752cc576590f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084154Z:529545b8-862c-4cde-91bf-752cc576590f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F12268E2D2804B909CD5B905316B40EA Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:11Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7788554DD4E84B22A62DDC9B668FAC14 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:54 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1500,19 +1500,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "f89be7af-7eee-482a-bd7c-41b31fb59785" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "6926b83a-e884-481b-b1a0-5ff4cb87284d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,42 +1523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50C4ACACB\"" ], + "ETag": [ "\"1DC4FC25EA084A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0818100b-9579-4590-bfff-9b64b9f41311" ], + "x-ms-request-id": [ "ee3783d6-f312-4e27-979c-e5440ff856d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "01de3bec-bd74-4895-8641-61ff8686e2ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:01de3bec-bd74-4895-8641-61ff8686e2ce" ], + "x-ms-correlation-request-id": [ "20841273-5e86-42ae-ba93-1c69eb9fda55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084154Z:20841273-5e86-42ae-ba93-1c69eb9fda55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CCC91394B9E424FB19F23CD4F2AC9EB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4E9064E901A4187BF269F37A1272325 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8672" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:11.9166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:54.41\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "b63e022b-1509-4474-b315-b174f127e78a" ], + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "70c6c71d-5ed8-4a61-80e5-1a74c35952db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "fe9fcc32-7297-4219-a7ac-b4502030aba6" ], + "x-ms-request-id": [ "455b70ec-5558-426b-96f0-4fb8ae437128" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4674f3ca-8f16-4f1f-ae53-e1adf8f8802a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc518517-b634-48e3-9510-4063415a2c41" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "98b469be-45bc-4051-a449-a9e34599b6cd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:98b469be-45bc-4051-a449-a9e34599b6cd" ], + "x-ms-correlation-request-id": [ "c698d2af-f984-4bda-8467-0437168d0d57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084155Z:c698d2af-f984-4bda-8467-0437168d0d57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF33CEDE06754BBD81186DCAC8CF6DC7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8E1F8F8032F45AAA714D11D48CC19C9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:54Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "645" ], - "x-ms-client-request-id": [ "c24e829f-0498-4e55-aa54-c17265fbd6f8" ], + "x-ms-unique-id": [ "651" ], + "x-ms-client-request-id": [ "bced02d5-491a-4e84-95b8-ce5dfcd45bbe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "dbc74155-bb52-4ca0-a3d2-5e26f4c6a811" ], + "x-ms-request-id": [ "24c84fd5-552a-4902-82b3-3d80ea537c1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/513a56e6-a490-42cd-b79d-b4895e054219" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9d56cbe8-180c-4f3d-befc-5f9119f3d92b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062212Z:9d56cbe8-180c-4f3d-befc-5f9119f3d92b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/41073003-2ae9-4030-b9c9-85f51fbb80c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5f248b5e-b4ac-4f41-9b83-58a30dd305a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084155Z:5f248b5e-b4ac-4f41-9b83-58a30dd305a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 688617392EC445B19A94C626F52DA54F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D35A7D4C87C4D11838B49A609E4B8DD Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "f5a777ce-965e-4a85-9caa-3812d478def3" ], + "x-ms-unique-id": [ "652" ], + "x-ms-client-request-id": [ "7b78d3cf-f03d-4e3c-a235-baaef8840fe8" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f393dcf4-f513-47d4-92e6-a14a951e42ee" ], + "x-ms-request-id": [ "2432c7c5-e7ff-46cd-8b68-52db649f902d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a1dc908-2c31-4c64-8cbe-98abc87ecf35" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8659f3d2-7e38-4bf4-b073-1ccb79baf851" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c2bded8e-7a80-4415-a5ba-d8df2c1c4506" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:c2bded8e-7a80-4415-a5ba-d8df2c1c4506" ], + "x-ms-correlation-request-id": [ "650bf685-39c3-41d6-a879-cf12e12966ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084155Z:650bf685-39c3-41d6-a879-cf12e12966ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DBDD14F04A74D73B7D51BA8223F1CD6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:12Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2415534C54884EEF916010AF838E1B1E Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1682,19 +1682,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "28ab3690-f769-428a-b735-41f1f2d713a2" ], + "x-ms-unique-id": [ "653" ], + "x-ms-client-request-id": [ "9eadd8fd-6a43-410b-9a41-d886560e3a46" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1705,42 +1705,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50CFCCFB5\"" ], + "ETag": [ "\"1DC4FC25F4B6AA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a223751e-e816-4482-9fa4-1b9898fc44d4" ], + "x-ms-request-id": [ "3de34aa6-f055-4710-a42d-912c6847da61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8228f61e-1c24-497d-80d4-e7b1fbbe774d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:8228f61e-1c24-497d-80d4-e7b1fbbe774d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a79c9335-f6c0-4602-a747-cb3f116199ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084155Z:a79c9335-f6c0-4602-a747-cb3f116199ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8864B09CA2734A589573B15FBC8E9E1C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4833641BA734995AEAA1EB9EC66B829 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8745" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:13.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:55.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\":\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "648" ], - "x-ms-client-request-id": [ "439414d9-5c61-4da0-a3e5-4ab7910df918" ], + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "8864e500-51b6-4cc1-b9c7-c5dd83f278eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "23d204cd-f3f1-4108-95fa-d527ada30500" ], + "x-ms-request-id": [ "9d86d9cb-ae42-47cb-af4c-10ea6f0fe15b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e17cf25-b28b-491d-b983-43aba74d4018" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d23b7549-a24c-484b-a4a7-4c62d55e326e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062213Z:d23b7549-a24c-484b-a4a7-4c62d55e326e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21164f2e-a2c7-48f5-b1d5-f86a9da3345b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "30133efd-f906-4e92-9b06-eb56027917f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084156Z:30133efd-f906-4e92-9b06-eb56027917f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 686CA6D7CEAB45AD9EDC5B7B38AE22E5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDD0365EE97D4FA590B3EDED6D17C761 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:55Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "2e5b01a0-7dee-42d3-a64b-94b83f1a2175" ], + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "8805895e-2338-475b-9606-01713462e56b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "802c1902-1a65-4e4c-9033-df2b7e6bed3e" ], + "x-ms-request-id": [ "79814924-afaa-4a2e-b118-3c3c57b88192" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1e09dfd-d6d8-464c-a608-c61f50b45bbf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bccfa039-b750-422a-ae81-fee7c3978283" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d2c9ad6e-2913-449f-bdc3-b53ad270beed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:d2c9ad6e-2913-449f-bdc3-b53ad270beed" ], + "x-ms-correlation-request-id": [ "053763d4-de6f-4dab-be61-8f183ff18d55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084156Z:053763d4-de6f-4dab-be61-8f183ff18d55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F49B1B3FBA14975917662A900596245 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:13Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 144CC051B1434EC9B40F43452EBAA05F Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "3999e094-71b2-4f4b-92e3-48d91477d271" ], + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "c6b81f66-5308-42cf-9d61-bc4315512c22" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "88757eca-2f77-4c18-9480-9dbd4ce003c0" ], + "x-ms-request-id": [ "5e6e4b3f-a2af-493b-b1ad-5387d15f3839" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab9e6421-c989-4834-8aa8-f172f3664433" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c22c15b2-f837-430e-b097-7e9007c2b5ed" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6e029a40-311d-49e5-a5bb-96dc967acd82" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:6e029a40-311d-49e5-a5bb-96dc967acd82" ], + "x-ms-correlation-request-id": [ "22fb7eca-94f8-4707-b03c-f795cef3a4e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084156Z:22fb7eca-94f8-4707-b03c-f795cef3a4e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E88716961161484280D27A6CD9DBD420 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 574B9EA9CC9F4F5CBC9DAAA9D4753A31 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1864,19 +1864,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "651" ], - "x-ms-client-request-id": [ "1d8a9cd2-a8ae-43f3-86a5-f3517346a282" ], + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "e9b4ee54-4d85-4e41-8051-7dd4ba083923" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1887,42 +1887,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50DBC9040\"" ], + "ETag": [ "\"1DC4FC25FECA6AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d02efb7-be3d-4c8e-880d-ac593e18648e" ], + "x-ms-request-id": [ "2bb0dbaa-6f05-41a4-8a26-a8eae2587a68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7c09be11-1706-4fa8-8356-5983cf9f8d31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:7c09be11-1706-4fa8-8356-5983cf9f8d31" ], + "x-ms-correlation-request-id": [ "186ae942-a31c-4905-bfce-d857920018b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084156Z:186ae942-a31c-4905-bfce-d857920018b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 590D7D3E91824DE8A8B06441AE239106 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42C205F3FFCA4A29A37E1ACC80F1B8E5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:56Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8750" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:14.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:56.5866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "652" ], - "x-ms-client-request-id": [ "980c4527-ab97-4451-a645-be6599821a95" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "1f791655-d89e-49b4-adce-184bc88e37df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7de79f4e-6d76-4c69-ad89-c2a4d610adac" ], + "x-ms-request-id": [ "9aede912-98e3-45d9-b308-3a14f5f0fe4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/694f4208-e9cf-4e34-9485-bfed486e4b7d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7859f7eb-49f2-49ce-8dec-d51ad1506395" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062214Z:7859f7eb-49f2-49ce-8dec-d51ad1506395" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4f688612-7e2a-428c-ada6-1b2ce643c176" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "5fc2883f-6768-4637-86d9-d73ba41e6040" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084157Z:5fc2883f-6768-4637-86d9-d73ba41e6040" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34CD3FFD588941AA95F8CC9F0531B68D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:14Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A98660A77A524CE4AA7558333FE60EE9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "653" ], - "x-ms-client-request-id": [ "1ec5a06c-e0fe-4bc8-918b-f917f350e688" ], + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "aa55e71e-90f0-4d04-9393-3aecfd5afa34" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b0689a39-4d49-4ca0-9fc8-b5324d3ce488" ], + "x-ms-request-id": [ "258fddaf-1a86-4c9f-be16-a7559c97687c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cf32316-24e0-4bf5-a0f3-1fa2ee7785cb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "517be08c-81cf-4176-a844-a5a5c4980ea2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062215Z:517be08c-81cf-4176-a844-a5a5c4980ea2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/764f608b-0847-4f85-ad17-81124dbe7ac4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "54dbfe16-f97f-4e1a-b024-d1689e416c4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084157Z:54dbfe16-f97f-4e1a-b024-d1689e416c4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 851B8CE9893346FD9C236C458917E9DC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0E7D3080FA44B1AB06AD103CF445A4A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "45aaaaab-1428-491e-b524-094e69315283" ], + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "dcaf3978-241f-4df3-8d8d-06bf59a2b9aa" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "d60a1a72-ff60-4e7a-ada9-d458e0f988b4" ], + "x-ms-request-id": [ "5f8f53e2-b250-4d15-8b66-39e8b161e8d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/537e3aa6-b524-4a06-b2c6-57486b40a77b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1cc3c209-c215-45b7-a33d-1e980362fbad" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ec8da0d2-3cf2-4f60-8338-bc740ab1f3ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062215Z:ec8da0d2-3cf2-4f60-8338-bc740ab1f3ef" ], + "x-ms-correlation-request-id": [ "b6a13bac-8f1a-4f61-8950-a5a7678efbb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084157Z:b6a13bac-8f1a-4f61-8950-a5a7678efbb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4CD31873D84E4A0DBE896965C50E5870 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F225F415F18E464797CF736400850A6A Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2046,19 +2046,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "c179c772-8777-4605-9a7c-2b8939ae1f07" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "7ef0ffbc-c80c-4a2e-9346-ca8f855757b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2069,42 +2069,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50E5F52EB\"" ], + "ETag": [ "\"1DC4FC2608A5340\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e5980c5-53dc-4d55-90e6-b1c856087038" ], + "x-ms-request-id": [ "1251b90f-c6c2-49d0-91ce-6ec8b943d122" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49cdc9f5-47da-4a34-9fd7-9830668bfda8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:49cdc9f5-47da-4a34-9fd7-9830668bfda8" ], + "x-ms-correlation-request-id": [ "69ed34cd-990b-40dc-93fa-7316d305b82c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084158Z:69ed34cd-990b-40dc-93fa-7316d305b82c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF4C329DF5144510A8E0B590051F0365 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:15Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 153CABB52DDA4D03955E482F2DF195C2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8745" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:15.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:57.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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "14f24274-09b3-444f-9fb2-cf73022d1fce" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "6fa159fb-d10c-4bac-b618-7cf0ec57c722" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c2da12cb-ad2d-4515-a881-abc354514212" ], + "x-ms-request-id": [ "61298209-3a0d-443a-a84d-5a90cef4ec20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a47237c5-bdba-457a-8b73-126ef9df0a16" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c038178-2293-4fd4-ba6c-8c50d0170a97" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e1395423-9c57-42fc-8051-4db4bbb25927" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:e1395423-9c57-42fc-8051-4db4bbb25927" ], + "x-ms-correlation-request-id": [ "f56d53cd-b035-4903-a111-dc5f197024b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084158Z:f56d53cd-b035-4903-a111-dc5f197024b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7720AE4D393F4B488628C1785E9A274F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 858D15D56D1345DAA270CDEEA449E156 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "05ccdafb-e4a8-4cd4-b813-45a0c01df2a2" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "769887c3-df75-40bf-8135-e60fc280fa09" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f8fb965a-0ccb-41ae-ad92-dfe031975208" ], + "x-ms-request-id": [ "e4f728fd-ea7e-4cbc-b0ab-be5c7391ebb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5df37f39-128e-4826-94eb-69a025030bd0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc5432db-236a-4981-ad9c-25e182cf9c64" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062217Z:dc5432db-236a-4981-ad9c-25e182cf9c64" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d04facba-ebba-4916-b045-34d045d76cc8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "10b57514-7b74-4fb0-9c3a-6dca7b279657" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084158Z:10b57514-7b74-4fb0-9c3a-6dca7b279657" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4FC64FE8502423FBE26065721204EFC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA750D496C604BA0B0D4A21E2845C968 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "658" ], - "x-ms-client-request-id": [ "045166b1-eb4a-4b1f-ba78-5f3ac1be6008" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "0f44e126-f892-42a2-a59a-452962c6c7f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2206,42 +2206,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50803B840\"" ], + "ETag": [ "\"1DC4FC25A74DC50\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1c4ebe5-4882-404b-8e68-0e78599c24ef" ], + "x-ms-request-id": [ "527333f0-2c3a-4dc2-bfc4-3e36ddae812a" ], "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": [ "3303cfa8-b133-4285-86a8-eb40ad3052aa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:3303cfa8-b133-4285-86a8-eb40ad3052aa" ], + "x-ms-correlation-request-id": [ "ca672e23-27c2-49a0-bf10-a7d84ce8f15c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084158Z:ca672e23-27c2-49a0-bf10-a7d84ce8f15c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A02A4DF498FB4459AD855A98C6CDD971 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:17Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1ACF6AFA6304D0E92D29A72F4D46947 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8470" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:04.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:47.413\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "e22acefb-5244-4afc-a5c2-40a772b487cd" ], + "x-ms-unique-id": [ "665" ], + "x-ms-client-request-id": [ "c9916011-23dd-4108-a1a2-f6a0613f5e81" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "622cedf8-3fd0-438a-8960-4514633c73ea" ], + "x-ms-request-id": [ "cee1cdd6-c2af-47f9-bd5e-117579b1a3c6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9182d58e-94fc-4ada-8a7f-d85bb06740c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d4478eb-720c-4e55-8b55-debc5358361b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "889de851-e1d6-49ae-a4fa-dae87425f9c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:889de851-e1d6-49ae-a4fa-dae87425f9c6" ], + "x-ms-correlation-request-id": [ "b6c69edc-85d2-4cc7-b769-5b558db97141" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084159Z:b6c69edc-85d2-4cc7-b769-5b558db97141" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5C3EC4A2B8043BF9D5846E0C99520DF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 101A5BDB698B457AAB66853269974FB0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "660" ], - "x-ms-client-request-id": [ "aa7166dc-1feb-4aa3-a659-11648823baa9" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "b542d344-64ef-4c5c-b7d9-08a7dc744133" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "811e133f-618e-4b21-8503-d5327744b032" ], + "x-ms-request-id": [ "dbd1f18c-f9c6-4ec2-8761-dcb5fc9693ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d00fe50-1a02-4f51-83ea-3421734574e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d207f311-9bf7-4377-afdc-6b3597f65ad4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b70efaf-1524-4f4f-8fcc-af2aae7adee5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062218Z:1b70efaf-1524-4f4f-8fcc-af2aae7adee5" ], + "x-ms-correlation-request-id": [ "d60eba7b-d000-48e6-81aa-e5fd93f4f680" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084159Z:d60eba7b-d000-48e6-81aa-e5fd93f4f680" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9173D43CC8AE4468A11B0CE84EC2E4B5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:18Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3799ECBA150D42C78A098977B069D463 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "748b028c-0b82-4c8b-806e-dd162cf348ce" ], + "x-ms-unique-id": [ "667" ], + "x-ms-client-request-id": [ "ec1ecd51-9f22-4194-a074-6a631e39f0eb" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "d4e6a7b6-6fea-4bf7-b246-e61a7f0c55a6" ], + "x-ms-request-id": [ "f3d89f9a-ed6e-4fd3-902e-3ae45a8ecd9f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91b10d2a-b6c1-4c60-ab79-bffad9c31446" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff42d601-6208-4de2-bfa3-5bc574d53458" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f55f9c82-9d12-47b7-8394-6312a3bcc078" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062219Z:f55f9c82-9d12-47b7-8394-6312a3bcc078" ], + "x-ms-correlation-request-id": [ "1d130175-56fb-41c9-a555-731b9e8c3149" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084159Z:1d130175-56fb-41c9-a555-731b9e8c3149" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9DAFACABEB840C6BD447BAE1035D2BF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9930EBD65044A1F92D1FE973676D3FA Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2365,19 +2365,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "662" ], - "x-ms-client-request-id": [ "67b66033-53fe-4a33-a6a4-9b3a445cfc54" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "1e0176fb-49c4-46e5-9954-ccad7dd5eebf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2388,42 +2388,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E510E0B3A0\"" ], + "ETag": [ "\"1DC4FC261AAB760\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d475d796-edd9-4a23-ac7c-a6d263565f0a" ], + "x-ms-request-id": [ "1e6e97d5-2bd2-444d-8cb2-7d4944957165" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "44398624-ab7b-47af-a589-40a675ecea93" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062220Z:44398624-ab7b-47af-a589-40a675ecea93" ], + "x-ms-correlation-request-id": [ "0f89ab4c-b886-4283-856c-c0a3b494f113" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084159Z:0f89ab4c-b886-4283-856c-c0a3b494f113" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37B232C257204B63B93FC75F6D4ADA01 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:19Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2A325E022E44A508EE6FAB3AB1F22CF Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:19.61\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:59.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "d586a483-68ba-4ac0-85ec-c775a5e289fa" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "50185876-d121-49d5-a3a7-2b33f97414df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0447f5df-f54d-4a0b-adaf-50fa2a93e22c" ], + "x-ms-request-id": [ "15d376e0-eb3c-47ca-aca6-d545a45df4c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36d16902-07e8-4624-aec4-227a93847642" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36a18d35-c769-4147-9a68-3234e901fb2a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e8267e29-8419-45d2-b6cf-ed4a0b549f83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062220Z:e8267e29-8419-45d2-b6cf-ed4a0b549f83" ], + "x-ms-correlation-request-id": [ "d897bff8-3327-4290-a5d7-f56965f6569b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084200Z:d897bff8-3327-4290-a5d7-f56965f6569b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F81E5E6B6E9D455EBA69113029B2D36C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A3D1713C276442884C28645D23606F3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:41:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "f4a4a57b-1f27-48ba-8986-8c0c3bdcdcdb" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "55d0af74-a530-42a8-ab5c-7267183ee27f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "4f9552cf-669c-42eb-8634-401562d19b16" ], + "x-ms-request-id": [ "0daed547-71b7-4dea-8c05-8c25be8927ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/002102ff-4adf-4ef6-820d-19c53386ce42" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6e017f5-00ef-4529-95f2-4041f67022ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062223Z:f6e017f5-00ef-4529-95f2-4041f67022ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eff66034-0ecd-4d65-b3f7-366ae8505783" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7aefd070-e31a-43d5-96cf-eb99801fd5cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084200Z:7aefd070-e31a-43d5-96cf-eb99801fd5cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31D3297B36E64AF89285515A3601A2EC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:20Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BDE1A3D24BC4AD1B35546AA3ECF1C54 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:41:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "665" ], - "x-ms-client-request-id": [ "48ae561e-990b-41a4-b7fa-35de77dd6728" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "a2b8eaf2-509f-40af-963d-33bfc7756cc3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2525,42 +2525,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E510E0B3A0\"" ], + "ETag": [ "\"1DC4FC261AAB760\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4dc23bba-e7ea-485a-a25b-f610a505bfa8" ], + "x-ms-request-id": [ "19dbd351-a799-446a-8b3c-6109fe1c05cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3f10e93b-1a98-4a18-bfb3-72f37a04cb55" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062223Z:3f10e93b-1a98-4a18-bfb3-72f37a04cb55" ], + "x-ms-correlation-request-id": [ "0d26540c-0fcd-4a43-84bd-5bff6d6795ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084200Z:0d26540c-0fcd-4a43-84bd-5bff6d6795ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4620C0D7FF84A2889920172D6AAE318 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:23Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A113EFEC50A641A9913A5D43F186C076 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:19.61\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:59.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\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "666" ], - "x-ms-client-request-id": [ "ada14140-7143-40c0-b982-44038ee79953" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "afa7b2a2-b827-484f-929e-a5614a3dc642" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "22332178-8987-4c36-afe0-0d8d22626506" ], + "x-ms-request-id": [ "368b9337-105a-4168-b735-ab934d181489" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2d68206-264c-432e-b182-6830394beb4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9a46e0e-8ec1-4a58-b180-3856a64492ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e42c6f9e-422a-41a1-8a2b-f511f1ffadbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:e42c6f9e-422a-41a1-8a2b-f511f1ffadbb" ], + "x-ms-correlation-request-id": [ "d88fe225-ccd3-40b6-a652-1d59e6f5d97c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084200Z:d88fe225-ccd3-40b6-a652-1d59e6f5d97c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE408AA33BE84AC9A670CD6B379E0B17 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:23Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BC7FCF85E984E96AA0EEB87948B088B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "eeea0d1d-d564-4837-9349-5d157fb4f671" ], + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "cdd8f82c-7601-42d6-9424-777276297ae7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "83622e31-8481-42d2-ad37-66373d7d31d4" ], + "x-ms-request-id": [ "4de97ae2-feb7-4654-ae6f-fb91f25ee7a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e555f309-281a-4b47-ad93-e4347b9aa55e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edbcf8bc-d3e3-4830-b1e4-96e0ba9ac78c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b28470c-91e4-4416-a0f7-c46f710366ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:3b28470c-91e4-4416-a0f7-c46f710366ea" ], + "x-ms-correlation-request-id": [ "24454e2e-faa6-4d39-9d08-6d2fde783385" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084201Z:24454e2e-faa6-4d39-9d08-6d2fde783385" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62055768D2414658A681BD554D4F695D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99ABF3780C70489EBD02993785F8E69D Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "239c67fd-55a5-4b63-b033-e821b0c56eee" ], + "x-ms-unique-id": [ "674" ], + "x-ms-client-request-id": [ "9552b81a-342e-4495-96e0-7afcdbd5cbc0" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "890fcb28-4256-47a3-85d1-e1ec570a8367" ], + "x-ms-request-id": [ "4ad4f3c5-0c4e-4c24-b261-d3aff0b86e7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd5eb313-aef5-4f3c-b8e3-425fc4fe96ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86cd05ef-9048-45d9-8d9f-a06c8c2f27a1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d35731f7-5494-4bb3-86f1-2aed9198d44c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062224Z:d35731f7-5494-4bb3-86f1-2aed9198d44c" ], + "x-ms-correlation-request-id": [ "f6f7bb36-0a97-4e23-baa2-ed0caddb043a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084201Z:f6f7bb36-0a97-4e23-baa2-ed0caddb043a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7DC938A06D44CF7A8AAC8859D89A1B8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 112151B0964C4EBBA77E64826ABAE412 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2684,19 +2684,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "88248320-5352-48dd-acd7-9b0499ed0422" ], + "x-ms-unique-id": [ "675" ], + "x-ms-client-request-id": [ "53765af3-3ccb-4c2e-b5c7-1040625a4450" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2707,42 +2707,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E513DEB160\"" ], + "ETag": [ "\"1DC4FC262C1F3C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49e2ee44-52d0-4792-849a-ecc69f94739f" ], + "x-ms-request-id": [ "6fa35b52-6e59-46cd-952f-2b3c51490c70" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b9f47d5c-d5c3-41d8-9ed7-307a48517567" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:b9f47d5c-d5c3-41d8-9ed7-307a48517567" ], + "x-ms-correlation-request-id": [ "7b4d2a27-1649-4352-a549-5f3c5be3d0fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084201Z:7b4d2a27-1649-4352-a549-5f3c5be3d0fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D007BA8F35C14E7D9868382AD1BED9CD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:24Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 151D008459AD40EDA32CB2E0998B82E5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:24.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:01.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-PowerShell-74-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "53614866-7eeb-4889-b62d-7f686051f451" ], + "x-ms-unique-id": [ "676" ], + "x-ms-client-request-id": [ "2e46b199-c8d9-4347-9a5a-552e4be89427" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "739572dc-270d-42c6-8800-5b1ecfced06b" ], + "x-ms-request-id": [ "b40aaafc-9853-408a-a11f-acc69f854b5f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/590f373f-c66e-4710-83a1-36184b02377a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44d48017-3e8e-4191-81a5-db2471e2eb49" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2cac2e46-2ea1-431a-bd69-0959d43260ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:2cac2e46-2ea1-431a-bd69-0959d43260ab" ], + "x-ms-correlation-request-id": [ "9acaa4d8-4547-4f7a-9b40-d588588d53c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084202Z:9acaa4d8-4547-4f7a-9b40-d588588d53c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16FE18C9C34F41D191DBAAA90C76FA66 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84678584B549439192CEAA06EC5B9F24 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "671" ], - "x-ms-client-request-id": [ "8ac2e23e-df12-4342-b151-3b8c70d4a69b" ], + "x-ms-unique-id": [ "677" ], + "x-ms-client-request-id": [ "4f421b00-d160-41b3-9b4d-4605086096c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f0e1d320-b6c9-4679-b1df-7096bfbce9f4" ], + "x-ms-request-id": [ "90c7505e-f147-4497-a244-9d51f65517da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c124c81b-6981-4089-8a5a-0968cfb7d2c1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "44be63ec-dc15-49f3-aa0a-8025400f9ba5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:44be63ec-dc15-49f3-aa0a-8025400f9ba5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c83ba49-49e7-40ec-a64d-0d42e0952e56" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d8549546-e3df-439a-9453-9e5885bd4ba7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084202Z:d8549546-e3df-439a-9453-9e5885bd4ba7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A282B2354FAB4198A0D6F60DB6CB5333 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42710DDDA2E24697BD7233AD4A55AAE0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "f98e76ed-8471-464f-9721-27f65b8e9ced" ], + "x-ms-unique-id": [ "678" ], + "x-ms-client-request-id": [ "8aae0e21-8e80-4a79-b110-8bb88a962dbb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2844,42 +2844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E513DEB160\"" ], + "ETag": [ "\"1DC4FC262C1F3C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1af1b640-a426-4b6d-b679-5f5f84decc5d" ], + "x-ms-request-id": [ "c155175d-d7c4-447e-928e-4b261b8a06b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d0e2de51-befe-41b7-8a37-49052062bdd3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062225Z:d0e2de51-befe-41b7-8a37-49052062bdd3" ], + "x-ms-correlation-request-id": [ "6729d67b-24b8-4f50-8c51-8409572fc5e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084202Z:6729d67b-24b8-4f50-8c51-8409572fc5e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7E4E441E1D142538F6CFFAE69EEB2E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B9EB986A8E9B416A962FEF0192AE62A0 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8361" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:24.63\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:01.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-PowerShell-74-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "d2a2fc5e-3983-4c66-b623-f9f0e8664e7c" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "a6ab18c2-c484-446e-931c-0798d1924a98" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cd7c993d-bec5-41ce-a01c-932346d9259a" ], + "x-ms-request-id": [ "264dd3ce-21bb-4161-a5e6-ebb78d1df520" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/643b01bf-3827-4101-b737-f71c19cdfdd1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "5a5bd6e9-7fec-4382-88b3-9be77723bcf6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:5a5bd6e9-7fec-4382-88b3-9be77723bcf6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34b5cf5c-2d77-446f-af0e-f928fde1b83c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "263cd572-992c-4dc0-ae4a-535323cb6b92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084202Z:263cd572-992c-4dc0-ae4a-535323cb6b92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7048B25743FF4781927343D066CBBA56 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:25Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EC0F742080B4029B10A3F5CBB4E2DF2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "674" ], - "x-ms-client-request-id": [ "b1dbe46c-8f77-48d8-8026-711a878c5d8a" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "2b7c5ea6-21ae-41f3-b375-fa88b65e0a1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "7b51da08-b8c6-412a-b617-4655706671f9" ], + "x-ms-request-id": [ "ca27f4ce-7cf6-4d7f-8be9-24d7ee7fab57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0d7c91b-ad03-4f06-9b2f-ea7f3a82c58b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ba150359-5acc-45a1-99b7-f8ea819128e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "583c4b9e-7c26-4f95-a29b-bd877c8f9874" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:583c4b9e-7c26-4f95-a29b-bd877c8f9874" ], + "x-ms-correlation-request-id": [ "4578ed79-b937-4456-9d15-755f06fb7fbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084202Z:4578ed79-b937-4456-9d15-755f06fb7fbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 39E3694B04B540429E43C93FC50751A6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF34C4CCC1B74A33B71F4B748CCF86E1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:02Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "675" ], - "x-ms-client-request-id": [ "5b39a3a2-2c37-4b2d-b12a-034a1f2b6285" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "6ac1b207-3b14-4b86-aafb-48c7a6a8e6c9" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "db580da3-e6cb-4cb9-a6c7-1ad369752f19" ], + "x-ms-request-id": [ "76b10d97-e636-4d1c-9b8a-ea935f21c59d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dcbbb85-5c6c-4895-9b83-eb80a43fb1a2" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "37d4808d-3b97-4add-80f8-e7ae15088406" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062226Z:37d4808d-3b97-4add-80f8-e7ae15088406" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d05b55a9-e44d-4a98-8b1b-f1e18abd0633" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "4e1f084a-abc8-436b-81f0-23de7c2100ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084203Z:4e1f084a-abc8-436b-81f0-23de7c2100ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 380CD951D9954720B92553DDF09849E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3198003CC3514E9692599998BFE1755F Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3003,19 +3003,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "676" ], - "x-ms-client-request-id": [ "16d51a12-6995-4df6-b689-f8fcbfccead6" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "bea99789-07f8-4c21-8749-f4f41490fc94" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3026,42 +3026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51511DA30\"" ], + "ETag": [ "\"1DC4FC263E56520\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "746ebcec-6671-4282-b815-543cedbb6cb9" ], + "x-ms-request-id": [ "7bb5f0f7-f178-4f4b-baff-ffe290eabd93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "628e5ce2-3273-4ace-9265-8cf6167ade44" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:628e5ce2-3273-4ace-9265-8cf6167ade44" ], + "x-ms-correlation-request-id": [ "d61772f7-a8a6-486d-a0e3-f18f483be305" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084203Z:d61772f7-a8a6-486d-a0e3-f18f483be305" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BABDC7C38774BAD8F3010DB50F78A72 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:26Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FAF9B7225AE749258AA572D8A4B63BCC Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8362" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-6qf9o2\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-n8vg16-CentralUSwebspace/sites/Functions-PowerShell-74-6qf9o2\",\"repositorySiteName\":\"Functions-PowerShell-74-6qf9o2\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"functions-powershell-74-6qf9o2.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6qf9o2.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-6qf9o2.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-n8vg16/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-fj26xp\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:26.643\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-6qf9o2\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-6qf9o2\\\\$Functions-PowerShell-74-6qf9o2\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-n8vg16\",\"defaultHostName\":\"functions-powershell-74-6qf9o2.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-7o3paq\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-009.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-a7inyz-CentralUSwebspace/sites/Functions-PowerShell-74-7o3paq\",\"repositorySiteName\":\"Functions-PowerShell-74-7o3paq\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-7o3paq.azurewebsites.net\",\"functions-powershell-74-7o3paq.scm.azurewebsites.net\"],\"siteProperties\":{\"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-7o3paq.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-7o3paq.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-a7inyz/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-1wzf2c\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:03.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\":\"Functions-PowerShell-74-7o3paq\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.21,23.99.206.151\",\"possibleInboundIpAddresses\":\"13.89.172.21,23.99.206.151,13.89.172.21\",\"inboundIpv6Address\":\"2603:1030:10:8::1c\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::1c\",\"ftpUsername\":\"Functions-PowerShell-74-7o3paq\\\\$Functions-PowerShell-74-7o3paq\",\"ftpsHostName\":\"ftps://waws-prod-dm1-009.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,13.89.172.21,23.99.206.151\",\"possibleOutboundIpAddresses\":\"23.99.200.241,23.99.204.51,23.99.204.240,23.99.205.217,20.80.120.126,104.43.243.176,104.43.252.150,23.100.86.253,104.43.244.147,104.43.250.175,20.221.1.153,20.221.2.17,20.221.2.22,20.221.2.43,20.221.2.46,20.221.2.51,20.98.173.163,20.98.173.195,20.98.173.207,20.98.173.212,20.98.173.231,20.98.173.245,13.89.172.21,23.99.206.151\",\"outboundIpv6Addresses\":\"2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:d::1eb,2603:1030:b:d::1f4,2603:1030:b:c::239,2603:1030:b:3::279,2603:1030:b:8::4c,2603:1030:b:13::252,2603:1030:b:f::237,2603:1030:b:a::1de,2603:1030:b:13::254,2603:1030:b:3::29e,2603:1030:b:7::14d,2603:1030:b:c::273,2603:1030:b:7::153,2603:1030:b:e::1ca,2603:1030:b:b::1d1,2603:1030:b:a::1e2,2603:1030:b:8::60,2603:1030:b:6::220,2603:1030:b:8::61,2603:1030:b:7::168,2603:1030:b:c::293,2603:1030:10:8::1c,2603:10e1:100:2::1763:ce97\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-009\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-a7inyz\",\"defaultHostName\":\"functions-powershell-74-7o3paq.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "677" ], - "x-ms-client-request-id": [ "8b2e06dd-ebf2-4df4-9ed0-8ba363c44494" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "834daf5a-0d52-4318-a01e-20d29440b575" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "69838342-aac0-49d7-8d46-043299c0c99c" ], + "x-ms-request-id": [ "34488bf1-cd25-4c5b-9b8c-eeef1f8680fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9de5631e-d91c-4c2b-a052-9ef5d8cec677" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/19aec586-84ef-4440-8d07-c35348febc12" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a82f311d-6329-4d19-9b5c-bbe54faf43fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:a82f311d-6329-4d19-9b5c-bbe54faf43fb" ], + "x-ms-correlation-request-id": [ "8bb42cfe-a666-44d1-9095-ca94e51b29ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084205Z:8bb42cfe-a666-44d1-9095-ca94e51b29ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3A514A59F5443799074974B01D682E4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 459C499374D142FA9E489F8FC19D7EF7 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:03Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1181" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-6qf9o2\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"644a5932-6487-4d49-b880-b826e253576e\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-7o3paq\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=7eb2bef4-3c60-4a1d-a0bb-0c87bf85e6c3;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9c0cbeee-7685-4425-88be-92b03021bf0e\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-6qf9o2\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-7o3paq\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/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-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "678" ], - "x-ms-client-request-id": [ "05aa61a4-1c1e-4c62-8a49-d371f9d5a387" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "03012b67-b0dc-49af-829a-eb73103de7e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "d9315cdd-d602-463a-b23b-5c367b7673bc" ], + "x-ms-request-id": [ "754a05a5-2a29-4863-bd1f-f8c08594a11e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab1a860e-a034-4fca-9a59-29303f2b14d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/beb81713-5306-4c4d-9bd4-be183669e85f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8378a24d-25fd-44c2-9d83-bff598f6cd68" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062227Z:8378a24d-25fd-44c2-9d83-bff598f6cd68" ], + "x-ms-correlation-request-id": [ "164cbcff-6a9e-4195-bea2-c1d07b01de77" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084205Z:164cbcff-6a9e-4195-bea2-c1d07b01de77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB91682DE21D4682BE3A2F7F99E6AB27 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 881698C45E9D4530BC6761204AED7A7B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.Web/sites/Functions-PowerShell-74-6qf9o2/config/web\",\"name\":\"Functions-PowerShell-74-6qf9o2\",\"type\":\"Microsoft.Web/sites/config\",\"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-a7inyz/providers/Microsoft.Web/sites/Functions-PowerShell-74-7o3paq/config/web\",\"name\":\"Functions-PowerShell-74-7o3paq\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "a86abdda-7cf3-4068-b11f-13a3d630da42" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "3c20e57a-8be1-474a-b2e8-76c823756926" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3163,42 +3163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50A2FA5F5\"" ], + "ETag": [ "\"1DC4FC25C6E7C6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "242a8fe7-2b53-4b03-9a90-4c433f33d8db" ], + "x-ms-request-id": [ "b7725f76-2f71-42b0-894a-62b9ef0fb76b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8f6063a8-05f1-494d-88f6-58a848906038" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062228Z:8f6063a8-05f1-494d-88f6-58a848906038" ], + "x-ms-correlation-request-id": [ "800512e4-0d44-427e-9190-81a631c67cbb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084205Z:800512e4-0d44-427e-9190-81a631c67cbb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7D794E3AD8E4F4DA507934CAFF34AD7 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:27Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B11BD7A4EE744FA8FA9EFA3BBDCE464 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:50.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "a0546ac1-9658-4be2-9ad4-fd977245f50b" ], + "x-ms-unique-id": [ "686" ], + "x-ms-client-request-id": [ "55411643-f7df-4d51-ba40-a36726db6817" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b836e1ee-64e7-4fcb-821b-467d249d2a4c" ], + "x-ms-request-id": [ "c2f61464-5273-4038-9d58-a72c476bde11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ff87e13-43de-4581-a099-0389370271d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/95b5761d-02f5-4409-8979-979ceac46dfd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e0fe485d-eb79-484d-8c9b-069b6653e949" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062228Z:e0fe485d-eb79-484d-8c9b-069b6653e949" ], + "x-ms-correlation-request-id": [ "d3977a76-6d76-45ad-a468-d22bde471331" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084206Z:d3977a76-6d76-45ad-a468-d22bde471331" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E417CF5233C43C38166F6EAA9DC3D69 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F141AE8CFB54C61BD2FD6DC52652F91 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:05Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "681" ], - "x-ms-client-request-id": [ "2e0610e2-cb77-4786-937f-1604ea4adcc1" ], + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "cdd21038-0bdd-46e2-a918-963c5748486a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2b5df2ef-9ab5-43bb-809c-13679e9b0531" ], + "x-ms-request-id": [ "5386b896-b0bd-4e3c-9e48-80c4b818d864" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc56a7cd-225a-4c08-9fad-27841762807c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2b356f89-99db-42f0-b0e4-472bc29037ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062229Z:2b356f89-99db-42f0-b0e4-472bc29037ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/595faf0e-6f70-47a5-a218-ef34de6be1c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8267f137-9983-4ea7-9139-09b5e80fe808" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084206Z:8267f137-9983-4ea7-9139-09b5e80fe808" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E675157A70D4854978807CF9BC0A74B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:28Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4440DE4E87484052ACF7A5FA4283DEDB Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "5810e6da-4448-44e1-908f-5a3942385451" ], + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "a5ee9744-0f94-4f0d-9fac-24e23ae68352" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "43676b1b-1101-4fbf-90ff-e894ab035ad7" ], + "x-ms-request-id": [ "d9d949b6-b579-49fe-a9ef-c6555e16bc77" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6d5c4b8-0fe4-4258-ab52-cb8be8774bf4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/faba5782-f167-4b59-9a00-b1d928bf58c3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "29400b11-e699-4b78-8a22-11bbade1d384" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062229Z:29400b11-e699-4b78-8a22-11bbade1d384" ], + "x-ms-correlation-request-id": [ "600c9bad-cc5b-42c1-99c6-4e03f229d2f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084206Z:600c9bad-cc5b-42c1-99c6-4e03f229d2f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF8FF478F91542C48A1093ED0064A918 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B8BE15C9E544DA499AEE64B2A8C1EED Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3322,19 +3322,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "683" ], - "x-ms-client-request-id": [ "945a9159-b0ab-4c22-8104-c15b1966c8b3" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "523a2881-503e-4b38-b5b6-aa998a2ec3ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3345,42 +3345,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50A2FA5F5\"" ], + "ETag": [ "\"1DC4FC25C6E7C6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0053991e-8703-4588-8aa6-14350e84ed46" ], + "x-ms-request-id": [ "397b0216-2f88-4b64-a27f-caf70ac79c82" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7935b57a-738f-4517-b92d-30d934f3b31c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:7935b57a-738f-4517-b92d-30d934f3b31c" ], + "x-ms-correlation-request-id": [ "f873787b-56a5-40a9-b8ce-849a1b841b0a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084207Z:f873787b-56a5-40a9-b8ce-849a1b841b0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D025838101C9497EB0C3BCF33EE36028 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:29Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45E1ADD8C7E9463AB1921660A77C92F6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:06Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:50.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "684" ], - "x-ms-client-request-id": [ "779b690d-a611-4795-b0e9-458ee3b55a86" ], + "x-ms-unique-id": [ "690" ], + "x-ms-client-request-id": [ "e34c4759-6e82-408d-aedd-ea5bda7f5832" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ea1255d9-67bf-49d8-8e30-1bee58ace6a1" ], + "x-ms-request-id": [ "42f3a5b2-afc4-42ac-9797-bd06859b9048" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bb914cc-4bad-40f3-be50-217cfc5bc0a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ef7caa4-4a01-4b42-8746-20109aed70ad" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5a61a599-13fd-40f8-80be-72931f510708" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:5a61a599-13fd-40f8-80be-72931f510708" ], + "x-ms-correlation-request-id": [ "9b78ce67-0b14-4ae4-8579-cb4ca1374244" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084207Z:9b78ce67-0b14-4ae4-8579-cb4ca1374244" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E1E9B5F077F4C0BA86DE2A913599A9A Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 607E400B823440FBA1F499B48F5E817A Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "a321c7e4-fcf3-4287-9eec-894cdb701fd3" ], + "x-ms-unique-id": [ "691" ], + "x-ms-client-request-id": [ "03532d72-eda4-442f-b64a-8b51091a160b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c99a9d00-6578-4df3-81d3-3f45099581fc" ], + "x-ms-request-id": [ "515be44e-9b57-4db7-950c-05f8f98f490e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6aad4de-fb32-46f8-a398-70fc0fc9af3d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "11d069e3-df03-45be-b36d-edcaf2924dc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:11d069e3-df03-45be-b36d-edcaf2924dc1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0496313a-7b81-4d63-abe0-7bc055ce000b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eb42af5d-a778-4b10-a0f3-6025afe778da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084207Z:eb42af5d-a778-4b10-a0f3-6025afe778da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76C6929349F24A098003B9E429A3561C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA4A4967F68745DDB7A2127EA8FEFB49 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "686" ], - "x-ms-client-request-id": [ "f1310eef-e349-46dc-94de-91927f3a818a" ], + "x-ms-unique-id": [ "692" ], + "x-ms-client-request-id": [ "4a3f8afb-0c36-400e-b26d-866ffc8e0909" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3482,42 +3482,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50A2FA5F5\"" ], + "ETag": [ "\"1DC4FC25C6E7C6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "44e41ca1-d43f-4a23-b8a5-5a9f3eb139d7" ], + "x-ms-request-id": [ "5810d5eb-8230-4b97-b0b3-166d0541c7d6" ], "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": [ "4f196bbd-45ba-436f-8572-dc287114515c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062230Z:4f196bbd-45ba-436f-8572-dc287114515c" ], + "x-ms-correlation-request-id": [ "52e2c05b-e123-4fa5-b1a3-a1a61e4f91b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084207Z:52e2c05b-e123-4fa5-b1a3-a1a61e4f91b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E35D1D71041446319406FB395A98ADBD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:30Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8B5A2DC68CF45C9BDD649C9D348CAF9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:08.3833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:50.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\":\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "e6a7b451-c585-44a9-bd73-c48dc3729799" ], + "x-ms-unique-id": [ "693" ], + "x-ms-client-request-id": [ "268bbe17-7d7c-42d3-a407-8df7976913fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1383eb8d-a02b-4fa5-9491-9118c770c313" ], + "x-ms-request-id": [ "10ef8904-a6b3-4bfb-adfa-d8b03679065b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/282c8484-ae1b-46ca-a8bf-ed2b746e78f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2785762-f31c-4d96-af49-8c97cb3d12fa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "67aa4469-e7a2-4bf7-8bdf-0924ae15a683" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:67aa4469-e7a2-4bf7-8bdf-0924ae15a683" ], + "x-ms-correlation-request-id": [ "15d32290-6f4b-49bd-bce0-5ca42c0a83ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084208Z:15d32290-6f4b-49bd-bce0-5ca42c0a83ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB7F3E79459D4184990FA032255E1B1E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B054446CC5824DEFA2AD4BFB853AAD6F Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:07Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "b55e36cf-f368-4e54-b88f-e629013a36a9" ], + "x-ms-unique-id": [ "694" ], + "x-ms-client-request-id": [ "03242b56-dbef-4189-8f24-1569daa9d082" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "f21154e2-378f-4f07-82ab-990bcabe21e9" ], + "x-ms-request-id": [ "e5c2940c-fcef-4c79-b617-e63f93ac909c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21a6efa2-2c84-4b20-8099-0f2a3b97fce8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "7eb838ba-d1c7-4b71-ab96-fd0ab69810a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:7eb838ba-d1c7-4b71-ab96-fd0ab69810a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54023a7e-2e27-41da-9ab9-06f6d745d8de" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "7c0f5d16-aff2-409c-864a-ab24c7843413" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084208Z:7c0f5d16-aff2-409c-864a-ab24c7843413" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8688EDC99E4545AB94EA783F210CDC16 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 605BF64575974D60A4C2695894E95ADF Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "9986ec5a-ed23-4a88-b90f-b52094ca96be" ], + "x-ms-unique-id": [ "695" ], + "x-ms-client-request-id": [ "a0fd4806-856a-40b9-9433-8404ed67a716" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "dafa75c3-04a0-4096-b62d-197214995968" ], + "x-ms-request-id": [ "12484054-daa7-4738-b62b-027062b365fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b8e0d4c-5230-4dba-9420-a7359af0e2f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9c1291f8-4258-49f9-a17a-534a20982b9b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ff68baef-e283-446b-9eaf-9f8a3398cc47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062231Z:ff68baef-e283-446b-9eaf-9f8a3398cc47" ], + "x-ms-correlation-request-id": [ "65f5ec6d-a0fa-4603-955e-c9f301a25559" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084208Z:65f5ec6d-a0fa-4603-955e-c9f301a25559" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26AA398C03E842AC9224B7A8F0F5E1B9 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBD554200BB1430B86924FBBF5FD6D5D Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3641,19 +3641,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "690" ], - "x-ms-client-request-id": [ "be7984d0-ef6f-487c-b5ff-876065ad5665" ], + "x-ms-unique-id": [ "696" ], + "x-ms-client-request-id": [ "7d82dfe1-73b9-49dc-997e-dfdcb8098e82" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3664,42 +3664,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E518198EEB\"" ], + "ETag": [ "\"1DC4FC267270895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ee953bd-db08-41d7-ba81-7ef80ca581f6" ], + "x-ms-request-id": [ "82afecbd-15d3-4032-b0cd-2f56f0835e06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b46cb62f-4803-41d4-a583-79870c906ed9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:b46cb62f-4803-41d4-a583-79870c906ed9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "278dfcc4-952f-4310-9a93-4130c557fcd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084209Z:278dfcc4-952f-4310-9a93-4130c557fcd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B35BD3784089405DB031460D7891B2B0 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:31Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CDAC33D8D9A4E3A80E2EF6CB500C169 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:08Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:31.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:08.7133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "691" ], - "x-ms-client-request-id": [ "14422210-16ff-446a-b796-8460c59bd1f8" ], + "x-ms-unique-id": [ "697" ], + "x-ms-client-request-id": [ "0bbb8b37-a826-46af-b47f-fb44882960a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "27f138cf-3410-4cee-85e3-951377be94d0" ], + "x-ms-request-id": [ "6b9ce28b-6948-402b-ae54-c2ba724e30ab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e77051f-d235-4f34-a362-2f1ab89dd3b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea09a83c-9998-47fe-aa8f-a8f252abe30c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "81f2d54b-2a59-4b67-a76e-1c90f5c905b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:81f2d54b-2a59-4b67-a76e-1c90f5c905b2" ], + "x-ms-correlation-request-id": [ "53f3f8e2-9cc9-4fae-9596-1c6dce2adda8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084209Z:53f3f8e2-9cc9-4fae-9596-1c6dce2adda8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA9D58E43E944991B7C732136C8C2C54 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E64D3EAB04E49F999E4FCE6B805BB3F Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "692" ], - "x-ms-client-request-id": [ "d18a1771-9742-4c7f-8843-560e3f40dec1" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "fc2317e2-1fca-4b62-8c08-8be879a762c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b0804582-6e32-4283-ba6d-efcd224d8bce" ], + "x-ms-request-id": [ "52e78e4e-bc7a-4db6-8d38-e607c3755761" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e49e360f-01e3-408c-ab85-84e4857be58b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a67d0f19-2995-4a10-b514-5627c3b659dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062232Z:a67d0f19-2995-4a10-b514-5627c3b659dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a59c34f8-d373-4071-8fc8-2fd11bf1660e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "69a8b596-41c8-45ef-b74f-c9acd81e1c80" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084209Z:69a8b596-41c8-45ef-b74f-c9acd81e1c80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3FBC841D1C8427BB58D266042021738 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1505D9E2E9A242EB94D7FADA870CCD03 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "12fc0ead-2e28-44f5-8770-03b4631a32bf" ], + "x-ms-unique-id": [ "699" ], + "x-ms-client-request-id": [ "d216f35e-0c2c-4cf4-b842-a63115fd4388" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3801,42 +3801,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E518198EEB\"" ], + "ETag": [ "\"1DC4FC267270895\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0ae4813-9747-4b22-ad28-4eb71459c85b" ], + "x-ms-request-id": [ "00a45029-d41f-4210-9db7-ceb43cb51656" ], "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": [ "a7454467-094f-43ca-92de-3f25f08c39fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:a7454467-094f-43ca-92de-3f25f08c39fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e3ced2fa-ced1-4e96-bd08-4908db60301e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084209Z:e3ced2fa-ced1-4e96-bd08-4908db60301e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB41DF7F2D534A90A612503A9289DF7F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:32Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4147C0547CA448F8E56C19E536EAA07 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:09Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8322" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:31.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\":\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:08.7133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "694" ], - "x-ms-client-request-id": [ "839c33a5-a1ee-46f9-ab7d-a67d41f5966d" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "e1e77d39-0928-4c1f-a770-e3337e432dcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6eb5a2a3-5a42-48f2-af63-35d8dbb342bd" ], + "x-ms-request-id": [ "9fa4fa8a-7ebc-4b5d-a676-63daf8ea7f53" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/edb945a6-5026-4394-bfba-8385cca29f6a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f77fe11-923a-412e-b1c6-86a4c0fe71d4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c1cbecc3-e9c9-4fd3-b001-c14b42349177" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:c1cbecc3-e9c9-4fd3-b001-c14b42349177" ], + "x-ms-correlation-request-id": [ "0259007e-6f87-4223-81e7-59d6b7ca0259" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084210Z:0259007e-6f87-4223-81e7-59d6b7ca0259" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F836F2CC6FE8488BA2D9276DFA40C9E3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92A894BF13F14754B02C9E93AF58D54B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "695" ], - "x-ms-client-request-id": [ "b4d5ff57-caa5-4062-bdf2-c9c4f11fac31" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "725522cf-fe08-417a-9926-c4ea63f9281e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b5b4ed5b-afc7-4d61-9fac-a17c53f55812" ], + "x-ms-request-id": [ "218a30e1-1c32-4554-85c2-b1b19096ff29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fc2bff5-6113-4b4f-a156-b988e77e9ba5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eedd6a2e-1247-4253-bbdb-1ebf105c48d1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a6d8d2e-15b3-439e-a390-15daf1fc7752" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062233Z:3a6d8d2e-15b3-439e-a390-15daf1fc7752" ], + "x-ms-correlation-request-id": [ "7bc4e69a-0d13-4669-aa89-2f73280889dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084210Z:7bc4e69a-0d13-4669-aa89-2f73280889dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5783820AFBB434493D5AB8D38B06813 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F354EFF87AB474A9F45F5359C751709 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "696" ], - "x-ms-client-request-id": [ "4deb034a-9d99-4504-868b-d8b124e4bf4d" ], + "x-ms-unique-id": [ "702" ], + "x-ms-client-request-id": [ "3cbd2188-beb8-4638-b409-dbe9829b6199" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "5331409d-18b5-4a07-ba8a-285c3145815a" ], + "x-ms-request-id": [ "56e096e9-2446-4f82-a4d8-e1c12c24d06e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8d467b1-1a17-4257-9fb0-8611699c5b54" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a4d9734-f46d-4175-b7eb-4761d440d463" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ca137551-13c2-4e40-a31a-0411d852ddba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:ca137551-13c2-4e40-a31a-0411d852ddba" ], + "x-ms-correlation-request-id": [ "341c243e-0534-4ad3-86e2-4bcb5a580f54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084210Z:341c243e-0534-4ad3-86e2-4bcb5a580f54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55188421CBB74407B886704A2D46C88D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:33Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78D8AB75410649FEA588311CCACAC4BA Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:10Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:10 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3960,19 +3960,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "697" ], - "x-ms-client-request-id": [ "1e547fca-a124-4a28-b4cc-223411b8a7de" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "39fc150d-f82e-4742-9e4f-dabec676d34e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3983,42 +3983,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51970E18B\"" ], + "ETag": [ "\"1DC4FC2686A02E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3aea4809-9984-4437-9cd0-59ed8ece3cd0" ], + "x-ms-request-id": [ "470e8650-4c4e-429f-892c-7659f8788841" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8364d7b1-d059-4d96-9974-541f03b485ed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:8364d7b1-d059-4d96-9974-541f03b485ed" ], + "x-ms-correlation-request-id": [ "307d4b33-3cea-427c-8bd2-8e9b0c3f8d69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084211Z:307d4b33-3cea-427c-8bd2-8e9b0c3f8d69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8BB8F939FDC40A981F20D601BE94039 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C50D9A8747140048CA46BC255D323C9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8201" ], + "Content-Length": [ "8317" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-h8c4uv\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-xa1y0o-CentralUSwebspace-Linux/sites/Functions-Node-22-h8c4uv\",\"repositorySiteName\":\"Functions-Node-22-h8c4uv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-h8c4uv.azurewebsites.net\",\"functions-node-22-h8c4uv.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-h8c4uv.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-h8c4uv.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-xa1y0o/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-g2ifkz\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:33.9766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-h8c4uv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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-22-h8c4uv\\\\$Functions-Node-22-h8c4uv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,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:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,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-Premium-xa1y0o\",\"defaultHostName\":\"functions-node-22-h8c4uv.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-hjkt2c\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-113.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-0a1x3e-CentralUSwebspace-Linux/sites/Functions-Node-22-hjkt2c\",\"repositorySiteName\":\"Functions-Node-22-hjkt2c\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-hjkt2c.azurewebsites.net\",\"functions-node-22-hjkt2c.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-hjkt2c.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-hjkt2c.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-0a1x3e/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-u4rnvi\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:10.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\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":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-hjkt2c\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"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.217.214\",\"possibleInboundIpAddresses\":\"168.61.217.214\",\"inboundIpv6Address\":\"2603:1030:10:5::2\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::2\",\"ftpUsername\":\"Functions-Node-22-hjkt2c\\\\$Functions-Node-22-hjkt2c\",\"ftpsHostName\":\"ftps://waws-prod-dm1-113.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,168.61.217.214\",\"possibleOutboundIpAddresses\":\"23.99.196.87,23.101.123.112,23.99.199.110,23.99.199.42,23.99.193.185,168.61.210.43,23.99.197.211,23.99.196.112,23.99.255.20,20.112.192.181,20.112.198.69,20.112.198.129,20.112.198.133,20.112.198.142,20.112.198.145,20.112.198.164,20.112.199.70,20.112.199.80,20.112.199.93,20.112.199.244,20.112.199.250,168.61.217.214\",\"outboundIpv6Addresses\":\"2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::b8,2603:1030:b:7::138,2603:1030:b:f::24,2603:1030:b:a::a3,2603:1030:b:a::ac,2603:1030:b:d::d9,2603:1030:b:f::63,2603:1030:b:3::4e,2603:1030:b:e::5d,2603:1030:b:9::22,2603:1030:b:9::23,2603:1030:b:25::c,2603:1030:b:8::cd,2603:1030:b:7::1a3,2603:1030:b:5::61,2603:1030:b:13::172,2603:1030:b:9::24,2603:1030:b:5::fa,2603:1030:b:f::aa,2603:1030:b:13::173,2603:1030:b:3::ac,2603:1030:10:5::2,2603:10e1:100:2::a83d:d9d6\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-113\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-0a1x3e\",\"defaultHostName\":\"functions-node-22-hjkt2c.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "13d71602-656c-43ff-8d3a-a23cd0ad3485" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "410ba473-df20-4bcc-a074-9d158a93c46a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a6ffa248-38c6-477e-94f5-d82fad972f60" ], + "x-ms-request-id": [ "4b5173ac-76b1-419f-8645-27cabe5ab519" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/285cd4da-ae25-4fa5-a8ee-89b62db1f6c0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "0e3ea420-6858-46e2-ba4e-00317de0ba4e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:0e3ea420-6858-46e2-ba4e-00317de0ba4e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57d4aa4a-d5e8-4102-a64e-7f7edb0389c6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "ffee3fb8-a359-4ff6-b9e8-e015b155d5d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084211Z:ffee3fb8-a359-4ff6-b9e8-e015b155d5d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB22D57E27214B92A80A451BE6E974BB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 193A2121404B412087127BC588143BD5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1212" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-h8c4uv\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"034bd992-a14d-4b81-aa94-26c8ed7eadd3\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-hjkt2c\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2c24ecba-3c8f-4e3c-a5ee-3bf3d232e120;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=6615c5f6-4440-43eb-928e-853b5072d01b\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-h8c4uv\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-hjkt2c\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/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-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "699" ], - "x-ms-client-request-id": [ "f69b8773-570f-4b76-84c2-404ef83c7eb5" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "a0b11f6c-a095-4048-b8b9-eade5c94f22d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "5e0453f3-9147-4fa0-b114-64df1b7db0b9" ], + "x-ms-request-id": [ "3a22b040-a780-49ee-92c1-1928d516b753" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad35979a-cc4d-4eca-957f-69e42091ff74" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13e12375-62c2-45da-885e-803a50b1d5e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062234Z:13e12375-62c2-45da-885e-803a50b1d5e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9abb560e-f4dd-40aa-ba29-28bdbf70eebf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9809392d-3343-4e18-aa5d-34fedb736350" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084211Z:9809392d-3343-4e18-aa5d-34fedb736350" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D13135BCDBE442E8BAC526CE43B7986E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13C646F0DEDE41BF81E1F56E8FD20AC1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-xa1y0o/providers/Microsoft.Web/sites/Functions-Node-22-h8c4uv/config/web\",\"name\":\"Functions-Node-22-h8c4uv\",\"type\":\"Microsoft.Web/sites/config\",\"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-0a1x3e/providers/Microsoft.Web/sites/Functions-Node-22-hjkt2c/config/web\",\"name\":\"Functions-Node-22-hjkt2c\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "0e0054e4-2c27-43a4-9653-cf06345529f6" ], + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "c6913c51-55f2-4e3d-a0b5-b708563070b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4120,42 +4120,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50C4ACACB\"" ], + "ETag": [ "\"1DC4FC25EA084A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c711c3e2-9f39-493b-8d89-942c8e0d79d0" ], + "x-ms-request-id": [ "2c402dab-5b91-4445-be7d-6b7df20d9370" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1745d524-cd91-401a-b668-eac9c4d488fc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:1745d524-cd91-401a-b668-eac9c4d488fc" ], + "x-ms-correlation-request-id": [ "fd75d382-42bc-4752-aaae-9589847b8363" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084211Z:fd75d382-42bc-4752-aaae-9589847b8363" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D49D313DE2814A6DACEDE800F5E0E0BE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:34Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC9D80ADAB1A4531BA9B7D3FA39EC59C Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:11Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8672" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:11.9166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:54.41\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "a421675a-a2df-4e1e-b6a7-a71745969873" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "5f308c81-4288-4fcd-b017-8e6afd56d48f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "2328ae8a-388d-4520-a3b5-7933c372e6ca" ], + "x-ms-request-id": [ "5796ca33-ec33-4ef6-91bc-b91398809a4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1c5b91f-667a-4b6f-873a-7a35c3168eca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80491b0b-f610-4d65-b352-94781136e26d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "653b04c0-0268-47a6-8d59-09b3065b445e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:653b04c0-0268-47a6-8d59-09b3065b445e" ], + "x-ms-correlation-request-id": [ "616ea8fb-76ba-4b82-917c-31cefb4f3674" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084212Z:616ea8fb-76ba-4b82-917c-31cefb4f3674" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D803B29186E4C069E7272C80780B60F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52425C683DB242C5A0D1109166BFB59A Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "702" ], - "x-ms-client-request-id": [ "67ba1258-7349-4ce5-baef-2d78c3b28643" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "ceb87ea9-842f-49a0-8d64-8ffb8a1c27c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "d30b075b-d683-4b80-ba6d-9e235de3f61e" ], + "x-ms-request-id": [ "2010ba3b-938e-4840-ab0f-31269fe03a38" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee9614fa-a945-4c33-867f-a7d15005133c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "ee81b6fa-b390-4e36-a65b-4baf92b19b7a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062235Z:ee81b6fa-b390-4e36-a65b-4baf92b19b7a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d22238e-c0fc-462e-ba98-090b44a43a7c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "867c063b-3b9e-4e03-acd4-0b797a1845fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084212Z:867c063b-3b9e-4e03-acd4-0b797a1845fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 77D449317A364B918F565196E0CCC72D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03F1DF128F86422EAB28C56FFEB37056 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "703" ], - "x-ms-client-request-id": [ "fd3b72d2-4b60-4a2b-a6cf-3cba2c7440e3" ], + "x-ms-unique-id": [ "709" ], + "x-ms-client-request-id": [ "2268e2bc-d908-4174-b178-9e35137d4bf3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "da4960d4-7282-4695-935b-8e98c7fa6aea" ], + "x-ms-request-id": [ "1c4664e1-57ce-4483-8fdb-ed2188ea7187" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d80f6106-239b-4cd7-af68-3cdd808e8aaa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94a262e5-680f-44f5-99ee-9ae856e9f443" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8b9d2271-28ef-4332-a5f1-d8992b8c1a11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062236Z:8b9d2271-28ef-4332-a5f1-d8992b8c1a11" ], + "x-ms-correlation-request-id": [ "c3250f97-dd23-401e-80f7-4e5cb180357b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084212Z:c3250f97-dd23-401e-80f7-4e5cb180357b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42B4700707E94718ABF801D101716F3C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:35Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC4B4D4421274271A7CBD120D4A7E23A Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:12 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4279,19 +4279,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "a22a5280-e1bb-475a-bfd3-47108ca0c68b" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "e147a602-b67f-42eb-a153-67bff3f292e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4302,42 +4302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51AAD3F20\"" ], + "ETag": [ "\"1DC4FC2698F7D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66e57291-c575-49bc-a79d-c727afb5bef6" ], + "x-ms-request-id": [ "60d43532-6dc1-47a2-8d2c-9d6626dc374a" ], "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": [ "b15a49d4-9334-4ed4-81ac-7334b7ba3e0f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:b15a49d4-9334-4ed4-81ac-7334b7ba3e0f" ], + "x-ms-correlation-request-id": [ "cc2f9764-4c00-4bff-a8ef-282a9fb1c3c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084213Z:cc2f9764-4c00-4bff-a8ef-282a9fb1c3c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A847C3E57BBB48D58A31B4C7CE651FE1 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:36Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18717244E0234F15B6911F96890EB70C Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:12Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8575" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:36.05\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:12.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "aaef66c6-547a-46a7-877f-e4b23ac0235a" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "6a339e0a-3308-4091-a5c4-3847023c7276" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "133b29a9-6476-49c6-ac74-14dc0706cc9d" ], + "x-ms-request-id": [ "c679539c-f647-4c56-a3b3-f1550a5d0828" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/587a2cf0-b5b1-4ca6-be55-c90a8621c01c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6acbfa8c-35eb-435b-a959-e2595d992300" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "135dfe10-70fe-4cef-afc8-5a9feef36893" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:135dfe10-70fe-4cef-afc8-5a9feef36893" ], + "x-ms-correlation-request-id": [ "660a681c-ed0a-4ce7-9349-712b1ed28c90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084213Z:660a681c-ed0a-4ce7-9349-712b1ed28c90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D642CD555F9647199D7DFA5AF8C7B8FB Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABDEB987A5E641A68025A1F0D7CAF462 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "76227a9b-7748-467b-99e9-cb9ddeb3d53a" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "c82978a8-0005-49a2-b168-a495989cd229" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "dffa939f-dca0-4fc4-a20e-0320c3c2c123" ], + "x-ms-request-id": [ "5c830aec-e63c-4bca-b2d3-de8422614d1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b63c5cdc-9d86-4d8d-9782-7a8ef2884171" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2fa2106c-a710-4f34-ac8e-f565e4b5cd0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062237Z:2fa2106c-a710-4f34-ac8e-f565e4b5cd0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df965f60-2745-4e6e-af25-3d812e34b330" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "75b0a7a8-35de-497e-bbd3-6aa7c444f0d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084213Z:75b0a7a8-35de-497e-bbd3-6aa7c444f0d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6EC7E9E2929749C789F931B93A1B434E Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 131011127A434CB0AE801BE636ED2F19 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "4c6c6915-6c4a-46d6-b2ff-d42cf7a4937f" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "f11950fb-a628-44bd-b047-17888f222447" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4439,42 +4439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51AAD3F20\"" ], + "ETag": [ "\"1DC4FC2698F7D15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67544680-ab65-4f75-ac60-ebdc5c29cf43" ], + "x-ms-request-id": [ "c1252ab3-c20d-4d0d-b684-818b57d32593" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9219996a-28e9-4168-9ec9-ccf5684ebed1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:9219996a-28e9-4168-9ec9-ccf5684ebed1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "94d534d4-d36c-4d71-a5bf-d335a743ca3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084213Z:94d534d4-d36c-4d71-a5bf-d335a743ca3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C53EFAAD306E40CF88B2C252A7110FDD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:37Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BC22E3F98414CF48258C569CC59BF08 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:13Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8575" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:36.05\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:12.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "a7979597-888a-4fc9-ac42-e2b24e1c3d16" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "bee5fe23-20a4-40d3-9379-8c2d28687494" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0cc0509e-71d0-48db-9b9a-9a512c4e0cf2" ], + "x-ms-request-id": [ "3beb4ec0-3813-430a-a88a-1aa2a63f894c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7442686e-6552-478e-911a-434d84d7f8df" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e19ef4cb-31c0-4175-8089-8e12650754da" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "796e0bbf-7169-460b-bc10-9d74dc5a555f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:796e0bbf-7169-460b-bc10-9d74dc5a555f" ], + "x-ms-correlation-request-id": [ "b1ad2c80-8813-4d1d-a9a2-f52578c896df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084214Z:b1ad2c80-8813-4d1d-a9a2-f52578c896df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B104166B39F2497498293592B08A9DC8 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF840BCB9AEB420AA92752324603BC47 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "20bc30c6-1622-413f-8606-fdda742878e8" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "1b1c2660-be5b-465b-b3c8-5c21694268ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "ecc9f30c-3e0b-4721-a500-e6b55ccb833a" ], + "x-ms-request-id": [ "9b12608e-9f79-4e57-bb2c-7e919bf3d436" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0fd50e6e-8da1-4a32-b49c-f2e98a42742a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "c3487ccc-a615-49d8-af10-abfe214f6a58" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062238Z:c3487ccc-a615-49d8-af10-abfe214f6a58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/543b70a5-ad45-4046-8956-425c55702659" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7a7712d8-049c-4c86-9730-4a5b7d50362b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084214Z:7a7712d8-049c-4c86-9730-4a5b7d50362b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 142D6CCC4450408499A462364F1E0299 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED22009775D44E6F80204D86DC7A527C Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "8872209c-e993-40b5-a479-a97a5a4de103" ], + "x-ms-unique-id": [ "716" ], + "x-ms-client-request-id": [ "b88703ad-fe44-4f4e-a7fd-38b75d5fda9c" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "aa3f2f5a-00c1-4880-a83b-b809a391b7ce" ], + "x-ms-request-id": [ "e9eb5b32-87b5-43c5-b52a-e12926b9a251" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c2fa96aa-e43b-4397-aca4-77091bdeb713" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "46c98063-14d8-4194-903c-df99144e8f29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:46c98063-14d8-4194-903c-df99144e8f29" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2a6d8830-b52c-438b-8b71-fedf763f6623" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "8cf08cc6-6e8c-41ad-a7e6-a8778a3a17ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084214Z:8cf08cc6-6e8c-41ad-a7e6-a8778a3a17ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14FE3756444C48DBB8E4722DA099D755 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:38Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D9CFB6A43A14A689CCFF59DA304C54B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:14Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4598,19 +4598,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "7c998c26-85dd-4d73-b251-42b6e87db889" ], + "x-ms-unique-id": [ "717" ], + "x-ms-client-request-id": [ "43767582-2953-4a85-aeba-224884b59893" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4621,42 +4621,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51C653555\"" ], + "ETag": [ "\"1DC4FC26AC2B2EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07cdc6d6-f4e6-4990-b28d-13f965ca4a44" ], + "x-ms-request-id": [ "c25451f1-fd50-4484-b29a-64eebc95f1de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2572d49c-cacd-445b-aef2-bb897bc480a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:2572d49c-cacd-445b-aef2-bb897bc480a0" ], + "x-ms-correlation-request-id": [ "2cc1258d-0ee3-4bc5-b3da-3a7e8d4a855e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084215Z:2cc1258d-0ee3-4bc5-b3da-3a7e8d4a855e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61AADC1FC47F4BF88E3AA5382DF99A3C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CCF27325546D4E93A22405A772B5BF00 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:38.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:14.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "bd161790-1eb3-41c2-ad8a-d044cb0b55e2" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "a69e811e-a3f1-4c85-aac0-00fbf7da7b52" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "c77c037f-1b7d-46b2-bb4b-955a7f6b1758" ], + "x-ms-request-id": [ "c48793af-c96a-4ed2-a837-24fef2bc9d29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f40639d5-1ecd-4d60-b1ce-ca60f4685eaf" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8d80fe3d-ec5f-4d22-a587-cc2149b008a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062239Z:8d80fe3d-ec5f-4d22-a587-cc2149b008a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9cf7d44b-57d2-464f-9c33-621fb21b026d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "c06e89c2-bcfa-4e71-9fd2-204f0b8ca8bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084215Z:c06e89c2-bcfa-4e71-9fd2-204f0b8ca8bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CCD00984A684C6DACE7CA6D97F437C5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D48D6BBD6C94DA6A677C1CE4D2A36BB Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "420b45a0-dd3c-4857-8c45-cd3b39fd64c9" ], + "x-ms-unique-id": [ "719" ], + "x-ms-client-request-id": [ "f41019f8-f513-4f40-8f85-eba3e8a8a84e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "712f9135-8d57-4ac7-9e92-b9cd17b64386" ], + "x-ms-request-id": [ "c1bd4513-969a-4052-81a9-d4469c16b2de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8278f926-0af3-4764-9052-9a70c071f360" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/871411bb-aee3-4d70-98c1-aa2800d4be11" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1ef3c375-4a08-481a-a401-3e8374625d59" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:1ef3c375-4a08-481a-a401-3e8374625d59" ], + "x-ms-correlation-request-id": [ "a9ca95ed-e401-411e-afef-3dc6699cd7c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084215Z:a9ca95ed-e401-411e-afef-3dc6699cd7c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DD1ECE2F51443ADBBE99164A5123AAC Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:39Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71FD50BD95D84E6C95C92297D0F4CE78 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "36e2152d-83f0-4d16-b917-334dfaeee49f" ], + "x-ms-unique-id": [ "720" ], + "x-ms-client-request-id": [ "dc51af0a-d60c-45ad-b02e-9c78252d833f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4758,42 +4758,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51C653555\"" ], + "ETag": [ "\"1DC4FC26AC2B2EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62d87233-0d54-4138-92aa-e8dd03642772" ], + "x-ms-request-id": [ "39959b49-8feb-47d2-acf8-533a4332693d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dd36bd0f-371f-413c-9b41-b60c987779b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:dd36bd0f-371f-413c-9b41-b60c987779b6" ], + "x-ms-correlation-request-id": [ "fc9811e8-9944-4641-8c71-ab54de5f38fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084216Z:fc9811e8-9944-4641-8c71-ab54de5f38fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D385CBD5643C417192B5FE68224EAD42 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CECF53B0DB714A8381B0A27A68E7512D Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:15Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:38.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\":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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:14.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\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "25861216-52d8-46f3-b3f8-4b7eceafb076" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "fcf45245-a3fe-48a1-93db-10bf2f8ce250" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cd49a0fa-a60b-474a-b2a7-df120048fce0" ], + "x-ms-request-id": [ "6e21c8c1-2e8e-4e5d-9da9-268be6d76602" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83aeeea4-b641-47ca-b951-022a4d28fc96" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9c86f60a-6ff8-4a26-8229-8fe73699caa3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d271911e-713f-4777-8138-9f430c2ef7f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:d271911e-713f-4777-8138-9f430c2ef7f9" ], + "x-ms-correlation-request-id": [ "07885294-abc0-41b7-ae46-33fa809eaec1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084217Z:07885294-abc0-41b7-ae46-33fa809eaec1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13C6C5F5E921427A85EA76DE9B562F70 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89C1B1BBD8444EE8B1BE6A1183935A4B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:16Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "716" ], - "x-ms-client-request-id": [ "c28ad6ac-2eaf-494b-9f02-81975c55d9ed" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "b7bd5e1c-8979-4117-b920-509a26f19a8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "cf7041d2-c70b-42f3-b21e-9135c38a06d6" ], + "x-ms-request-id": [ "3f141b05-a6d3-4e34-a5d9-b16912cacc68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83a89872-f4a6-44ec-bc58-b138780c6538" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6dadb6e9-29af-48e1-a34b-7aeace29288d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062240Z:6dadb6e9-29af-48e1-a34b-7aeace29288d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d288ef8-b54a-4b95-a870-96750c9d4b81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "82d26b79-d03f-4fca-b3d9-f2eac03e331b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084217Z:82d26b79-d03f-4fca-b3d9-f2eac03e331b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A3FA4EE73794A23B9E938D6EACDA2EF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:40Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52C2E6B7B2BC4837A27BC331F1A8832D Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "717" ], - "x-ms-client-request-id": [ "adc42435-b027-4ab7-b8e3-76014f6acc5e" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "f8dbb446-97ee-483c-b67b-6cf7db68b6c8" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "fb94fc4c-fb62-4b7e-b3fd-b4c520590ba6" ], + "x-ms-request-id": [ "7825ea63-e1bf-4bf7-a973-e00ebcdb9352" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5b73ef94-fe61-487e-9645-b6189a2058fb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fe356ca6-ee1b-4919-a382-1c77cda9acb3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "393e1e0b-6bb9-4d2d-8ca0-c938eae6619b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:393e1e0b-6bb9-4d2d-8ca0-c938eae6619b" ], + "x-ms-correlation-request-id": [ "c5eeab0a-046b-468e-8d20-ee33a9b90125" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084217Z:c5eeab0a-046b-468e-8d20-ee33a9b90125" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B657E594FBC14F90AEFC733DA7BE4753 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 248C536449A74B7394A15A06EF42F1A1 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:17 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4917,19 +4917,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "7482a1d4-f9c1-46a9-845e-d4216a276b91" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "510a531f-00e1-455c-9a36-a6a49cd9023f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4940,42 +4940,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51DC83AC0\"" ], + "ETag": [ "\"1DC4FC26C865BEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19385d41-2f17-4a30-862c-6119718c3779" ], + "x-ms-request-id": [ "d330d750-f92d-4505-a17b-f7ffd42a27b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cc35f1f6-eb9f-4323-8b8e-74a76a054427" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:cc35f1f6-eb9f-4323-8b8e-74a76a054427" ], + "x-ms-correlation-request-id": [ "6390d0eb-4cf9-439f-907e-1690323f115a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084218Z:6390d0eb-4cf9-439f-907e-1690323f115a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC2A9C4E78034C3B82469C7319A0717B Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8B383B029E14296A02AC61C941A28F4 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:17Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8575" ], + "Content-Length": [ "8677" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-6-dnrk0q\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-279.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-m4501w-CentralUSwebspace/sites/Functions-DotNet-6-dnrk0q\",\"repositorySiteName\":\"Functions-DotNet-6-dnrk0q\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"functions-dotnet-6-dnrk0q.scm.azurewebsites.net\"],\"siteProperties\":{\"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-6-dnrk0q.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-6-dnrk0q.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-m4501w/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:41.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-6-dnrk0q\",\"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.40.3\",\"possibleInboundIpAddresses\":\"20.118.40.3\",\"inboundIpv6Address\":\"2603:1030:10:8::28\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::28\",\"ftpUsername\":\"Functions-DotNet-6-dnrk0q\\\\$Functions-DotNet-6-dnrk0q\",\"ftpsHostName\":\"ftps://waws-prod-dm1-279.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,20.118.40.3\",\"possibleOutboundIpAddresses\":\"40.89.251.238,52.143.255.66,52.154.200.192,52.154.200.243,52.154.201.40,52.154.202.50,172.168.72.123,52.154.203.201,52.154.204.40,52.154.205.137,52.154.206.183,52.154.207.51,52.154.207.62,52.154.207.84,52.154.249.31,52.154.249.49,52.154.249.76,52.154.249.134,52.154.249.147,52.154.249.167,52.154.249.191,52.154.250.65,52.154.250.133,52.154.250.145,52.154.251.112,52.154.252.249,52.154.253.4,52.154.253.124,52.154.255.83,52.158.168.9,52.158.168.94,20.118.40.3\",\"outboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::27b,2603:1030:b:f::27b,2603:1030:b:13::2cc,2603:1030:b:f::27c,2603:1030:b:25::22a,2603:1030:b:6::16c,2603:1030:b:24::25f,2603:1030:b:24::260,2603:1030:b:12::27c,2603:1030:b:b::27f,2603:1030:b:a::289,2603:1030:b:c::2e7,2603:1030:b:25::22b,2603:1030:b:9::27c,2603:1030:b:7::143,2603:1030:b:13::2cd,2603:1030:b:d::2af,2603:1030:b:8::290,2603:1030:b:c::2e8,2603:1030:b:25::22c,2603:1030:b:c::2e9,2603:1030:b:7::144,2603:1030:b:24::261,2603:1030:b:d::2b0,2603:1030:b:d::2b2,2603:1030:b:9::27e,2603:1030:b:7::145,2603:1030:b:12::27e,2603:1030:b:7::146,2603:1030:b:5::369,2603:1030:10:8::28,2603:10e1:100:2::1476:2803\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-279\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-m4501w\",\"defaultHostName\":\"functions-dotnet-6-dnrk0q.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3ohq2r\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-247.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-z05kh6-CentralUSwebspace/sites/Functions-DotNet-8-3ohq2r\",\"repositorySiteName\":\"Functions-DotNet-8-3ohq2r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"functions-dotnet-8-3ohq2r.scm.azurewebsites.net\"],\"siteProperties\":{\"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-3ohq2r.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-3ohq2r.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-z05kh6/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:17.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\":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-3ohq2r\",\"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.35\",\"possibleInboundIpAddresses\":\"20.40.202.35\",\"inboundIpv6Address\":\"2603:1030:10:6::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::11\",\"ftpUsername\":\"Functions-DotNet-8-3ohq2r\\\\$Functions-DotNet-8-3ohq2r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-247.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,20.40.202.35\",\"possibleOutboundIpAddresses\":\"52.143.247.69,52.143.247.110,52.158.162.191,52.185.108.48,52.185.108.49,13.86.39.82,172.169.0.102,52.185.108.52,40.89.243.222,52.185.108.53,52.185.108.65,52.185.108.72,52.185.108.73,52.185.108.76,52.185.108.77,52.185.108.94,52.185.108.95,52.185.108.112,52.185.108.113,52.185.108.120,52.158.213.148,52.185.69.84,52.189.71.146,52.228.228.154,52.228.228.185,52.228.228.190,52.228.229.65,52.228.229.118,52.228.229.207,20.84.224.112,20.83.16.69,20.40.202.35\",\"outboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::384,2603:1030:b:d::156,2603:1030:b:13::1bf,2603:1030:b:7::1e5,2603:1030:b:9::13d,2603:1030:b:9::13e,2603:1030:b:25::100,2603:1030:b:25::101,2603:1030:b:5::3b3,2603:1030:b:8::135,2603:1030:b:a::13e,2603:1030:b:f::131,2603:1030:b:13::1c1,2603:1030:b:7::1e6,2603:1030:b:f::132,2603:1030:b:8::136,2603:1030:b:7::1e7,2603:1030:b:f::133,2603:1030:b:13::1c2,2603:1030:b:e::12b,2603:1030:b:8::137,2603:1030:b:b::138,2603:1030:b:3::1f4,2603:1030:b:f::134,2603:1030:b:5::3b4,2603:1030:b:6::385,2603:1030:b:3::1fa,2603:1030:b:f::135,2603:1030:b:a::13f,2603:1030:b:a::140,2603:1030:10:6::11,2603:10e1:100:2::1428:ca23\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-247\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-z05kh6\",\"defaultHostName\":\"functions-dotnet-8-3ohq2r.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "719" ], - "x-ms-client-request-id": [ "15c75d2d-b2e3-47e0-b303-31a0930200c7" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "a0108e41-3a0d-42a4-bd3a-ec3d7904b9e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "bda8514d-43c8-4e40-acfe-e72ac0f25749" ], + "x-ms-request-id": [ "2552320d-adf6-456e-bef7-6d70092f5eda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd60d742-4c69-4082-b2ea-7f931342456f" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "3ebcc91b-71f3-4054-8261-c1fa671b8750" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062241Z:3ebcc91b-71f3-4054-8261-c1fa671b8750" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/38799f09-44fe-4ea7-8e03-0dc55b4117e3" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "82d502a3-36b6-4790-ac89-9bea470a6b6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084221Z:82d502a3-36b6-4790-ac89-9bea470a6b6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4EEAC51530242ADAA037B0C4A0D6579 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:41Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 875FE5E6EF87494F96E1E507F37EA7AE Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:18Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1171" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstorage6aw;AccountKey=wLTUd5uAKliW9pOwJHwXIsIBN2dZe1L0fmXD0tYHCZnViY+a7HxpNRP0E1uPG5vvT5zulYv1yHUp+ASta7zF3A==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-6-dnrk0q\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"3ba2b0b5-510e-4c9e-8c35-4491650a1687\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionswinstoragebv8;AccountKey=DkKMqJL2C1Y3DgHcMnFTHSiyX4LMZfz1g+cPw62wK5Jz0gxJwWZFddeVc5KLuak//7EhZBZ7NKsR+AStuV0Smg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3ohq2r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=2134c87b-cfee-44cf-8570-f1dc4de97d7c;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5eade4c9-5e82-4a47-abaa-547ad0566c04\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-6-dnrk0q\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3ohq2r\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "720" ], - "x-ms-client-request-id": [ "714dea56-1541-46c0-95be-dc5a84318dc7" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "ec9e1fd6-f222-40e7-bee0-891197d4eed4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a65124b1-e13d-48df-97e8-c6f30fbaa14f" ], + "x-ms-request-id": [ "9ba5aaa9-f4dc-41aa-92ee-b7904fe023c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2620dd4-8eca-4f63-800f-0728f9a80bc1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "403d7630-e11d-497d-b419-7b36b135e2c3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:403d7630-e11d-497d-b419-7b36b135e2c3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1790a886-a7ca-41df-97ee-ecf03e072dd0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0531e082-d2b9-4f4a-90d1-bb079e867358" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084221Z:0531e082-d2b9-4f4a-90d1-bb079e867358" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E087A2190F043168A5EB80266870676 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A243D70674A4D918A39A93824164AE2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-m4501w/providers/Microsoft.Web/sites/Functions-DotNet-6-dnrk0q/config/web\",\"name\":\"Functions-DotNet-6-dnrk0q\",\"type\":\"Microsoft.Web/sites/config\",\"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\":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-z05kh6/providers/Microsoft.Web/sites/Functions-DotNet-8-3ohq2r/config/web\",\"name\":\"Functions-DotNet-8-3ohq2r\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "70157870-008d-431d-94d6-0f0711eb25ff" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "533ae6a8-a7d9-4d79-83a9-1ad10e8e150e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5077,42 +5077,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E50E5F52EB\"" ], + "ETag": [ "\"1DC4FC2608A5340\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb81dfd2-0b8c-466f-ad15-33849c5acfb0" ], + "x-ms-request-id": [ "c1602656-52de-4bde-8980-3fe58c911bc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "31783a2d-826b-465c-9485-a36e3dba304b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:31783a2d-826b-465c-9485-a36e3dba304b" ], + "x-ms-correlation-request-id": [ "3249e123-078d-43f0-85b3-70c16b0b504a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084222Z:3249e123-078d-43f0-85b3-70c16b0b504a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E506579E2394435BC9B6713080D92CF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0B2CB63521E4169A78B2551BBA40D69 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:21Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8745" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:15.4066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:41:57.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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "1cbccba0-d1ad-4083-acbd-efa72e969735" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "788c7656-8fcb-4d61-aa4a-d5bcc2d203ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "1d81c2f7-128b-498d-b4da-baefb7053fb9" ], + "x-ms-request-id": [ "6b1239d9-cec8-4cf5-a247-9ee41d2b6ac4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/263ecf40-1e4b-4310-8ed4-9fc466a0ac1a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83282032-e166-4fca-8bc9-5e2adb1900ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "88e093c2-7772-406a-bb6f-8363d61b0b34" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:88e093c2-7772-406a-bb6f-8363d61b0b34" ], + "x-ms-correlation-request-id": [ "c882b808-430a-4a66-8f30-550fa9f5d51b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084222Z:c882b808-430a-4a66-8f30-550fa9f5d51b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45CCC5B885AA4FF3A05A2B658329F06F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4A149645BF8424F8A8C7D9FA6168D39 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "7ac20833-b35e-4513-bd05-13f3a196e2a3" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "a3c91f6a-a2c6-450b-8958-c888abf4db3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "495e22a3-35d3-46d6-aa00-9c2a7958ce2f" ], + "x-ms-request-id": [ "a95db356-b604-443c-a6c6-807ba718040a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4896dcb3-6b91-4deb-8940-29192fea7ba2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/647980e4-fd6c-4d74-8ef0-3546844fed7f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16d446ac-f70f-4b86-a84c-69eb0f449c27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062242Z:16d446ac-f70f-4b86-a84c-69eb0f449c27" ], + "x-ms-correlation-request-id": [ "8baf92e1-9b54-4372-b8d6-66d3f1f866a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084222Z:8baf92e1-9b54-4372-b8d6-66d3f1f866a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7777F6F4114C48708A84856130795016 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:42Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 417BA2475B364D098DA4CFABC6119E35 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "f9fff9e8-8b9b-4391-b557-a28905cc1d7a" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "21482d9f-6a8a-43f4-9456-0cd97ee387b3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "6b893cca-95b6-40a3-b523-94a7098aa330" ], + "x-ms-request-id": [ "3fa6d659-9a61-4e2e-af9d-ea4f85dc5dd2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feb7390c-ab4a-41f0-bc6d-5e600c5c88b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bdfc941-3dbc-4e99-aa45-9f86f152db7a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "2a9e050b-b7ad-4215-ae66-0782114e2895" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062243Z:2a9e050b-b7ad-4215-ae66-0782114e2895" ], + "x-ms-correlation-request-id": [ "a88ad368-70fd-4577-a986-daee0c8f3d59" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084223Z:a88ad368-70fd-4577-a986-daee0c8f3d59" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB6EED499CC841E8BE14F25ED18CD6AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6DF83CDF8260470BB9214BDD3E3A716B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:22Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,19 +5236,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "87f84b5b-db62-4384-a2f7-472fcfb4318c" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "f004c501-cac1-467a-aa56-165a87630b27" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5259,42 +5259,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51EF34D40\"" ], + "ETag": [ "\"1DC4FC26FEA1355\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c6382b8-e086-48cb-a8db-70ef648465f3" ], + "x-ms-request-id": [ "99125c8f-e052-4b31-8566-3fc85d6a4092" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ceaca353-3da5-4147-b5f6-0fe1a03e22ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062243Z:ceaca353-3da5-4147-b5f6-0fe1a03e22ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], + "x-ms-correlation-request-id": [ "f1e2b0ab-078a-4a30-9ab6-c3500859f997" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084257Z:f1e2b0ab-078a-4a30-9ab6-c3500859f997" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62B1B8EE1E7A49EDBD53ADBC583D92D5 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:43Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 789706F69F7143B1B2C774BA49E6381D Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:23Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8750" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:43.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:23.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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "726" ], - "x-ms-client-request-id": [ "647df6d8-abc4-4e54-b8fa-1651fb9f7516" ], + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "e3c07ab9-cb0d-4817-8512-6bf99bce0291" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "a51ca6c6-8419-4792-a887-899c8522da83" ], + "x-ms-request-id": [ "cfaa63c4-a443-42ac-b534-ee68e5ab87e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d09987a7-c4be-47c1-be41-c249c5ba56fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3559727-0489-4904-9c28-ee7750a1c1f9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5c935d9a-9a0b-43a7-b6e0-6814dc700822" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:5c935d9a-9a0b-43a7-b6e0-6814dc700822" ], + "x-ms-correlation-request-id": [ "409a30db-0a06-488e-8bc8-606ce0deed86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084257Z:409a30db-0a06-488e-8bc8-606ce0deed86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0C649B3D53D41439556A3150E0CED04 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FF2DF516DF1414C92C1FBC8A60A11F9 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "acac4779-3c59-495e-a0df-96f31af9750d" ], + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "6b858c25-bcb5-48b6-9206-518f7eef22d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "5d344d36-f9e8-4de4-8950-10ad55a934b7" ], + "x-ms-request-id": [ "009da21a-1a24-48bb-bab6-01d844b20897" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/86c2814d-8fdf-451f-9202-39c501100e71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ca1d482f-88a4-457c-bbbd-82416cd63e92" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2feb026a-9f7e-44c0-8b5c-486c27702297" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:2feb026a-9f7e-44c0-8b5c-486c27702297" ], + "x-ms-correlation-request-id": [ "eebfd481-24e9-405c-9ccc-6cede60afda6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084257Z:eebfd481-24e9-405c-9ccc-6cede60afda6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87D80C0707474E77B1FB6566469FBA2C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7D501B50CCA4A8086502CB53911A2DC Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:57Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "f518f77e-e118-4768-86e8-8ee654059c0a" ], + "x-ms-unique-id": [ "734" ], + "x-ms-client-request-id": [ "41e6e793-b966-4eed-812e-aaa204d8e734" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5396,42 +5396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E51EF34D40\"" ], + "ETag": [ "\"1DC4FC26FEA1355\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cecb98fa-2e0b-428e-891b-54c6809685be" ], + "x-ms-request-id": [ "25482256-013c-4b9d-8013-cbbc48420d01" ], "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": [ "0888610f-658c-491a-9da8-a0a6c17fa1a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062244Z:0888610f-658c-491a-9da8-a0a6c17fa1a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bceef192-07f5-49d3-a158-fdc087a61a60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084258Z:bceef192-07f5-49d3-a158-fdc087a61a60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B4F5B23828841C5A610660A331A6CE3 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:44Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF0D0C366D8A4C61AF8E5DE6DCA4B32B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8750" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:43.22\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:23.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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "4e6b3594-7b19-41b3-86e4-65976dfb8f1d" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "c4f68d57-32c4-48e6-8f9e-ac7cc6c9af2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "44f8a11c-6859-4822-a48e-c4999818a065" ], + "x-ms-request-id": [ "a8d53456-c804-4bb1-98f8-864bcf478e4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/773dd879-fc73-4a70-90d8-3472d876f731" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5b7418a-ad13-4c3b-906f-ce3d56041051" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fb2d0eb7-0032-4633-85b5-7ea550f88f87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:fb2d0eb7-0032-4633-85b5-7ea550f88f87" ], + "x-ms-correlation-request-id": [ "4c3ca2f3-8e20-4f5a-9a43-289c36dc53f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084258Z:4c3ca2f3-8e20-4f5a-9a43-289c36dc53f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6C02240CC5A4847B290692615D102DD Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D50254BEC334C46B8B4C49925BB5BAA Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "2a35ab92-736a-467d-992e-baa552dce994" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "f5feb27c-3b5c-4cb1-b3b3-27adebede5b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "32dbce4a-db55-4dbe-b0a5-beb6190e24f2" ], + "x-ms-request-id": [ "35266008-888d-4d09-83a3-42bc501110d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12332f3a-1ca2-4d0b-9e8b-448efa700b5c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1696a2c3-438b-487a-ab30-508fbaa8d7bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:1696a2c3-438b-487a-ab30-508fbaa8d7bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/675abb1a-0bd3-4183-8bd3-544a8c94254d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5f9401a7-5f8c-40d2-8c5a-282931b9f71e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084258Z:5f9401a7-5f8c-40d2-8c5a-282931b9f71e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F716089E5EAC4E448E6049FE22EDB1C4 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1227A1FA019D459BAD03F2A0D9F94FC8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "12fa660f-d243-4477-80b2-713421f48a67" ], + "x-ms-unique-id": [ "737" ], + "x-ms-client-request-id": [ "9a9bb0f8-0fe4-4ec1-b5a6-1b5131ab6603" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "73012e92-76f8-4968-bc69-a2a294dfe725" ], + "x-ms-request-id": [ "76b5c97a-ff4b-4841-88c6-b861f0f313c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8047dbe6-9cb2-4f33-b368-612a2f00f17f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e9414c3b-95bc-441d-a80d-924ed249848e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "412d4952-b9ba-48a5-99a3-5e4764c9a7f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062245Z:412d4952-b9ba-48a5-99a3-5e4764c9a7f6" ], + "x-ms-correlation-request-id": [ "f1bd7fab-152a-41d1-8883-fcfe7966a568" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084259Z:f1bd7fab-152a-41d1-8883-fcfe7966a568" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B80CA01B09024C4D97F2C33E62D51F0D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56316E36AF2B4D37A1A17F641D5BDE39 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:58Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5555,19 +5555,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "1d3dbaf8-550e-4217-b02e-b98d713e5bcd" ], + "x-ms-unique-id": [ "738" ], + "x-ms-client-request-id": [ "f410e658-3d39-4be9-801a-e7259389c0f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5578,42 +5578,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E52074D72B\"" ], + "ETag": [ "\"1DC4FC285327B00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3da46b70-b051-4a8a-aad6-267789f84e0f" ], + "x-ms-request-id": [ "dafe75ce-7ba0-4457-93d3-ad3b4acd16d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e66d5f7-5c61-4356-97c1-0cf3487cf41f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:9e66d5f7-5c61-4356-97c1-0cf3487cf41f" ], + "x-ms-correlation-request-id": [ "442ca17a-2c48-4f3f-bce9-d0284b368c89" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084259Z:442ca17a-2c48-4f3f-bce9-d0284b368c89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 714BF2B4C80D4D0CA55A0BA4743E6490 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:45Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A74FE327F9F43C996B01D2032FB0D41 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8745" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:45.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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:59.12\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "733" ], - "x-ms-client-request-id": [ "eb093b53-5c1e-43db-8037-a4f48f827b83" ], + "x-ms-unique-id": [ "739" ], + "x-ms-client-request-id": [ "e77c609d-6398-4ebf-be81-548c27689a2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "9a869188-f334-4e58-951d-f7ea3b9cf1a8" ], + "x-ms-request-id": [ "e8d938c7-0e49-48cd-affb-1cdac742a7ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e089f891-aaa8-43f0-b389-f8dd81d74250" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/140d9851-85fa-4c99-9f9f-889f42a9634a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "17676ced-cf3e-4e2e-9b8f-81d23d8d781a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:17676ced-cf3e-4e2e-9b8f-81d23d8d781a" ], + "x-ms-correlation-request-id": [ "b94685ee-d517-45ca-885e-b130b81d4015" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084259Z:b94685ee-d517-45ca-885e-b130b81d4015" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A55BAB37477423AB9B0EC2E622B59EF Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCF9C4DE8D8B43F4BC721BA4506B9E5B Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "734" ], - "x-ms-client-request-id": [ "036f2ded-5357-46b6-941b-78b43bcf0cf8" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "a9c4edaa-22a7-4f93-898d-4ec5585f67cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "b3544d7a-51e5-4085-a0da-5e0ad2952fe5" ], + "x-ms-request-id": [ "e0cc51ee-15c3-4ed4-bf96-aa59ccf192e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c90ada4-a8b2-455e-8529-3087510dbdfb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f0e998-c735-4ed1-9bd2-b99c172efbd0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77821385-ab99-441d-854d-3798acbc3245" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062246Z:77821385-ab99-441d-854d-3798acbc3245" ], + "x-ms-correlation-request-id": [ "6565e500-943b-484c-add0-07e85516d673" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084259Z:6565e500-943b-484c-add0-07e85516d673" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DC9A31ECB5D4A34AEDEBC00448B77E6 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD25D53083AC4BA2A4A8C59896E300B5 Ref B: MWH011020808025 Ref C: 2025-11-07T08:42:59Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "bc279508-e78b-412a-a51f-2800217509a9" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "4b8247ad-dbd1-4988-9c39-da964e5ab541" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5715,42 +5715,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E52074D72B\"" ], + "ETag": [ "\"1DC4FC285327B00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3cee528-863e-4f99-bfeb-5f11f0bc2995" ], + "x-ms-request-id": [ "ecb2ee57-0711-4351-9d3a-43227d8970f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fa8b64e-f4b8-41b9-95e8-050b75a74875" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:0fa8b64e-f4b8-41b9-95e8-050b75a74875" ], + "x-ms-correlation-request-id": [ "526394c1-56e8-4b15-9a7c-0a81f7ec478b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084300Z:526394c1-56e8-4b15-9a7c-0a81f7ec478b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93E0BE9FA19D409296CD23B64C067F5C Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:46Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DCD47E9F18D4BBAA80FF6FF71D45EC6 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:42:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8745" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:45.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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:42:59.12\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "57c15b71-9910-4d01-b611-3ff112e307cb" ], + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "ae01b79e-8753-42dc-a8ad-b44532c9daee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "564daf38-6252-4007-a3a5-74dcab966af0" ], + "x-ms-request-id": [ "3b071707-144f-4fe0-9775-25e6ba53738d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ef7059b-b50d-4b66-8b86-c992fedc1e4a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "30c2bd28-9216-44cb-b921-c1806bee90b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:30c2bd28-9216-44cb-b921-c1806bee90b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5c5719e3-deae-4cd8-ad9e-80bc62550db0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "6f349aba-6dcf-4cb5-a3fb-569500922557" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084300Z:6f349aba-6dcf-4cb5-a3fb-569500922557" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDD966988D084B8493D3D999050D892F Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41D7A7484F7B428C8A8F6E890A6DF6F3 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "737" ], - "x-ms-client-request-id": [ "0e8c3cea-2d12-4abb-ba8b-0e09fdfc68ee" ], + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "f2cf84c7-1ccb-442f-a4cf-c8193403578f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "71dda733-4910-4c88-831c-e75005619dbe" ], + "x-ms-request-id": [ "e6178e2f-4dba-4329-afb0-5296e20d466b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1783c6af-6ec9-4492-8031-b4b9e13091be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8d720d0f-ad9a-4efa-8e48-2adee0853e2c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d9a240b8-b9f4-4573-96c8-857f7ffc5dd3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:d9a240b8-b9f4-4573-96c8-857f7ffc5dd3" ], + "x-ms-correlation-request-id": [ "fdb327aa-650e-4c51-995e-75b935582bf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084300Z:fdb327aa-650e-4c51-995e-75b935582bf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFFB08B2C1BF46F299ACF76B07E6E2AE Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EEA70A664DBA4F29ACABF050074AE983 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "738" ], - "x-ms-client-request-id": [ "4cdad3b9-38b8-4590-96e0-6ca60d0294b8" ], + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "fef1f7de-0afa-45ad-8e96-6091cc9c1202" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "4861dc87-fe9e-42c3-b2b8-10ca847ada5c" ], + "x-ms-request-id": [ "6b3fdc8a-ce31-4d11-9b05-ff88364bcaea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96ef8a2a-95f9-4edd-b4ee-ecb1371ac589" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad08abf2-c8a8-46e7-b6bd-a095f58b1eec" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b3f955f7-bd04-43ed-8564-9585a08fab85" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062247Z:b3f955f7-bd04-43ed-8564-9585a08fab85" ], + "x-ms-correlation-request-id": [ "2d960ac1-7471-41b9-b5a9-c7ffc1b54f87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084301Z:2d960ac1-7471-41b9-b5a9-c7ffc1b54f87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0218E03075B640CEBDB27EC9209CC07D Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:47Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C19CE0CF69A49439E88F3C57B8A235D Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:00Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5874,19 +5874,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "739" ], - "x-ms-client-request-id": [ "7035dae3-cd99-4bfa-b080-7ce5dd806e4f" ], + "x-ms-unique-id": [ "745" ], + "x-ms-client-request-id": [ "d6d9e310-84dd-4d21-b64b-a9695e9773f5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5897,42 +5897,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC38E521B7D175\"" ], + "ETag": [ "\"1DC4FC2865D0B4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37a99bac-6a7f-4ccc-b971-bac024db9fe2" ], + "x-ms-request-id": [ "65d82e51-352d-4d7a-b83f-1f308a1a7fa0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0913f108-81f6-49f1-b8de-c520ce8045f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:0913f108-81f6-49f1-b8de-c520ce8045f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "906781f3-4c7f-49bb-9100-df6176162b03" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084301Z:906781f3-4c7f-49bb-9100-df6176162b03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACDC3283605240BA9DC3E80901419206 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1B3B1A5F5E048A38850A6ACEF65E7A2 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8226" ], + "Content-Length": [ "8750" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-310-edsbh6\",\"state\":\"Running\",\"hostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-pxiydk-CentralUSwebspace-Linux/sites/Functions-Python-310-edsbh6\",\"repositorySiteName\":\"Functions-Python-310-edsbh6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-310-edsbh6.azurewebsites.net\",\"functions-python-310-edsbh6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.10\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-310-edsbh6.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-310-edsbh6.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-pxiydk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-10-09T06:22:47.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\":\"Python|3.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":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-310-edsbh6\",\"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-310-edsbh6\\\\$Functions-Python-310-edsbh6\",\"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-pxiydk\",\"defaultHostName\":\"functions-python-310-edsbh6.azurewebsites.net\",\"slotSwapStatus\":null,\"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\"],\"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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-n6bm1u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-1us9gb-CentralUSwebspace-Linux/sites/Functions-Python-312-n6bm1u\",\"repositorySiteName\":\"Functions-Python-312-n6bm1u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-n6bm1u.azurewebsites.net\",\"functions-python-312-n6bm1u.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-n6bm1u.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-n6bm1u.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-1us9gb/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-07T08:43:01.0766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"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-n6bm1u\",\"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.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-312-n6bm1u\\\\$Functions-Python-312-n6bm1u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"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,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: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: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-Consumption-1us9gb\",\"defaultHostName\":\"functions-python-312-n6bm1u.azurewebsites.net\",\"slotSwapStatus\":null,\"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}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "a2e61a5f-73c9-4d88-aee4-edac65fdbd81" ], + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "d38f7366-d1f2-4733-9196-daffc5336ac0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "0a53f0f6-2c68-4f0b-aa1c-087e471c1732" ], + "x-ms-request-id": [ "2f109020-4e87-48d7-b324-67320f243ae3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7057387b-e47b-4fb9-b4b5-dda25b1c4a7d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58d5ebbc-05e5-48c1-959a-223aca5edd67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b1b032e3-b79e-4e05-8b97-f304ae5c47fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:b1b032e3-b79e-4e05-8b97-f304ae5c47fb" ], + "x-ms-correlation-request-id": [ "869cd27c-6582-4715-9c0b-a5c048cce1c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084301Z:869cd27c-6582-4715-9c0b-a5c048cce1c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 533C5E638C134B04BBA5370D19BEB423 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 468CB53BFB3F4F5291A1C41EFC04BF13 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1224" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/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=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstorageer3;AccountKey=jmV21byLhQXH90xmLr4pIxZQBMzKRZq7sfk7VsgPUU21CDZjeMOuIyoi6MPwR1vNbx9cxpGOrlTo+AStTXh2xA==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-310-edsbh6\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"0e98373f-3747-4ad7-bc01-ccc21cd6dfa6\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=functionslinuxstoragej9e;AccountKey=GLVUIeMvxsAtWmQo87fUZZU3hyXuU+XAHYX0vUO2An3Ti1vCA6qYPF704yE0UL8CJuOFEajxbnws+AStq9ObOg==;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-n6bm1u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=01a4fa1c-5286-4d93-8f3a-e1e02ce6de37;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=5f1d8f2f-9a27-422e-b847-9b56808816cf\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-310-edsbh6\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-n6bm1u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "143e6539-9a05-4d0a-94cd-e7a9cb787400" ], + "x-ms-unique-id": [ "747" ], + "x-ms-client-request-id": [ "a1bbe316-76b0-4f2d-bf4f-0b60290d32c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.3", "Az.Functions/4.2.1" ], + "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/4.2.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": [ "deb4d390-6fa1-4f56-aa54-3bc5ae9c35a2" ], + "x-ms-request-id": [ "89b0da13-610e-4087-8d78-4ef545afaf32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b44af3b-ad82-4bc9-abf2-a2ee39fc42dc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "300668a9-6a34-49e6-9b45-63a3c41c1430" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251009T062248Z:300668a9-6a34-49e6-9b45-63a3c41c1430" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e69d0c8-48a0-4180-8493-72acb21ba3e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "ec408051-39a0-48ce-bead-43cd0cc74095" ], + "x-ms-routing-request-id": [ "CENTRALUS:20251107T084301Z:ec408051-39a0-48ce-bead-43cd0cc74095" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D152571734B482D9D4AA105DB864E57 Ref B: CO6AA3150217027 Ref C: 2025-10-09T06:22:48Z" ], - "Date": [ "Thu, 09 Oct 2025 06:22:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C4700BD13C54716AAA20C12CD972AA8 Ref B: MWH011020808025 Ref C: 2025-11-07T08:43:01Z" ], + "Date": [ "Fri, 07 Nov 2025 08:43: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-pxiydk/providers/Microsoft.Web/sites/Functions-Python-310-edsbh6/config/web\",\"name\":\"Functions-Python-310-edsbh6\",\"type\":\"Microsoft.Web/sites/config\",\"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.10\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":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-1us9gb/providers/Microsoft.Web/sites/Functions-Python-312-n6bm1u/config/web\",\"name\":\"Functions-Python-312-n6bm1u\",\"type\":\"Microsoft.Web/sites/config\",\"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 352c7acf25b7..edbd700f8cd1 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,97 +1,133 @@ { - "functionNamePython": "Functions-Python-jcai4tloxm", - "functionNamePowerShell": "Functions-PowerShellTest-8l0a19iyrf", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-fj26xp", - "storageAccountLinux": "functionslinuxstorageer3", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-n8vg16", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-1wzf2c", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-fkz710", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-u4rnvi", + "functionNameCustomHandler": "Functions-CustomHandlertwp2s9of3r", "servicePlansToCreate": [ { - "MaximumWorkerCount": 10, "WorkerType": "Windows", + "ResourceGroupName": "Functions-Test-Windows-Premium-a7inyz", + "Name": "Functions-Windows-Premium-1wzf2c", "MinimumWorkerCount": 1, - "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", - "Sku": "EP1", - "Name": "Functions-Windows-Premium-fj26xp", - "Location": "central us" + "Location": "central us", + "MaximumWorkerCount": 10, + "Sku": "EP1" }, { - "MaximumWorkerCount": 10, "WorkerType": "Linux", + "ResourceGroupName": "Functions-Test-Linux-Premium-0a1x3e", + "Name": "Functions-Linux-Premium-u4rnvi", "MinimumWorkerCount": 1, - "ResourceGroupName": "Functions-Test-Linux-Premium-xa1y0o", - "Sku": "EP1", - "Name": "Functions-Linux-Premium-g2ifkz", - "Location": "central us" + "Location": "central us", + "MaximumWorkerCount": 10, + "Sku": "EP1" } ], - "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-5f2nspxwh0", - "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-mj4vdfk5w1", - "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-w41plh08gr", - "functionNameNode": "Functions-Node-5ys83coe4k", - "functionNameContainer": "Functions-CustomImage-6qbcpwifmx", - "functionAppTestPlanName": "Functions-MyTestPlan1-nxw8ub1gsy", - "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-2rjs9k", - "functionAppPlanName": "Functions-MyPlan-63e1nwqpyr", - "functionNameDotNetIsolated": "Functions-DotNet-Isolated279k80n3oe", + "functionNameContainer": "Functions-CustomImage-kwj3tq4zua", + "storageAccountLinux": "functionslinuxstoragej9e", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-cev8lsnbd7", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-0a1x3e", + "functionNamePowerShell": "Functions-PowerShellTest-hup7w2scx4", + "functionNameNode": "Functions-Node-nihrl65d71", + "location": "central us", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-vb54yz", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-4snvfc", + "functionAppTestPlanName": "Functions-MyTestPlan1-u7b6w4m8it", + "functionNameDotNet": "Functions-DotNet-yvmb5achgj", + "functionAppPlanName": "Functions-MyPlan-ubt70dlsjc", + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-1us9gb", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-a7inyz", "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-traz67wuyp", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-g2ifkz", + "functionAppTestPlanName2": "Functions-MyTestPlan2-e83lkdz4bu", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "functionNameTestApp": "Functions-TestAppName-xwq3uydkht", + "newApplInsights": { + "AppId": "9160be7f-3d91-4e74-a7f7-2247652fdbe4", + "ApplicationId": "Functions-PowerShellTest-hup7w2scx4-new", + "ApplicationType": {}, + "ConnectionString": "InstrumentationKey=89d1c388-71d0-4c76-b7b8-b0f15ebf1303;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=9160be7f-3d91-4e74-a7f7-2247652fdbe4", + "CreationDate": "2025-11-07T08:07:08.5767539Z", + "DisableIPMasking": null, + "DisableLocalAuth": null, + "Etag": "\"d20362c7-0000-0300-0000-690da8b10000\"", + "FlowType": {}, + "ForceCustomerStorageForProfiler": null, + "HockeyAppId": null, + "HockeyAppToken": null, + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-a7inyz/providers/microsoft.insights/components/Functions-PowerShellTest-hup7w2scx4-new", + "ImmediatePurgeDataOn30Day": null, + "IngestionMode": {}, + "InstrumentationKey": "89d1c388-71d0-4c76-b7b8-b0f15ebf1303", + "Kind": "web", + "LaMigrationDate": null, + "Location": "centralus", + "Name": "Functions-PowerShellTest-hup7w2scx4-new", + "PrivateLinkScopedResource": null, + "PropertiesName": "Functions-PowerShellTest-hup7w2scx4-new", + "ProvisioningState": "Succeeded", + "PublicNetworkAccessForIngestion": {}, + "PublicNetworkAccessForQuery": {}, + "RequestSource": {}, + "ResourceGroupName": "Functions-Test-Windows-Premium-a7inyz", + "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-hup7w2scx4-new_9160be7f-3d91-4e74-a7f7-2247652fdbe4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-hup7w2scx4-new-ws" + }, + "functionNameJava": "Functions-Java-ge0rjbhmz4", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-c8srqjgdz9", "functionAppsToCreate": [ { - "PlanName": "Functions-Windows-Premium-fj26xp", - "Runtime": "PowerShell", - "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", - "OSType": "Windows", + "Name": "Functions-PowerShell-74-7o3paq", "RuntimeVersion": "7.4", - "Name": "Functions-PowerShell-74-6qf9o2", + "OSType": "Windows", + "PlanName": "Functions-Windows-Premium-1wzf2c", "FunctionsVersion": 4, - "StorageAccountName": "functionswinstorage6aw" + "Runtime": "PowerShell", + "ResourceGroupName": "Functions-Test-Windows-Premium-a7inyz", + "StorageAccountName": "functionswinstoragebv8" }, { - "PlanName": "Functions-Linux-Premium-g2ifkz", - "Runtime": "Node", - "ResourceGroupName": "Functions-Test-Linux-Premium-xa1y0o", - "OSType": "Linux", + "Name": "Functions-Node-22-hjkt2c", "RuntimeVersion": 22, - "Name": "Functions-Node-22-h8c4uv", + "OSType": "Linux", + "PlanName": "Functions-Linux-Premium-u4rnvi", "FunctionsVersion": 4, - "StorageAccountName": "functionslinuxstorageer3" + "Runtime": "Node", + "ResourceGroupName": "Functions-Test-Linux-Premium-0a1x3e", + "StorageAccountName": "functionslinuxstoragej9e" }, { + "Name": "Functions-DotNet-8-3ohq2r", + "RuntimeVersion": 8, + "OSType": "Windows", "FunctionsVersion": 4, "Runtime": "DotNet", - "ResourceGroupName": "Functions-Test-Windows-Consumption-m4501w", - "OSType": "Windows", - "RuntimeVersion": 6, "Location": "central us", - "Name": "Functions-DotNet-6-dnrk0q", - "StorageAccountName": "functionswinstorage6aw" + "ResourceGroupName": "Functions-Test-Windows-Consumption-z05kh6", + "StorageAccountName": "functionswinstoragebv8" }, { + "Name": "Functions-Python-312-n6bm1u", + "RuntimeVersion": "3.12", + "OSType": "Linux", "FunctionsVersion": 4, "Runtime": "Python", - "ResourceGroupName": "Functions-Test-Linux-Consumption-pxiydk", - "OSType": "Linux", - "RuntimeVersion": "3.10", "Location": "central us", - "Name": "Functions-Python-310-edsbh6", - "StorageAccountName": "functionslinuxstorageer3" + "ResourceGroupName": "Functions-Test-Linux-Consumption-1us9gb", + "StorageAccountName": "functionslinuxstoragej9e" } ], - "functionNameTestApp": "Functions-TestAppName-4xrbthc6ij", - "location": "central us", - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-m4501w", - "functionNameDotNet": "Functions-DotNet-8ae9thv0pn", - "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-jndk42cwv8", - "functionNameJava": "Functions-Java-n63k2zl8s1", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-z05kh6", "identityInfo": { - "ClientId": "ffbc5610-670b-41a5-94f2-bb3c73361aa7", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-n8vg16/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "ClientId": "1a0c853d-3138-4dd9-b60d-89a9a9ebb0a0", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-a7inyz/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "c2200af7-beb7-41c3-9e4e-a544c65ffb2a", - "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", + "PrincipalId": "1716ca65-4acb-41b3-88ca-e2d918be5a48", + "ResourceGroupName": "Functions-Test-Windows-Premium-a7inyz", "SystemData": { "CreatedAt": null, "CreatedBy": null, @@ -110,46 +146,10 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-xa1y0o", - "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-vno1b5", - "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-b61uaq", - "newApplInsights": { - "AppId": "603deece-4203-4054-8737-3eb13240769c", - "ApplicationId": "Functions-PowerShellTest-8l0a19iyrf-new", - "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=0b0b7d15-e1d4-4048-9377-05b413368051;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=603deece-4203-4054-8737-3eb13240769c", - "CreationDate": "2025-10-09T05:40:28.0183363Z", - "DisableIPMasking": null, - "DisableLocalAuth": null, - "Etag": "\"69009bd4-0000-0300-0000-68e74ad30000\"", - "FlowType": {}, - "ForceCustomerStorageForProfiler": null, - "HockeyAppId": null, - "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-n8vg16/providers/microsoft.insights/components/Functions-PowerShellTest-8l0a19iyrf-new", - "ImmediatePurgeDataOn30Day": null, - "IngestionMode": {}, - "InstrumentationKey": "0b0b7d15-e1d4-4048-9377-05b413368051", - "Kind": "web", - "LaMigrationDate": null, - "Location": "centralus", - "Name": "Functions-PowerShellTest-8l0a19iyrf-new", - "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShellTest-8l0a19iyrf-new", - "ProvisioningState": "Succeeded", - "PublicNetworkAccessForIngestion": {}, - "PublicNetworkAccessForQuery": {}, - "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-n8vg16", - "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-8l0a19iyrf-new_603deece-4203-4054-8737-3eb13240769c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-8l0a19iyrf-new-ws" - }, - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-pxiydk", - "functionNameCustomHandler": "Functions-CustomHandlerlk9q0p4fot", - "storageAccountWindows": "functionswinstorage6aw", - "functionAppTestPlanName2": "Functions-MyTestPlan2-j1ct3mxi76" + "functionNamePython": "Functions-Python-ohwj1te7lf", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-7enhzr3v45", + "storageAccountWindows": "functionswinstoragebv8", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-wktb3qxrdy", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-1f3z95rjxc", + "functionNameDotNetIsolated": "Functions-DotNet-Isolated5ot0916drm" } From 6060fe66b24c044661d21a680a0f559b7d929536 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:21:28 -0800 Subject: [PATCH 64/76] Add Get-AzFunctionAppAvailableLocation examples for Flex Consumption --- .../Get-AzFunctionAppAvailableLocation.md | 95 ++++++++++++++++++- 1 file changed, 94 insertions(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md index dc9a87911a89..ce8024167cbd 100644 --- a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md @@ -124,4 +124,97 @@ Switzerland North Germany West Central ``` -This command gets the locations where Consumption is available for Windows. \ No newline at end of file +This command gets the locations where Consumption is available for Windows. + +### Example 4: Get the locations where Flex Consumption is available + +Currently, Flex Consumption is supported only on Linux. To retrieve the list of regions, set the PlanType parameter to 'FlexConsumption'. The OSType parameter is optional; however, the cmdlet will return an error if OSType is set to 'Windows'. + + +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption +``` + +```output +Name +---- +Canada Central +North Europe +West Europe +Southeast Asia +East Asia +West US +Japan West +Japan East +East US 2 +North Central US +South Central US +Brazil South +Australia East +Australia Southeast +Central US +East US +North Central US (Stage) +Central India +South India +Canada East +West Central US +West US 2 +UK West +UK South +East US 2 EUAP +Korea Central +France South +France Central +South Africa North +Switzerland North +Germany West Central +Switzerland West +UAE North +Norway East +West US 3 +Sweden Central +Poland Central +Italy North +Israel Central +Spain Central +Mexico Central +Taiwan North +Taiwan Northwest +New Zealand North +Indonesia Central +Malaysia West +``` + +This command gets the locations where Flex Consumption is available. + +# Example 5: Get the locations where Flex Consumption supports Zone Redundancy + +Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. Note that zone redundancy is currently supported only for Flex Consumption. + +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption -ZoneRedundant +``` + +```output +Name +---- +Canada Central +Southeast Asia +East Asia +Australia East +East US +Central India +UK South +East US 2 EUAP +South Africa North +Germany West Central +UAE North +Norway East +West US 3 +Sweden Central +Italy North +Israel Central +``` + +This command retrieves the locations where Flex Consumption is available and zone redundancy is supported. From bd9287144cdb35ae85b73a37cfbc0add8e93c299 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:23:39 -0800 Subject: [PATCH 65/76] Add New-AzFunctionApp examples for Flex Consumption --- .../examples/New-AzFunctionApp.md | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/Functions/Functions.Autorest/examples/New-AzFunctionApp.md b/src/Functions/Functions.Autorest/examples/New-AzFunctionApp.md index cc9740fa5c5d..9d3a4a660a4d 100644 --- a/src/Functions/Functions.Autorest/examples/New-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/examples/New-AzFunctionApp.md @@ -23,7 +23,7 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` This command creates a PowerShell function app which will be hosted in a service plan. -### Example 3: Create a function app using a using a private ACR image. +### Example 3: Create a function app using a private ACR image. Note that the service plan and storage account must exist before this operation. @@ -35,9 +35,9 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -DockerImageName myacr.azurecr.io/myimage:tag ``` -This command creates a function app using a using a private ACR image. +This command creates a function app using a private ACR image. -### Example 4: Create a function app on container app. +### Example 4: Create a function app on a container app. ```powershell New-AzFunctionApp -Name MyUniqueFunctionAppName ` @@ -47,4 +47,16 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -WorkloadProfileName MyWorkloadProfileName ``` -This command create a function app on container app using the default .Net image. \ No newline at end of file +This command creates a function app on a container app using the default .NET image. + +### Example 5: Create a PowerShell function app hosted in a Flex Consumption plan. + +```powershell +New-AzFunctionApp -Name MyUniqueFunctionAppName ` + -ResourceGroupName MyResourceGroupName ` + -FlexConsumptionLocation LocationWhereFlexConsumptionIsSupported ` + -StorageAccountName MyStorageAccountName ` + -Runtime PowerShell +``` + +This command creates a PowerShell function app hosted in a Flex Consumption plan. From 9968589338459f6964cb5abfe07c283d2166202a Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:24:07 -0800 Subject: [PATCH 66/76] Add Get-AzFunctionAppFlexConsumptionRuntime examples --- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md diff --git a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md new file mode 100644 index 000000000000..38a871b0200a --- /dev/null +++ b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -0,0 +1,81 @@ +### Example 1: Get all supported runtimes for Flex Consumption in a specific location. + +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +dotnet-isolated 10.0 False 11/9/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 9.0 False 5/11/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 8.0 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 22 True 4/29/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 20 False 4/29/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 21 False 8/31/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 17 True 8/31/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +powershell 7.4 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +custom 1.0 False @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves all available runtimes and their versions for Flex Consumption function apps in the East Asia region. Supported runtimes include: dotnet-isolated, node, java, powershell, python, and custom. + +### Example 2: Get all supported versions for a specific runtime. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves all supported Python versions for Flex Consumption function apps in the East Asia region. + +### Example 3: Get the default or latest runtime version. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'east asia' -Runtime PowerShell -DefaultOrLatest +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves the default PowerShell version for Flex Consumption function apps in the East Asia region. Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. + +### Example 4: Get the default or latest runtime version. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -DefaultOrLatest +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +powershell 7.4 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command validates that PowerShell 7.4 is supported for Flex Consumption function apps in the East Asia region and retrieves its details. + +### Example 4: Get a specific runtime version. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -Version 3.12 +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves the default Python version for Flex Consumption function apps in the East Asia region. Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. + From 4e858c86689fda53e10f847de356682cc1e012dc Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sun, 9 Nov 2025 20:40:09 -0800 Subject: [PATCH 67/76] Update examples --- .../Get-AzFunctionAppFlexConsumptionRuntime.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md index 38a871b0200a..2df3eea3e9d9 100644 --- a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md +++ b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -40,7 +40,7 @@ python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Ob This command retrieves all supported Python versions for Flex Consumption function apps in the East Asia region. -### Example 3: Get the default or latest runtime version. +### Example 3: Get the default or latest runtime version for PowerShell. ```powershell Get-AzFunctionAppFlexConsumptionRuntime -Location 'east asia' -Runtime PowerShell -DefaultOrLatest ``` @@ -53,19 +53,6 @@ python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Ob This command retrieves the default PowerShell version for Flex Consumption function apps in the East Asia region. Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. -### Example 4: Get the default or latest runtime version. -```powershell -Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -DefaultOrLatest -``` - -```output -Name Version IsDefault EndOfLifeDate Sku ----- ------- --------- ------------- --- -powershell 7.4 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} -``` - -This command validates that PowerShell 7.4 is supported for Flex Consumption function apps in the East Asia region and retrieves its details. - ### Example 4: Get a specific runtime version. ```powershell Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -Version 3.12 @@ -77,5 +64,5 @@ Name Version IsDefault EndOfLifeDate Sku python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} ``` -This command retrieves the default Python version for Flex Consumption function apps in the East Asia region. Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. +This command validates that Python 3.12 is supported for Flex Consumption function apps in the East Asia region and retrieves its details. From 978e9abad43b2432df4e5d23b33b749b359539dc Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 01:20:31 -0800 Subject: [PATCH 68/76] Update clean up stage --- .../test/New-AzFunctionApp.FlexConsumption.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 10a4cdbb0a77..c72a1bf132f6 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -162,8 +162,8 @@ Describe 'New-AzFunctionApp - Flex Consumption' { Write-Verbose "Removing resource group: $flexResourceGroupName" -Verbose # After recording the tests, use -Force to avoid prompt during cleanup - #Remove-AzResourceGroup -Name $flexResourceGroupName -Force - Remove-AzResourceGroup -Name $flexResourceGroupName -Force -ErrorAction SilentlyContinue + #Remove-AzResourceGroup -Name $flexResourceGroupName -Force -ErrorAction SilentlyContinue + Remove-AzResourceGroup -Name $flexResourceGroupName -ErrorAction SilentlyContinue Write-Verbose "Done." -Verbose } From 2e3470662eac63ab7b57566f6dda9919b9d3f571 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 12:06:25 -0800 Subject: [PATCH 69/76] Update docs --- .../docs/Get-AzFunctionApp.md | 2 +- .../Get-AzFunctionAppAvailableLocation.md | 110 ++++++++- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 103 +++++++- .../docs/Get-AzFunctionAppPlan.md | 2 +- .../docs/Get-AzFunctionAppSetting.md | 8 +- .../docs/New-AzFunctionApp.md | 226 ++++++++++++++++-- .../docs/New-AzFunctionAppPlan.md | 2 +- .../docs/Remove-AzFunctionApp.md | 6 +- .../docs/Remove-AzFunctionAppPlan.md | 6 +- .../docs/Remove-AzFunctionAppSetting.md | 8 +- .../docs/Restart-AzFunctionApp.md | 6 +- .../docs/Start-AzFunctionApp.md | 6 +- .../docs/Stop-AzFunctionApp.md | 6 +- .../docs/Update-AzFunctionApp.md | 22 +- .../docs/Update-AzFunctionAppPlan.md | 8 +- .../docs/Update-AzFunctionAppSetting.md | 8 +- .../Functions/help/Get-AzFunctionApp.md | 2 +- .../Get-AzFunctionAppAvailableLocation.md | 110 ++++++++- ...Get-AzFunctionAppFlexConsumptionRuntime.md | 108 +++++++-- .../Functions/help/Get-AzFunctionAppPlan.md | 2 +- .../help/Get-AzFunctionAppSetting.md | 7 +- .../Functions/help/New-AzFunctionApp.md | 212 ++++++++++++++-- .../Functions/help/New-AzFunctionAppPlan.md | 2 +- .../Functions/help/Remove-AzFunctionApp.md | 5 +- .../help/Remove-AzFunctionAppPlan.md | 5 +- .../help/Remove-AzFunctionAppSetting.md | 7 +- .../Functions/help/Restart-AzFunctionApp.md | 5 +- .../Functions/help/Start-AzFunctionApp.md | 5 +- .../Functions/help/Stop-AzFunctionApp.md | 5 +- .../Functions/help/Update-AzFunctionApp.md | 17 +- .../help/Update-AzFunctionAppPlan.md | 7 +- .../help/Update-AzFunctionAppSetting.md | 7 +- 32 files changed, 878 insertions(+), 157 deletions(-) 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 1321d03f8ae3..7a349588b70f 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md @@ -14,7 +14,7 @@ Gets the location where a function app for the given os and plan type is availab ``` Get-AzFunctionAppAvailableLocation [[-SubscriptionId] ] [[-PlanType] ] [[-OSType] ] - [[-DefaultProfile] ] [] + [[-DefaultProfile] ] [-ZoneRedundant] [] ``` ## DESCRIPTION @@ -147,6 +147,97 @@ Germany West Central This command gets the locations where Consumption is available for Windows. +### Example 4: Get the locations where Flex Consumption is available +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption +``` + +```output +Name +---- +Canada Central +North Europe +West Europe +Southeast Asia +East Asia +West US +Japan West +Japan East +East US 2 +North Central US +South Central US +Brazil South +Australia East +Australia Southeast +Central US +East US +North Central US (Stage) +Central India +South India +Canada East +West Central US +West US 2 +UK West +UK South +East US 2 EUAP +Korea Central +France South +France Central +South Africa North +Switzerland North +Germany West Central +Switzerland West +UAE North +Norway East +West US 3 +Sweden Central +Poland Central +Italy North +Israel Central +Spain Central +Mexico Central +Taiwan North +Taiwan Northwest +New Zealand North +Indonesia Central +Malaysia West +``` + +This command gets the locations where Flex Consumption is available. + +### Example 5: Get the locations where Flex Consumption supports Zone Redundancy + +Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. +To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. +Note that zone redundancy is currently supported only for Flex Consumption. + +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption -ZoneRedundant +``` + +```output +Name +---- +Canada Central +Southeast Asia +East Asia +Australia East +East US +Central India +UK South +East US 2 EUAP +South Africa North +Germany West Central +UAE North +Norway East +West US 3 +Sweden Central +Italy North +Israel Central +``` + +This command retrieves the locations where Flex Consumption is available and zone redundancy is supported. + ## PARAMETERS ### -DefaultProfile @@ -210,6 +301,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ZoneRedundant +Filter the list to return only locations which support zone redundancy. + +```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 +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -217,7 +323,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-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md index 0dbb21b2b90f..e3fc465b4bc3 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -12,8 +12,25 @@ Gets the Flex Consumption function app runtimes supported at the specified locat ## SYNTAX +### AllRuntimes (Default) ``` -Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [-Version ] +Get-AzFunctionAppFlexConsumptionRuntime -Location [] +``` + +### AllVersions +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [] +``` + +### ByVersion +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime -Version + [] +``` + +### DefaultOrLatest +``` +Get-AzFunctionAppFlexConsumptionRuntime -DefaultOrLatest -Location -Runtime [] ``` @@ -22,30 +39,92 @@ Gets the Flex Consumption function app runtimes supported at the specified locat ## EXAMPLES -### Example 1: {{ Add title here }} +### Example 1: Get all supported runtimes for Flex Consumption in a specific location. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +dotnet-isolated 10.0 False 11/9/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 9.0 False 5/11/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 8.0 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 22 True 4/29/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 20 False 4/29/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 21 False 8/31/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 17 True 8/31/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +powershell 7.4 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +custom 1.0 False @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves all available runtimes and their versions for Flex Consumption function apps in the East Asia region. +Supported runtimes include: dotnet-isolated, node, java, powershell, python, and custom. + +### Example 2: Get all supported versions for a specific runtime. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves all supported Python versions for Flex Consumption function apps in the East Asia region. + +### Example 3: Get the default or latest runtime version for PowerShell. ```powershell -{{ Add code here }} +Get-AzFunctionAppFlexConsumptionRuntime -Location 'east asia' -Runtime PowerShell -DefaultOrLatest ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} ``` -{{ Add description here }} +This command retrieves the default PowerShell version for Flex Consumption function apps in the East Asia region. +Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. -### Example 2: {{ Add title here }} +### Example 4: Get a specific runtime version. ```powershell -{{ Add code here }} +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -Version 3.12 ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} ``` -{{ Add description here }} +This command validates that Python 3.12 is supported for Flex Consumption function apps in the East Asia region and retrieves its details. ## PARAMETERS +### -DefaultOrLatest +Get the default or latest version of the specified runtime. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: DefaultOrLatest +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The location where Flex Consumption function apps are supported. @@ -66,7 +145,7 @@ The Flex Consumption function app runtime. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: AllVersions, ByVersion, DefaultOrLatest Aliases: Required: True @@ -81,10 +160,10 @@ The function app runtime version. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByVersion Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False 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..9364db90238f 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md @@ -54,10 +54,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ```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 06dbf5d62768..a957cf6a1c25 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md @@ -17,9 +17,8 @@ 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] [] + [-IdentityType ] [-OSType ] [-PassThru] [-RuntimeVersion ] [-SubscriptionId ] + [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### ByAppServicePlan @@ -27,31 +26,41 @@ New-AzFunctionApp -Location -Name -ResourceGroupName New-AzFunctionApp -Name -PlanName -ResourceGroupName -Runtime -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] [-AppSetting ] [-DisableApplicationInsights] [-FunctionsVersion ] [-IdentityID ] - [-IdentityType ] [-OSType ] [-PassThru] [-RuntimeVersion ] - [-SubscriptionId ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] - [-WhatIf] [] + [-IdentityType ] [-OSType ] [-PassThru] [-RuntimeVersion ] [-SubscriptionId ] + [-Tag ] [-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 ] [-DisableApplicationInsights] [-IdentityID ] [-IdentityType ] + [-PassThru] [-RegistryCredential ] [-SubscriptionId ] [-Tag ] + [-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 ] [-DisableApplicationInsights] [-IdentityID ] [-IdentityType ] + [-Image ] [-PassThru] [-RegistryCredential ] [-RegistryServer ] + [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] + [-SubscriptionId ] [-Tag ] [-WorkloadProfileName ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### FlexConsumption +``` +New-AzFunctionApp -FlexConsumptionLocation -Name -ResourceGroupName + -Runtime -StorageAccountName [-AlwaysReady ] + [-ApplicationInsightsKey ] [-ApplicationInsightsName ] [-AppSetting ] + [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] + [-DeploymentStorageContainerName ] [-DeploymentStorageName ] [-DisableApplicationInsights] + [-EnableZoneRedundancy] [-HttpPerInstanceConcurrency ] [-IdentityID ] + [-IdentityType ] [-InstanceMemoryMB ] [-MaximumInstanceCount ] [-PassThru] + [-RuntimeVersion ] [-SubscriptionId ] [-Tag ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -81,7 +90,7 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` This command creates a PowerShell function app which will be hosted in a service plan. -### Example 3: Create a function app using a using a private ACR image. +### Example 3: Create a function app using a private ACR image. ```powershell New-AzFunctionApp -Name MyUniqueFunctionAppName ` -ResourceGroupName MyResourceGroupName ` @@ -90,9 +99,9 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -DockerImageName myacr.azurecr.io/myimage:tag ``` -This command creates a function app using a using a private ACR image. +This command creates a function app using a private ACR image. -### Example 4: Create a function app on container app. +### Example 4: Create a function app on a container app. ```powershell New-AzFunctionApp -Name MyUniqueFunctionAppName ` -ResourceGroupName MyResourceGroupName ` @@ -101,10 +110,42 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -WorkloadProfileName MyWorkloadProfileName ``` -This command create a function app on container app using the default .Net image. +This command creates a function app on a container app using the default .NET image. + +### Example 5: Create a PowerShell function app hosted in a Flex Consumption plan. +```powershell +New-AzFunctionApp -Name MyUniqueFunctionAppName ` + -ResourceGroupName MyResourceGroupName ` + -FlexConsumptionLocation LocationWhereFlexConsumptionIsSupported ` + -StorageAccountName MyStorageAccountName ` + -Runtime PowerShell +``` + +This command creates a PowerShell function app hosted in a Flex Consumption plan. ## PARAMETERS +### -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. + +Example: +@(@{ name = "http"; instanceCount = 2 }). + +```yaml +Type: System.Collections.Hashtable[] +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ApplicationInsightsKey Instrumentation key of App Insights to be added. @@ -180,6 +221,67 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DeploymentStorageAuthType +Deployment storage authentication type. +Allowed values: StorageAccountConnectionString, SystemAssignedIdentity, UserAssignedIdentity + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageAuthValue +Deployment storage authentication value used for the chosen auth type (eg: connection string, or user-assigned identity resource id). + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageContainerName +Deployment storage container name. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageName +Name of deployment storage account to be used for function app artifacts. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableApplicationInsights Disable creating application insights resource during the function app creation. No logs will be available. @@ -196,6 +298,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableZoneRedundancy +Enable zone redundancy for high availability. +Applies to Flex Consumption SKU only. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Environment Name of the container app environment. @@ -211,6 +329,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FlexConsumptionLocation +Location to create Flex Consumption function app. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FunctionsVersion The Functions version. @@ -226,6 +359,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPerInstanceConcurrency +The maximum number of concurrent HTTP trigger invocations per instance. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +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: @@ -250,7 +398,7 @@ Specifies the type of identity used for the function app. - UserAssigned ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.String Parameter Sets: (All) Aliases: @@ -276,6 +424,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InstanceMemoryMB +Per-instance memory in MB for Flex Consumption instances. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The location for the consumption plan. @@ -291,6 +454,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MaximumInstanceCount +Maximum instance count for Flex Consumption. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name of the function app. @@ -451,7 +629,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: ByAppServicePlan, Consumption +Parameter Sets: ByAppServicePlan, Consumption, FlexConsumption Aliases: Required: True @@ -466,7 +644,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: ByAppServicePlan, Consumption +Parameter Sets: ByAppServicePlan, Consumption, FlexConsumption Aliases: Required: False @@ -604,7 +782,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..6d842f8937f2 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md @@ -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..810e352ac46e 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. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -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..fcd1d2a5b25d 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. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -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..91d4b0f68379 100644 --- a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md @@ -84,10 +84,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ```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..d9d4fb638688 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. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -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..378d6a22343e 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. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -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..87ec30a05f3b 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. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -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..4dd228adcff6 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 ] [-Force] [-IdentityID ] [-IdentityType ] + [-PlanName ] [-SubscriptionId ] [-Tag ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] ``` ### ByObjectInput ``` Update-AzFunctionApp -InputObject [-ApplicationInsightsKey ] - [-ApplicationInsightsName ] [-Force] [-IdentityID ] - [-IdentityType ] [-PlanName ] [-Tag ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-ApplicationInsightsName ] [-Force] [-IdentityID ] [-IdentityType ] + [-PlanName ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION @@ -164,7 +164,7 @@ The acceptable values for this parameter are: - None ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.String Parameter Sets: (All) Aliases: @@ -176,10 +176,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -317,11 +317,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..6cab8e823a0c 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md @@ -90,10 +90,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ```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..e6bed35a60dc 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md @@ -85,10 +85,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ```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/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 24e65a00013e..772530ec1eb0 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md @@ -14,7 +14,7 @@ Gets the location where a function app for the given os and plan type is availab ``` Get-AzFunctionAppAvailableLocation [[-SubscriptionId] ] [[-PlanType] ] [[-OSType] ] - [[-DefaultProfile] ] [] + [-ZoneRedundant] [[-DefaultProfile] ] [] ``` ## DESCRIPTION @@ -147,6 +147,97 @@ Germany West Central This command gets the locations where Consumption is available for Windows. +### Example 4: Get the locations where Flex Consumption is available +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption +``` + +```output +Name +---- +Canada Central +North Europe +West Europe +Southeast Asia +East Asia +West US +Japan West +Japan East +East US 2 +North Central US +South Central US +Brazil South +Australia East +Australia Southeast +Central US +East US +North Central US (Stage) +Central India +South India +Canada East +West Central US +West US 2 +UK West +UK South +East US 2 EUAP +Korea Central +France South +France Central +South Africa North +Switzerland North +Germany West Central +Switzerland West +UAE North +Norway East +West US 3 +Sweden Central +Poland Central +Italy North +Israel Central +Spain Central +Mexico Central +Taiwan North +Taiwan Northwest +New Zealand North +Indonesia Central +Malaysia West +``` + +This command gets the locations where Flex Consumption is available. + +### Example 5: Get the locations where Flex Consumption supports Zone Redundancy + +Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. +To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. +Note that zone redundancy is currently supported only for Flex Consumption. + +```powershell +Get-AzFunctionAppavailableLocation -PlanType FlexConsumption -ZoneRedundant +``` + +```output +Name +---- +Canada Central +Southeast Asia +East Asia +Australia East +East US +Central India +UK South +East US 2 EUAP +South Africa North +Germany West Central +UAE North +Norway East +West US 3 +Sweden Central +Italy North +Israel Central +``` + +This command retrieves the locations where Flex Consumption is available and zone redundancy is supported. + ## PARAMETERS ### -DefaultProfile @@ -210,6 +301,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ZoneRedundant +Filter the list to return only locations which support zone redundancy. + +```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 +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -217,7 +323,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-AzFunctionAppFlexConsumptionRuntime.md b/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md index 0dbb21b2b90f..cf5967dd9184 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppFlexConsumptionRuntime.md @@ -1,5 +1,5 @@ --- -external help file: +external help file: Az.Functions-help.xml Module Name: Az.Functions online version: https://learn.microsoft.com/powershell/module/az.functions/get-azfunctionappflexconsumptionruntime schema: 2.0.0 @@ -12,8 +12,27 @@ Gets the Flex Consumption function app runtimes supported at the specified locat ## SYNTAX +### AllRuntimes (Default) ``` -Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [-Version ] +Get-AzFunctionAppFlexConsumptionRuntime -Location + [] +``` + +### AllVersions +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime + [] +``` + +### ByVersion +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime -Version + [] +``` + +### DefaultOrLatest +``` +Get-AzFunctionAppFlexConsumptionRuntime -Location -Runtime [-DefaultOrLatest] [] ``` @@ -22,30 +41,92 @@ Gets the Flex Consumption function app runtimes supported at the specified locat ## EXAMPLES -### Example 1: {{ Add title here }} +### Example 1: Get all supported runtimes for Flex Consumption in a specific location. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +dotnet-isolated 10.0 False 11/9/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 9.0 False 5/11/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +dotnet-isolated 8.0 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 22 True 4/29/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +node 20 False 4/29/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 21 False 8/31/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +java 17 True 8/31/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +powershell 7.4 True 11/9/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +custom 1.0 False @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command retrieves all available runtimes and their versions for Flex Consumption function apps in the East Asia region. +Supported runtimes include: dotnet-isolated, node, java, powershell, python, and custom. + +### Example 2: Get all supported versions for a specific runtime. ```powershell -{{ Add code here }} +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.13 False 10/30/2029 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.11 True 10/30/2027 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +python 3.10 True 10/30/2026 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} ``` -{{ Add description here }} +This command retrieves all supported Python versions for Flex Consumption function apps in the East Asia region. -### Example 2: {{ Add title here }} +### Example 3: Get the default or latest runtime version for PowerShell. ```powershell -{{ Add code here }} +Get-AzFunctionAppFlexConsumptionRuntime -Location 'east asia' -Runtime PowerShell -DefaultOrLatest ``` ```output -{{ Add output here (remove the output block if the example doesn't have an output) }} +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} ``` -{{ Add description here }} +This command retrieves the default PowerShell version for Flex Consumption function apps in the East Asia region. +Use this parameter when you need to determine the default runtime version that will be used if no specific version is provided during function app creation. + +### Example 4: Get a specific runtime version. +```powershell +Get-AzFunctionAppFlexConsumptionRuntime -Location 'East Asia' -Runtime Python -Version 3.12 +``` + +```output +Name Version IsDefault EndOfLifeDate Sku +---- ------- --------- ------------- --- +python 3.12 True 10/30/2028 @{skuCode=FC1; instanceMemoryMB=System.Object[]; maximumInstanceCount=; functionAppConfigProperties=} +``` + +This command validates that Python 3.12 is supported for Flex Consumption function apps in the East Asia region and retrieves its details. ## PARAMETERS +### -DefaultOrLatest +Get the default or latest version of the specified runtime. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: DefaultOrLatest +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The location where Flex Consumption function apps are supported. @@ -66,7 +147,7 @@ The Flex Consumption function app runtime. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: AllVersions, ByVersion, DefaultOrLatest Aliases: Required: True @@ -81,10 +162,10 @@ The function app runtime version. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ByVersion Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -103,4 +184,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - 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..69c441e4c427 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppSetting.md @@ -53,10 +53,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -148,11 +147,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 bebaacae60d4..1d10ca6b71a7 100644 --- a/src/Functions/Functions/help/New-AzFunctionApp.md +++ b/src/Functions/Functions/help/New-AzFunctionApp.md @@ -18,8 +18,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-OSType ] [-RuntimeVersion ] [-FunctionsVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] [-DefaultProfile ] [-NoWait] - [-AsJob] [-WhatIf] [-Confirm] [] + [-IdentityType ] [-IdentityID ] [-DefaultProfile ] [-NoWait] [-AsJob] + [-WhatIf] [-Confirm] [] ``` ### ByAppServicePlan @@ -27,8 +27,21 @@ 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] + [-PassThru] [-Tag ] [-AppSetting ] [-IdentityType ] [-IdentityID ] + -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] + [-WhatIf] [-Confirm] [] +``` + +### FlexConsumption +``` +New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime + [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] + [-RuntimeVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] + [-AppSetting ] [-IdentityType ] [-IdentityID ] -FlexConsumptionLocation + [-DeploymentStorageName ] [-DeploymentStorageContainerName ] + [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] [-AlwaysReady ] + [-MaximumInstanceCount ] [-InstanceMemoryMB ] [-HttpPerInstanceConcurrency ] + [-EnableZoneRedundancy] [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -37,7 +50,7 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] -Environment [-Image ] + [-IdentityType ] [-IdentityID ] -Environment [-Image ] [-RegistryCredential ] [-WorkloadProfileName ] [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] [-RegistryServer ] [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] @@ -49,8 +62,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] -Image - [-RegistryCredential ] -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] + [-IdentityType ] [-IdentityID ] -Image [-RegistryCredential ] + -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -81,7 +94,7 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` This command creates a PowerShell function app which will be hosted in a service plan. -### Example 3: Create a function app using a using a private ACR image. +### Example 3: Create a function app using a private ACR image. ```powershell New-AzFunctionApp -Name MyUniqueFunctionAppName ` -ResourceGroupName MyResourceGroupName ` @@ -90,9 +103,9 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -DockerImageName myacr.azurecr.io/myimage:tag ``` -This command creates a function app using a using a private ACR image. +This command creates a function app using a private ACR image. -### Example 4: Create a function app on container app. +### Example 4: Create a function app on a container app. ```powershell New-AzFunctionApp -Name MyUniqueFunctionAppName ` -ResourceGroupName MyResourceGroupName ` @@ -101,10 +114,42 @@ New-AzFunctionApp -Name MyUniqueFunctionAppName ` -WorkloadProfileName MyWorkloadProfileName ``` -This command create a function app on container app using the default .Net image. +This command creates a function app on a container app using the default .NET image. + +### Example 5: Create a PowerShell function app hosted in a Flex Consumption plan. +```powershell +New-AzFunctionApp -Name MyUniqueFunctionAppName ` + -ResourceGroupName MyResourceGroupName ` + -FlexConsumptionLocation LocationWhereFlexConsumptionIsSupported ` + -StorageAccountName MyStorageAccountName ` + -Runtime PowerShell +``` + +This command creates a PowerShell function app hosted in a Flex Consumption plan. ## PARAMETERS +### -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. + +Example: +@(@{ name = "http"; instanceCount = 2 }). + +```yaml +Type: System.Collections.Hashtable[] +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ApplicationInsightsKey Instrumentation key of App Insights to be added. @@ -179,6 +224,67 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DeploymentStorageAuthType +Deployment storage authentication type. +Allowed values: StorageAccountConnectionString, SystemAssignedIdentity, UserAssignedIdentity + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageAuthValue +Deployment storage authentication value used for the chosen auth type (eg: connection string, or user-assigned identity resource id). + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageContainerName +Deployment storage container name. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeploymentStorageName +Name of deployment storage account to be used for function app artifacts. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DisableApplicationInsights Disable creating application insights resource during the function app creation. No logs will be available. @@ -195,6 +301,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableZoneRedundancy +Enable zone redundancy for high availability. +Applies to Flex Consumption SKU only. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Environment Name of the container app environment. @@ -210,6 +332,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FlexConsumptionLocation +Location to create Flex Consumption function app. + +```yaml +Type: System.String +Parameter Sets: FlexConsumption +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -FunctionsVersion The Functions version. @@ -225,6 +362,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HttpPerInstanceConcurrency +The maximum number of concurrent HTTP trigger invocations per instance. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +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: @@ -249,7 +401,7 @@ Specifies the type of identity used for the function app. - UserAssigned ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.String Parameter Sets: (All) Aliases: @@ -287,6 +439,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InstanceMemoryMB +Per-instance memory in MB for Flex Consumption instances. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The location for the consumption plan. @@ -302,6 +469,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -MaximumInstanceCount +Maximum instance count for Flex Consumption. + +```yaml +Type: System.Int32 +Parameter Sets: FlexConsumption +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name of the function app. @@ -462,7 +644,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: Consumption, ByAppServicePlan +Parameter Sets: Consumption, ByAppServicePlan, FlexConsumption Aliases: Required: True @@ -477,7 +659,7 @@ The function runtime. ```yaml Type: System.String -Parameter Sets: Consumption, ByAppServicePlan +Parameter Sets: Consumption, ByAppServicePlan, FlexConsumption Aliases: Required: False @@ -615,7 +797,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..2679c7a384b6 100644 --- a/src/Functions/Functions/help/New-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/New-AzFunctionAppPlan.md @@ -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/help/Remove-AzFunctionApp.md b/src/Functions/Functions/help/Remove-AzFunctionApp.md index 4e5e00f99c92..1dfbd745c867 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionApp.md +++ b/src/Functions/Functions/help/Remove-AzFunctionApp.md @@ -77,10 +77,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -186,7 +185,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..a72ccf02c9cb 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md @@ -77,10 +77,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -186,7 +185,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..d0df588f5ff3 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md @@ -84,10 +84,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -179,11 +178,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..f02fc5660d04 100644 --- a/src/Functions/Functions/help/Restart-AzFunctionApp.md +++ b/src/Functions/Functions/help/Restart-AzFunctionApp.md @@ -77,10 +77,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -186,7 +185,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..4a713163a889 100644 --- a/src/Functions/Functions/help/Start-AzFunctionApp.md +++ b/src/Functions/Functions/help/Start-AzFunctionApp.md @@ -62,10 +62,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -171,7 +170,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..1eff2a02bdfb 100644 --- a/src/Functions/Functions/help/Stop-AzFunctionApp.md +++ b/src/Functions/Functions/help/Stop-AzFunctionApp.md @@ -77,10 +77,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -186,7 +185,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..6f87b81752c2 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] [] + [-IdentityType ] [-IdentityID ] [-DefaultProfile ] [-NoWait] [-AsJob] + [-WhatIf] [-Confirm] [] ``` ### ByObjectInput ``` Update-AzFunctionApp [-PlanName ] [-Force] [-ApplicationInsightsName ] - [-ApplicationInsightsKey ] [-Tag ] [-IdentityType ] - [-IdentityID ] -InputObject [-DefaultProfile ] [-NoWait] [-AsJob] + [-ApplicationInsightsKey ] [-Tag ] [-IdentityType ] [-IdentityID ] + -InputObject [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -163,7 +163,7 @@ The acceptable values for this parameter are: - None ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.String Parameter Sets: (All) Aliases: @@ -175,10 +175,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -316,11 +315,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..6acb3d89d3f2 100644 --- a/src/Functions/Functions/help/Update-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/Update-AzFunctionAppPlan.md @@ -90,10 +90,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -261,11 +260,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..733d519f2d86 100644 --- a/src/Functions/Functions/help/Update-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Update-AzFunctionAppSetting.md @@ -85,10 +85,9 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -180,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 From 36c8e8dff2cc75554785760daf70a3b09faef530 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 12:10:59 -0800 Subject: [PATCH 70/76] Generate Get-*, New-*, and Remove-* cmdlets to manage AppInsights --- src/helpers/AppInsights/readme.noprofile.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers/AppInsights/readme.noprofile.md b/src/helpers/AppInsights/readme.noprofile.md index 96d21225aadb..67c2bf408778 100644 --- a/src/helpers/AppInsights/readme.noprofile.md +++ b/src/helpers/AppInsights/readme.noprofile.md @@ -73,7 +73,7 @@ This block is updated by an automatic script. Edits may be lost! ``` yaml directive: - where: - verb: Clear|Remove|Set + verb: Clear|Set subject: ^Component$ remove: true - where: @@ -97,7 +97,7 @@ directive: set: subject: AppInsightsApiKey - where: - verb: Get|New + verb: Get|New|Remove subject: ^AppInsights$ hide: true - where: From 58c223f78159f8e720972a25d4d756c62dea744d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 13:54:03 -0800 Subject: [PATCH 71/76] Remove unused code --- .../custom/HelperFunctions.ps1 | 40 +------------------ 1 file changed, 2 insertions(+), 38 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 4e0d62d8fca0..37fda93023bc 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -3201,28 +3201,10 @@ function Test-FlexConsumptionLocation [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] $ZoneRedundant - # , - - # $SubscriptionId, - # $HttpPipelineAppend, - # $HttpPipelinePrepend ) - # $paramsToRemove = @( - # "Location" - # "ZoneRedundant" - # ) - # foreach ($paramName in $paramsToRemove) - # { - # if ($PSBoundParameters.ContainsKey($paramName)) - # { - # $PSBoundParameters.Remove($paramName) | Out-Null - # } - # } - # Validate Flex Consumption location $formattedLocation = Format-FlexConsumptionLocation -Location $Location - #$flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant @PSBoundParameters $flexConsumptionRegions = Get-AzFunctionAppAvailableLocation -PlanType FlexConsumption -ZoneRedundant:$ZoneRedundant $found = $false @@ -3258,26 +3240,8 @@ function Validate-FlexConsumptionLocation [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] $ZoneRedundant - # , - - # $SubscriptionId, - # $HttpPipelineAppend, - # $HttpPipelinePrepend - ) - - # $paramsToRemove = @( - # "Location" - # "ZoneRedundant" - # ) - # foreach ($paramName in $paramsToRemove) - # { - # if ($PSBoundParameters.ContainsKey($paramName)) - # { - # $PSBoundParameters.Remove($paramName) | Out-Null - # } - # } - - #$isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant @PSBoundParameters + ) + $isRegionSupported = Test-FlexConsumptionLocation -Location $Location -ZoneRedundant:$ZoneRedundant if (-not $isRegionSupported) From c0efb531dd2160ae0aba725171212a3fe7b10e0d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 14:28:02 -0800 Subject: [PATCH 72/76] Simplify cleanup logic when app creation fails --- .../Functions.Autorest/custom/New-AzFunctionApp.ps1 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index f58e36bc2610..51a69266dffc 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -507,7 +507,6 @@ Example: $functionAppDef.Location = $Location } - # TODO: Need to move this to the top before any logic for an SKU specific settings are added. if ($OSIsLinux) { # These are the scenarios we currently support when creating a Docker container: @@ -720,7 +719,7 @@ Example: $planName = New-PlanName -ResourceGroupName $ResourceGroupName if ($WhatIfPreference.IsPresent) { - Write-Verbose "WhatIf: Creating Flex Consumption App Service Plan '$planName' in resource group '$ResourceGroupName' at location '$FlexConsumptionLocation'..." -Verbose + Write-Verbose "WhatIf: Creating Flex Consumption App Service Plan '$planName' in resource group '$ResourceGroupName' at location '$FlexConsumptionLocation'..." $planInfo = New-Object PSObject -Property @{ Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/$ResourceGroupName/providers/Microsoft.Web/serverfarms/$planName" } @@ -774,7 +773,7 @@ Example: { if ($WhatIfPreference.IsPresent) { - Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." -Verbose + Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.BlobContainer } else @@ -952,7 +951,7 @@ Example: { if ($WhatIfPreference.IsPresent) { - Write-Verbose "WhatIf: Creating Application Insights '$Name' in resource group '$ResourceGroupName' at location '$($functionAppDef.Location)'..." -Verbose + Write-Verbose "WhatIf: Creating Application Insights '$Name' in resource group '$ResourceGroupName' at location '$($functionAppDef.Location)'..." # Create a mock object for WhatIf to avoid null reference issues $newAppInsightsProject = New-Object PSObject -Property @{ ConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://placeholder.applicationinsights.azure.com/" @@ -1075,7 +1074,7 @@ Example: finally { # Cleanup created resources in case of failure - if (-not $functionAppCreatedSuccessfully -and (-not $WhatIfPreference.IsPresent)) + if (-not $functionAppCreatedSuccessfully) { if ($flexConsumptionPlanCreated) { From d2466d100f1d70dafd1aa857c7e7238d205a30e0 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 14:44:11 -0800 Subject: [PATCH 73/76] Update change log --- src/Functions/Functions/ChangeLog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index b356839f17de..69a624936e1b 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -18,6 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release +* 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 +* Upgraded Az.Functions to Autorest 4.x [#24403] ## Version 4.2.1 * Updated API client to latest commit for version 2023-12-01 From 1b593bfc09f05fc8822c4cebd5e44884f3a04697 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 14:52:56 -0800 Subject: [PATCH 74/76] Fix example header --- .../examples/Get-AzFunctionAppAvailableLocation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md index ce8024167cbd..4d0dd5f2423e 100644 --- a/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions.Autorest/examples/Get-AzFunctionAppAvailableLocation.md @@ -188,7 +188,7 @@ Malaysia West This command gets the locations where Flex Consumption is available. -# Example 5: Get the locations where Flex Consumption supports Zone Redundancy +### Example 5: Get the locations where Flex Consumption supports Zone Redundancy Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. Note that zone redundancy is currently supported only for Flex Consumption. From 56040530eb99271609d752788fe8e5719e7a10a6 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 14:59:30 -0800 Subject: [PATCH 75/76] Update help content --- .../docs/Get-AzFunctionAppAvailableLocation.md | 5 ----- .../Functions/help/Get-AzFunctionAppAvailableLocation.md | 5 ----- 2 files changed, 10 deletions(-) diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md index 7a349588b70f..ca04c606c783 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md @@ -206,11 +206,6 @@ Malaysia West This command gets the locations where Flex Consumption is available. ### Example 5: Get the locations where Flex Consumption supports Zone Redundancy - -Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. -To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. -Note that zone redundancy is currently supported only for Flex Consumption. - ```powershell Get-AzFunctionAppavailableLocation -PlanType FlexConsumption -ZoneRedundant ``` diff --git a/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md index 772530ec1eb0..bf5847bf4124 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md @@ -206,11 +206,6 @@ Malaysia West This command gets the locations where Flex Consumption is available. ### Example 5: Get the locations where Flex Consumption supports Zone Redundancy - -Flex Consumption plans can optionally be zone redundant in regions that support Availability Zones. -To retrieve the list of regions where zone redundancy is available for Flex Consumption, set the PlanType parameter to 'FlexConsumption' and include the ZoneRedundant switch. -Note that zone redundancy is currently supported only for Flex Consumption. - ```powershell Get-AzFunctionAppavailableLocation -PlanType FlexConsumption -ZoneRedundant ``` From 428ace006d123c387311205233b9138e5a4e7583 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Mon, 10 Nov 2025 16:31:09 -0800 Subject: [PATCH 76/76] Add missing required files --- .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 89 +++++++++++++++++-- src/Functions/Functions/Az.Functions.psd1 | 13 +-- 3 files changed, 88 insertions(+), 16 deletions(-) diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 6701694442c3..b67834ff807b 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "410e70a7-ce58-42ce-9ffa-3293609573ee" + "generate_Id": "650d9754-200c-4cf2-9b9f-5bf87e9e04e8" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index 8ced5c4e274f..c6efb0a28298 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 @@ -19,49 +19,119 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Functions.csproj", "{A3D77364-5DA1-4707-B686-6A06395D5AE2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{2BC2B410-BC25-4762-B718-7C2C0B1BF062}" +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", "{533109BC-EB5D-4EFB-9429-1037B36C31E4}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|x64.ActiveCfg = Debug|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|x64.Build.0 = Debug|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|x86.ActiveCfg = Debug|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Debug|x86.Build.0 = Debug|Any CPU {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|Any CPU.ActiveCfg = Release|Any CPU {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|Any CPU.Build.0 = Release|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|x64.ActiveCfg = Release|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|x64.Build.0 = Release|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|x86.ActiveCfg = Release|Any CPU + {CA3E9002-FB36-48C1-AA8A-59463255E592}.Release|x86.Build.0 = Release|Any CPU {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|x64.ActiveCfg = Debug|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|x64.Build.0 = Debug|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|x86.ActiveCfg = Debug|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Debug|x86.Build.0 = Debug|Any CPU {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|Any CPU.ActiveCfg = Release|Any CPU {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|Any CPU.Build.0 = Release|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|x64.ActiveCfg = Release|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|x64.Build.0 = Release|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|x86.ActiveCfg = Release|Any CPU + {B37DA494-2CA2-44C9-AE56-682EE07AA1A1}.Release|x86.Build.0 = Release|Any CPU {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|x64.ActiveCfg = Debug|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|x64.Build.0 = Debug|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|x86.ActiveCfg = Debug|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Debug|x86.Build.0 = Debug|Any CPU {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|Any CPU.ActiveCfg = Release|Any CPU {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|Any CPU.Build.0 = Release|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|x64.ActiveCfg = Release|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|x64.Build.0 = Release|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|x86.ActiveCfg = Release|Any CPU + {5A7DD47E-1BE8-4F53-BE52-F8C0C23793FF}.Release|x86.Build.0 = Release|Any CPU {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|x64.ActiveCfg = Debug|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|x64.Build.0 = Debug|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|x86.ActiveCfg = Debug|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Debug|x86.Build.0 = Debug|Any CPU {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|Any CPU.ActiveCfg = Release|Any CPU {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|Any CPU.Build.0 = Release|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|x64.ActiveCfg = Release|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|x64.Build.0 = Release|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|x86.ActiveCfg = Release|Any CPU + {5B61641B-643D-4ABC-B081-5DE505EA6C04}.Release|x86.Build.0 = Release|Any CPU {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|x64.ActiveCfg = Debug|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|x64.Build.0 = Debug|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|x86.ActiveCfg = Debug|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Debug|x86.Build.0 = Debug|Any CPU {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|Any CPU.ActiveCfg = Release|Any CPU {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|Any CPU.Build.0 = Release|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|x64.ActiveCfg = Release|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|x64.Build.0 = Release|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|x86.ActiveCfg = Release|Any CPU + {B4852E95-CB35-4A86-9E52-7D60A3439A9C}.Release|x86.Build.0 = Release|Any CPU {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|x64.ActiveCfg = Debug|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|x64.Build.0 = Debug|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|x86.ActiveCfg = Debug|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Debug|x86.Build.0 = Debug|Any CPU {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|Any CPU.ActiveCfg = Release|Any CPU {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|Any CPU.Build.0 = Release|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|x64.ActiveCfg = Release|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|x64.Build.0 = Release|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|x86.ActiveCfg = Release|Any CPU + {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD}.Release|x86.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|x64.ActiveCfg = Debug|Any CPU + {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|x64.Build.0 = Debug|Any CPU + {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|x86.ActiveCfg = Debug|Any CPU + {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Debug|x86.Build.0 = Debug|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|Any CPU.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|Any CPU.Build.0 = Release|Any CPU - {2BC2B410-BC25-4762-B718-7C2C0B1BF062}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2BC2B410-BC25-4762-B718-7C2C0B1BF062}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2BC2B410-BC25-4762-B718-7C2C0B1BF062}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2BC2B410-BC25-4762-B718-7C2C0B1BF062}.Release|Any CPU.Build.0 = Release|Any CPU + {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.ActiveCfg = Release|Any CPU + {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 + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|x64.ActiveCfg = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|x64.Build.0 = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|x86.ActiveCfg = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Debug|x86.Build.0 = Debug|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|Any CPU.Build.0 = Release|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|x64.ActiveCfg = Release|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|x64.Build.0 = Release|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|x86.ActiveCfg = Release|Any CPU + {533109BC-EB5D-4EFB-9429-1037B36C31E4}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {CA3E9002-FB36-48C1-AA8A-59463255E592} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} @@ -70,5 +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} + {533109BC-EB5D-4EFB-9429-1037B36C31E4} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/Az.Functions.psd1 b/src/Functions/Functions/Az.Functions.psd1 index 0eaa30bc5998..f7d19f09b363 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: 5/14/2025 +# Generated on: 11/10/2025 # @{ @@ -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.0.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.0'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Functions.Autorest/bin/Az.Functions.private.dll' @@ -73,8 +73,9 @@ NestedModules = @('Functions.Autorest/Az.Functions.psm1') # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = 'Get-AzFunctionApp', 'Get-AzFunctionAppAvailableLocation', - 'Get-AzFunctionAppPlan', 'Get-AzFunctionAppSetting', - 'New-AzFunctionApp', 'New-AzFunctionAppPlan', 'Remove-AzFunctionApp', + 'Get-AzFunctionAppFlexConsumptionRuntime', 'Get-AzFunctionAppPlan', + 'Get-AzFunctionAppSetting', 'New-AzFunctionApp', + 'New-AzFunctionAppPlan', 'Remove-AzFunctionApp', 'Remove-AzFunctionAppPlan', 'Remove-AzFunctionAppSetting', 'Restart-AzFunctionApp', 'Start-AzFunctionApp', 'Stop-AzFunctionApp', 'Update-AzFunctionApp', 'Update-AzFunctionAppPlan', @@ -104,7 +105,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','PSModule','Functions' + Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'Functions' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -131,7 +132,7 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = ''